1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//! `aws-credential-types` provides the items concerned with AWS SDK credentials including:
//! * A trait for credentials providers
//! * An opaque struct representing credentials
//! * Concrete implementations of credentials caching
#![warn(
missing_debug_implementations,
missing_docs,
rust_2018_idioms,
rustdoc::missing_crate_level_docs,
unreachable_pub
)]
pub mod cache;
pub mod credential_fn;
mod credentials_impl;
pub mod lazy_caching;
pub mod provider;
#[doc(hidden)]
pub mod time_source;
pub use credentials_impl::Credentials;