pub struct Builder { /* private fields */ }
Expand description
Builder for DefaultCredentialsChain
.
Implementations§
Source§impl Builder
impl Builder
Sourcepub fn region(self, region: impl ProvideRegion + 'static) -> Self
pub fn region(self, region: impl ProvideRegion + 'static) -> Self
Sets the region used when making requests to AWS services
When unset, the default region resolver chain will be used.
Sourcepub fn set_region(
&mut self,
region: Option<impl ProvideRegion + 'static>,
) -> &mut Self
pub fn set_region( &mut self, region: Option<impl ProvideRegion + 'static>, ) -> &mut Self
Sets the region used when making requests to AWS services
When unset, the default region resolver chain will be used.
Sourcepub fn with_custom_credential_source(
self,
name: impl Into<Cow<'static, str>>,
provider: impl ProvideCredentials + 'static,
) -> Self
pub fn with_custom_credential_source( self, name: impl Into<Cow<'static, str>>, provider: impl ProvideCredentials + 'static, ) -> Self
Add an additional credential source for the ProfileProvider
Assume role profiles may specify named credential sources:
[default]
role_arn = arn:aws:iam::123456789:role/RoleA
credential_source = MyCustomProvider
Typically, these are built-in providers like Environment
, however, custom sources may
also be used.
Sourcepub fn profile_name(self, name: &str) -> Self
pub fn profile_name(self, name: &str) -> Self
Override the profile name used by this provider
When unset, the value of the AWS_PROFILE
environment variable will be used.
Sourcepub fn imds_client(self, client: Client) -> Self
pub fn imds_client(self, client: Client) -> Self
Override the IMDS client used for this provider
When unset, the default IMDS client will be used.
Sourcepub fn configure(self, config: ProviderConfig) -> Self
pub fn configure(self, config: ProviderConfig) -> Self
Override the configuration used for this provider
Sourcepub async fn build(self) -> DefaultCredentialsChain
pub async fn build(self) -> DefaultCredentialsChain
Creates a DefaultCredentialsChain
§Panics
This function will panic if no connector has been set or the rustls
feature has been disabled.
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
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>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more