Class: Aws::IAM::Types::ResyncMFADeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::ResyncMFADeviceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
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.
8682 8683 8684 8685 8686 8687 8688 8689 |
# File 'lib/aws-sdk-iam/types.rb', line 8682 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) SENSITIVE = [] 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.
8682 8683 8684 8685 8686 8687 8688 8689 |
# File 'lib/aws-sdk-iam/types.rb', line 8682 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) SENSITIVE = [] 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: _+=,.@-
8682 8683 8684 8685 8686 8687 8688 8689 |
# File 'lib/aws-sdk-iam/types.rb', line 8682 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) SENSITIVE = [] 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: _+=,.@-
8682 8683 8684 8685 8686 8687 8688 8689 |
# File 'lib/aws-sdk-iam/types.rb', line 8682 class ResyncMFADeviceRequest < Struct.new( :user_name, :serial_number, :authentication_code_1, :authentication_code_2) SENSITIVE = [] include Aws::Structure end |