1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

//! Credential provider augmentation through the AWS Security Token Service (STS).

pub use assume_role::{AssumeRoleProvider, AssumeRoleProviderBuilder};

mod assume_role;
pub(crate) mod util;