Struct aws_config::imds::client::Builder
source · pub struct Builder { /* private fields */ }
Expand description
IMDSv2 Client Builder
Implementations§
source§impl Builder
impl Builder
sourcepub fn max_attempts(self, max_attempts: u32) -> Self
pub fn max_attempts(self, max_attempts: u32) -> Self
Override the number of retries for fetching tokens & metadata
By default, 4 attempts will be made.
sourcepub fn configure(self, provider_config: &ProviderConfig) -> Self
pub fn configure(self, provider_config: &ProviderConfig) -> Self
sourcepub fn endpoint_mode(self, mode: EndpointMode) -> Self
pub fn endpoint_mode(self, mode: EndpointMode) -> Self
sourcepub fn token_ttl(self, ttl: Duration) -> Self
pub fn token_ttl(self, ttl: Duration) -> Self
Override the time-to-live for the session token
Requests to IMDS utilize a session token for authentication. By default, session tokens last for 6 hours. When the TTL for the token expires, a new token must be retrieved from the metadata service.
sourcepub fn connect_timeout(self, timeout: Duration) -> Self
pub fn connect_timeout(self, timeout: Duration) -> Self
Override the connect timeout for IMDS
This value defaults to 1 second
sourcepub fn read_timeout(self, timeout: Duration) -> Self
pub fn read_timeout(self, timeout: Duration) -> Self
Override the read timeout for IMDS
This value defaults to 1 second
sourcepub async fn build(self) -> Result<Client, BuildError>
pub async fn build(self) -> Result<Client, BuildError>
Build an IMDSv2 Client