aws_config/
sso.rs

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

//! SSO Credentials and Token providers

pub mod credentials;

pub use credentials::SsoCredentialsProvider;

pub mod token;

pub use token::SsoTokenProvider;

mod cache;