Class: Aws::IAM::Types::UntagMFADeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UntagMFADeviceRequest
- 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 from which you want to remove tags.
-
#tag_keys ⇒ Array<String>
A list of key names as a simple array of strings.
Instance Attribute Details
#serial_number ⇒ String
The unique identifier for the IAM virtual MFA device from which you want to remove 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: _+=,[email protected]
10392 10393 10394 10395 10396 10397 |
# File 'lib/aws-sdk-iam/types.rb', line 10392 class UntagMFADeviceRequest < Struct.new( :serial_number, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of key names as a simple array of strings. The tags with matching keys are removed from the specified instance profile.
10392 10393 10394 10395 10396 10397 |
# File 'lib/aws-sdk-iam/types.rb', line 10392 class UntagMFADeviceRequest < Struct.new( :serial_number, :tag_keys) SENSITIVE = [] include Aws::Structure end |