pub struct Builder { /* private fields */ }
Expand description
IMDSv2 Client Builder
Implementations
sourceimpl 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
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl !UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more