aws_smithy_runtime/client/http.rs
1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/// Interceptor for connection poisoning.
7pub mod connection_poisoning;
8
9#[cfg(feature = "test-util")]
10pub mod test_util;
11
12/// Default HTTP and TLS connectors that use hyper 0.14.x and rustls.
13///
14/// This module is named after the hyper version number since we anticipate
15/// needing to provide equivalent functionality for hyper 1.x in the future.
16#[cfg(feature = "connector-hyper-0-14-x")]
17pub mod hyper_014;
18
19/// HTTP body and body-wrapper types
20pub mod body;