Class: Aws::IAM::Types::DeactivateMFADeviceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#serial_numberString

The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN.

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: =,.@:/-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


1760
1761
1762
1763
1764
1765
# File 'lib/aws-sdk-iam/types.rb', line 1760

class DeactivateMFADeviceRequest < Struct.new(
  :user_name,
  :serial_number)
  SENSITIVE = []
  include Aws::Structure
end

#user_nameString

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

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: _+=,.@-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


1760
1761
1762
1763
1764
1765
# File 'lib/aws-sdk-iam/types.rb', line 1760

class DeactivateMFADeviceRequest < Struct.new(
  :user_name,
  :serial_number)
  SENSITIVE = []
  include Aws::Structure
end