aws_assume_role/
lib.rs

1//! AWS Assume Role Library
2//!
3//! This library provides functionality for managing and assuming AWS IAM roles
4//! across different accounts with SSO federated access.
5
6pub mod aws;
7pub mod cli;
8pub mod config;
9pub mod error;
10
11pub use config::{Config, RoleConfig};
12pub use error::{AppError, AppResult};