Class: Aws::IAM::Types::ResyncMFADeviceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iam/types.rb

Overview

Note:

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

Instance Attribute Details

#authentication_code_1String

An authentication code emitted by the device.

The format for this parameter is a sequence of six digits.

Returns:

  • (String)


7110
7111
7112
7113
7114
7115
7116
# File 'lib/aws-sdk-iam/types.rb', line 7110

class ResyncMFADeviceRequest < Struct.new(
  :user_name,
  :serial_number,
  :authentication_code_1,
  :authentication_code_2)
  include Aws::Structure
end

#authentication_code_2String

A subsequent authentication code emitted by the device.

The format for this parameter is a sequence of six digits.

Returns:

  • (String)


7110
7111
7112
7113
7114
7115
7116
# File 'lib/aws-sdk-iam/types.rb', line 7110

class ResyncMFADeviceRequest < Struct.new(
  :user_name,
  :serial_number,
  :authentication_code_1,
  :authentication_code_2)
  include Aws::Structure
end

#serial_numberString

Serial number that uniquely identifies the MFA device.

This parameter allows (per 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: _+=,.@-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


7110
7111
7112
7113
7114
7115
7116
# File 'lib/aws-sdk-iam/types.rb', line 7110

class ResyncMFADeviceRequest < Struct.new(
  :user_name,
  :serial_number,
  :authentication_code_1,
  :authentication_code_2)
  include Aws::Structure
end

#user_nameString

The name of the user whose MFA device you want to resynchronize.

This parameter allows (per 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: _+=,.@-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


7110
7111
7112
7113
7114
7115
7116
# File 'lib/aws-sdk-iam/types.rb', line 7110

class ResyncMFADeviceRequest < Struct.new(
  :user_name,
  :serial_number,
  :authentication_code_1,
  :authentication_code_2)
  include Aws::Structure
end