aws_config/sts.rs
1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! Credential provider augmentation through the AWS Security Token Service (STS).
7
8pub use assume_role::{AssumeRoleProvider, AssumeRoleProviderBuilder};
9
10mod assume_role;
11pub(crate) mod util;