Class: Aws::IAM::Types::ResyncMFADeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::ResyncMFADeviceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
When making an API call, you may pass ResyncMFADeviceRequest data as a hash:
{
user_name: "existingUserNameType", # required
serial_number: "serialNumberType", # required
authentication_code_1: "authenticationCodeType", # required
authentication_code_2: "authenticationCodeType", # required
}
Instance Attribute Summary collapse
-
#authentication_code_1 ⇒ String
An authentication code emitted by the device.
-
#authentication_code_2 ⇒ String
A subsequent authentication code emitted by the device.
-
#serial_number ⇒ String
Serial number that uniquely identifies the MFA device.
-
#user_name ⇒ String
The name of the user whose MFA device you want to resynchronize.
Instance Attribute Details
#authentication_code_1 ⇒ String
An authentication code emitted by the device.
The format for this parameter is a sequence of six digits.
8553 8554 8555 8556 8557 8558 8559 |
# File 'lib/aws-sdk-iam/types.rb', line 8553 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) include Aws::Structure end |
#authentication_code_2 ⇒ String
A subsequent authentication code emitted by the device.
The format for this parameter is a sequence of six digits.
8553 8554 8555 8556 8557 8558 8559 |
# File 'lib/aws-sdk-iam/types.rb', line 8553 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) include Aws::Structure end |
#serial_number ⇒ 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: _+=,.@-
8553 8554 8555 8556 8557 8558 8559 |
# File 'lib/aws-sdk-iam/types.rb', line 8553 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) include Aws::Structure end |
#user_name ⇒ 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: _+=,.@-
8553 8554 8555 8556 8557 8558 8559 |
# File 'lib/aws-sdk-iam/types.rb', line 8553 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) include Aws::Structure end |