Class: Aws::IAM::Types::TagMFADeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::TagMFADeviceRequest
- Defined in:
- gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#serial_number ⇒ String
The unique identifier for the IAM virtual MFA device to which you want to add tags.
-
#tags ⇒ Array<Types::Tag>
The list of tags that you want to attach to the IAM virtual MFA device.
Instance Attribute Details
#serial_number ⇒ String
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: _+=,.@-
10223 10224 10225 10226 10227 10228 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10223 class TagMFADeviceRequest < Struct.new( :serial_number, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<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.
10223 10224 10225 10226 10227 10228 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10223 class TagMFADeviceRequest < Struct.new( :serial_number, :tags) SENSITIVE = [] include Aws::Structure end |