aws-assume-role 1.3.1

Simple CLI tool to easily switch between AWS IAM roles across different accounts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! AWS Assume Role Library
//!
//! This library provides functionality for managing and assuming AWS IAM roles
//! across different accounts with SSO federated access.

pub mod aws;
pub mod cli;
pub mod config;
pub mod error;

pub use config::{Config, RoleConfig};
pub use error::{AppError, AppResult};