Class: Aws::IAM::Types::UntagRoleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UntagRoleRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_name ⇒ String
The name of the IAM role 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
#role_name ⇒ String
The name of the IAM role from which you want to remove tags.
This parameter accepts (through its [regex pattern]) a string of characters that consist of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
10890 10891 10892 10893 10894 10895 |
# File 'lib/aws-sdk-iam/types.rb', line 10890 class UntagRoleRequest < Struct.new( :role_name, :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 role.
10890 10891 10892 10893 10894 10895 |
# File 'lib/aws-sdk-iam/types.rb', line 10890 class UntagRoleRequest < Struct.new( :role_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |