Struct aws_sdk_iam::model::VirtualMfaDevice [−][src]
#[non_exhaustive]pub struct VirtualMfaDevice {
pub serial_number: Option<String>,
pub base32_string_seed: Option<Blob>,
pub qr_code_png: Option<Blob>,
pub user: Option<User>,
pub enable_date: Option<DateTime>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Contains information about a virtual MFA device.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.serial_number: Option<String>
The serial number associated with VirtualMFADevice
.
base32_string_seed: Option<Blob>
The base32 seed defined as specified in RFC3548. The Base32StringSeed
is base64-encoded.
qr_code_png: Option<Blob>
A QR code PNG image that encodes
otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where $virtualMFADeviceName
is one of the create call arguments.
AccountName
is the user name if set (otherwise, the account ID otherwise),
and Base32String
is the seed in base32 format. The Base32String
value is base64-encoded.
user: Option<User>
The IAM user associated with this virtual MFA device.
enable_date: Option<DateTime>
The date and time on which the virtual MFA device was enabled.
A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
Implementations
The serial number associated with VirtualMFADevice
.
The base32 seed defined as specified in RFC3548. The Base32StringSeed
is base64-encoded.
A QR code PNG image that encodes
otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String
where $virtualMFADeviceName
is one of the create call arguments.
AccountName
is the user name if set (otherwise, the account ID otherwise),
and Base32String
is the seed in base32 format. The Base32String
value is base64-encoded.
The date and time on which the virtual MFA device was enabled.
A list of tags that are attached to the virtual MFA device. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
Creates a new builder-style object to manufacture VirtualMfaDevice
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for VirtualMfaDevice
impl Send for VirtualMfaDevice
impl Sync for VirtualMfaDevice
impl Unpin for VirtualMfaDevice
impl UnwindSafe for VirtualMfaDevice
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more