Class: Aws::IAM::Types::UntagUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UntagUserRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tag_keys ⇒ Array<String>
A list of key names as a simple array of strings.
-
#user_name ⇒ String
The name of the IAM user from which you want to remove tags.
Instance Attribute Details
#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 user.
10973 10974 10975 10976 10977 10978 |
# File 'lib/aws-sdk-iam/types.rb', line 10973 class UntagUserRequest < Struct.new( :user_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user from which you want to remove tags.
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: _+=,.@-
10973 10974 10975 10976 10977 10978 |
# File 'lib/aws-sdk-iam/types.rb', line 10973 class UntagUserRequest < Struct.new( :user_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |