#[non_exhaustive]pub struct GetMfaDeviceOutputBuilder { /* private fields */ }
Expand description
A builder for GetMfaDeviceOutput
.
Implementations§
source§impl GetMfaDeviceOutputBuilder
impl GetMfaDeviceOutputBuilder
sourcepub fn user_name(self, input: impl Into<String>) -> Self
pub fn user_name(self, input: impl Into<String>) -> Self
The friendly name identifying the user.
sourcepub fn set_user_name(self, input: Option<String>) -> Self
pub fn set_user_name(self, input: Option<String>) -> Self
The friendly name identifying the user.
sourcepub fn get_user_name(&self) -> &Option<String>
pub fn get_user_name(&self) -> &Option<String>
The friendly name identifying the user.
sourcepub fn serial_number(self, input: impl Into<String>) -> Self
pub fn serial_number(self, input: impl Into<String>) -> Self
Serial number that uniquely identifies the MFA device. For this API, we only accept FIDO security key ARNs.
This field is required.sourcepub fn set_serial_number(self, input: Option<String>) -> Self
pub fn set_serial_number(self, input: Option<String>) -> Self
Serial number that uniquely identifies the MFA device. For this API, we only accept FIDO security key ARNs.
sourcepub fn get_serial_number(&self) -> &Option<String>
pub fn get_serial_number(&self) -> &Option<String>
Serial number that uniquely identifies the MFA device. For this API, we only accept FIDO security key ARNs.
sourcepub fn enable_date(self, input: DateTime) -> Self
pub fn enable_date(self, input: DateTime) -> Self
The date that a specified user's MFA device was first enabled.
sourcepub fn set_enable_date(self, input: Option<DateTime>) -> Self
pub fn set_enable_date(self, input: Option<DateTime>) -> Self
The date that a specified user's MFA device was first enabled.
sourcepub fn get_enable_date(&self) -> &Option<DateTime>
pub fn get_enable_date(&self) -> &Option<DateTime>
The date that a specified user's MFA device was first enabled.
sourcepub fn certifications(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn certifications(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to certifications
.
To override the contents of this collection use set_certifications
.
The certifications of a specified user's MFA device. We currently provide FIPS-140-2, FIPS-140-3, and FIDO certification levels obtained from FIDO Alliance Metadata Service (MDS).
sourcepub fn set_certifications(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_certifications(self, input: Option<HashMap<String, String>>) -> Self
The certifications of a specified user's MFA device. We currently provide FIPS-140-2, FIPS-140-3, and FIDO certification levels obtained from FIDO Alliance Metadata Service (MDS).
sourcepub fn get_certifications(&self) -> &Option<HashMap<String, String>>
pub fn get_certifications(&self) -> &Option<HashMap<String, String>>
The certifications of a specified user's MFA device. We currently provide FIPS-140-2, FIPS-140-3, and FIDO certification levels obtained from FIDO Alliance Metadata Service (MDS).
sourcepub fn build(self) -> Result<GetMfaDeviceOutput, BuildError>
pub fn build(self) -> Result<GetMfaDeviceOutput, BuildError>
Consumes the builder and constructs a GetMfaDeviceOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for GetMfaDeviceOutputBuilder
impl Clone for GetMfaDeviceOutputBuilder
source§fn clone(&self) -> GetMfaDeviceOutputBuilder
fn clone(&self) -> GetMfaDeviceOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetMfaDeviceOutputBuilder
impl Debug for GetMfaDeviceOutputBuilder
source§impl Default for GetMfaDeviceOutputBuilder
impl Default for GetMfaDeviceOutputBuilder
source§fn default() -> GetMfaDeviceOutputBuilder
fn default() -> GetMfaDeviceOutputBuilder
source§impl PartialEq for GetMfaDeviceOutputBuilder
impl PartialEq for GetMfaDeviceOutputBuilder
source§fn eq(&self, other: &GetMfaDeviceOutputBuilder) -> bool
fn eq(&self, other: &GetMfaDeviceOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.