Struct aws_sdk_iam::input::ResyncMfaDeviceInput [−][src]
#[non_exhaustive]pub struct ResyncMfaDeviceInput {
pub user_name: Option<String>,
pub serial_number: Option<String>,
pub authentication_code1: Option<String>,
pub authentication_code2: Option<String>,
}
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.user_name: Option<String>
The name of the user whose MFA device you want to resynchronize.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
serial_number: Option<String>
Serial number that uniquely identifies the MFA device.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
authentication_code1: Option<String>
An authentication code emitted by the device.
The format for this parameter is a sequence of six digits.
authentication_code2: Option<String>
A subsequent authentication code emitted by the device.
The format for this parameter is a sequence of six digits.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResyncMFADevice, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResyncMFADevice, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ResyncMFADevice
>
Creates a new builder-style object to manufacture ResyncMfaDeviceInput
The name of the user whose MFA device you want to resynchronize.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
Serial number that uniquely identifies the MFA device.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
An authentication code emitted by the device.
The format for this parameter is a sequence of six digits.
A subsequent authentication code emitted by the device.
The format for this parameter is a sequence of six digits.
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 ResyncMfaDeviceInput
impl Send for ResyncMfaDeviceInput
impl Sync for ResyncMfaDeviceInput
impl Unpin for ResyncMfaDeviceInput
impl UnwindSafe for ResyncMfaDeviceInput
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