pub struct Builder { /* private fields */ }
Expand description
Builder for EcsCredentialsProvider
Implementations§
Source§impl Builder
impl Builder
Sourcepub fn configure(self, provider_config: &ProviderConfig) -> Self
pub fn configure(self, provider_config: &ProviderConfig) -> Self
Override the configuration used for this provider
Sourcepub fn dns(self, dns: impl ResolveDns + 'static) -> Self
pub fn dns(self, dns: impl ResolveDns + 'static) -> Self
Override the DNS resolver used to validate URIs
URIs must refer to valid IP addresses as defined in the module documentation. The ResolveDns
implementation is used to retrieve IP addresses for a given domain.
Sourcepub fn connect_timeout(self, timeout: Duration) -> Self
pub fn connect_timeout(self, timeout: Duration) -> Self
Override the connect timeout for the HTTP client
This value defaults to 2 seconds
Sourcepub fn read_timeout(self, timeout: Duration) -> Self
pub fn read_timeout(self, timeout: Duration) -> Self
Override the read timeout for the HTTP client
This value defaults to 5 seconds
Sourcepub fn build(self) -> EcsCredentialsProvider
pub fn build(self) -> EcsCredentialsProvider
Create an EcsCredentialsProvider
from this builder
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Builder
impl !RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl !UnwindSafe for Builder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.