1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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;

pub mod lazy_caching;
pub use lazy_caching::LazyCachingCredentialsProvider;