aws-config 0.2.0

AWS SDK config and credential provider implementations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

//! Credential providers that augment an existing credentials providers to add functionality

mod chain;
pub use chain::CredentialsProviderChain;

mod credential_fn;
pub use credential_fn::provide_credentials_fn;

#[cfg(any(feature = "meta", feature = "default-provider"))]
pub mod lazy_caching;
#[cfg(any(feature = "meta", feature = "default-provider"))]
pub use lazy_caching::LazyCachingCredentialsProvider;