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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/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: _+=,.@-

Returns:

  • (String)


10242
10243
10244
10245
10246
10247
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10242

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:



10242
10243
10244
10245
10246
10247
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10242

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