aws_config/
sso.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! SSO Credentials and Token providers
7
8pub mod credentials;
9
10pub use credentials::SsoCredentialsProvider;
11
12pub mod token;
13
14pub use token::SsoTokenProvider;
15
16mod cache;