Struct rusoto_iam::VirtualMFADevice [] [src]

pub struct VirtualMFADevice {
    pub base_32_string_seed: Option<Vec<u8>>,
    pub enable_date: Option<String>,
    pub qr_code_png: Option<Vec<u8>>,
    pub serial_number: String,
    pub user: Option<User>,
}

Contains information about a virtual MFA device.

Fields

The Base32 seed defined as specified in RFC3548. The Base32StringSeed is Base64-encoded.

The date and time on which the virtual MFA device was enabled.

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 serial number associated with VirtualMFADevice.

The IAM user associated with this virtual MFA device.

Trait Implementations

impl Default for VirtualMFADevice
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for VirtualMFADevice
[src]

[src]

Formats the value using the given formatter.

impl Clone for VirtualMFADevice
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more