wami 0.17.1

Who Am I - Multicloud Identity, IAM, STS, and SSO operations library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! MfaDevice Resource Module
//!
//! This module provides self-contained handling of IAM MFA device resources.

pub mod builder;
pub mod model;
// pub mod operations; // TODO: Fix field mismatches in tests
pub mod requests;

pub use builder::{add_provider_to_mfa_device, build_mfa_device};
pub use model::MfaDevice;
// Operations moved to service layer
// pub use operations::MfaDeviceOperations;
pub use requests::{EnableMfaDeviceRequest, ListMfaDevicesRequest};