Class: Aws::IAM::Types::TagMFADeviceRequest

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 unique identifier for the IAM virtual MFA device to which you want to add tags. For virtual MFA devices, the serial number is the same as the 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)


10488
10489
10490
10491
10492
10493
# File 'lib/aws-sdk-iam/types.rb', line 10488

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

#tagsArray<Types::Tag>

The list of tags that you want to attach to the IAM virtual MFA device. Each tag consists of a key name and an associated value.

Returns:



10488
10489
10490
10491
10492
10493
# File 'lib/aws-sdk-iam/types.rb', line 10488

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