Struct aws_sdk_iam::model::VirtualMfaDevice
source · [−]#[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
sourceimpl VirtualMfaDevice
impl VirtualMfaDevice
sourcepub fn serial_number(&self) -> Option<&str>
pub fn serial_number(&self) -> Option<&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 base64-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.
sourceimpl VirtualMfaDevice
impl VirtualMfaDevice
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VirtualMfaDevice
Trait Implementations
sourceimpl Clone for VirtualMfaDevice
impl Clone for VirtualMfaDevice
sourcefn clone(&self) -> VirtualMfaDevice
fn clone(&self) -> VirtualMfaDevice
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for VirtualMfaDevice
impl Debug for VirtualMfaDevice
sourceimpl PartialEq<VirtualMfaDevice> for VirtualMfaDevice
impl PartialEq<VirtualMfaDevice> for VirtualMfaDevice
sourcefn eq(&self, other: &VirtualMfaDevice) -> bool
fn eq(&self, other: &VirtualMfaDevice) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &VirtualMfaDevice) -> bool
fn ne(&self, other: &VirtualMfaDevice) -> bool
This method tests for !=
.
impl StructuralPartialEq for VirtualMfaDevice
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more