Struct aws_sdk_iam::types::VirtualMfaDevice
source · #[non_exhaustive]pub struct VirtualMfaDevice {
pub serial_number: 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: String
The serial number associated with VirtualMFADevice
.
base32_string_seed: Option<Blob>
The base32 seed defined as specified in RFC3548. The Base32StringSeed
is base32-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§
source§impl VirtualMfaDevice
impl VirtualMfaDevice
sourcepub fn serial_number(&self) -> &str
pub fn serial_number(&self) -> &str
The serial number associated with VirtualMFADevice
.
sourcepub fn base32_string_seed(&self) -> Option<&Blob>
pub fn base32_string_seed(&self) -> Option<&Blob>
The base32 seed defined as specified in RFC3548. The Base32StringSeed
is base32-encoded.
sourcepub fn qr_code_png(&self) -> Option<&Blob>
pub fn qr_code_png(&self) -> 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.
sourcepub fn enable_date(&self) -> Option<&DateTime>
pub fn enable_date(&self) -> 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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl VirtualMfaDevice
impl VirtualMfaDevice
sourcepub fn builder() -> VirtualMfaDeviceBuilder
pub fn builder() -> VirtualMfaDeviceBuilder
Creates a new builder-style object to manufacture VirtualMfaDevice
.
Trait Implementations§
source§impl Clone for VirtualMfaDevice
impl Clone for VirtualMfaDevice
source§fn clone(&self) -> VirtualMfaDevice
fn clone(&self) -> VirtualMfaDevice
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VirtualMfaDevice
impl Debug for VirtualMfaDevice
source§impl PartialEq for VirtualMfaDevice
impl PartialEq for VirtualMfaDevice
source§fn eq(&self, other: &VirtualMfaDevice) -> bool
fn eq(&self, other: &VirtualMfaDevice) -> bool
self
and other
values to be equal, and is used
by ==
.