Class: Aws::IAM::Types::TagMFADeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::TagMFADeviceRequest
- Includes:
- Structure
- Defined in:
- 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: _+=,.@-
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 |
#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.
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 |