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 28 29
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//! Provides user agent and credentials middleware for the AWS SDK.
#![warn(
missing_docs,
rustdoc::missing_crate_level_docs,
missing_debug_implementations,
rust_2018_idioms,
unreachable_pub
)]
/// Credentials middleware
pub mod auth;
/// Recursion Detection middleware
pub mod recursion_detection;
/// AWS-specific retry logic
pub mod retry;
/// User agent middleware
pub mod user_agent;
/// AWS-specific content-encoding tools
pub mod content_encoding;