logo
pub trait ProvideAwsCredentials {
    fn credentials<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<AwsCredentials, CredentialsError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

A trait for types that produce AwsCredentials.

Required Methods

Produce a new AwsCredentials future.

Implementations on Foreign Types

Implementors