aws_config/imds/mod.rs
1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! IMDSv2 Client, credential, and region provider
7//!
8//! See [`client`] for more information.
9pub mod client;
10
11pub mod credentials;
12pub mod region;
13
14mod env {
15 pub(crate) const EC2_METADATA_DISABLED: &str = "AWS_EC2_METADATA_DISABLED";
16}
17
18#[doc(inline)]
19pub use client::Client;