Class: Aws::IAM::Types::UntagUserRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tag_keysArray<String>

A list of key names as a simple array of strings. The tags with matching keys are removed from the specified user.

Returns:

  • (Array<String>)


10708
10709
10710
10711
10712
10713
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10708

class UntagUserRequest < Struct.new(
  :user_name,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#user_nameString

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: _+=,.@-

Returns:

  • (String)


10708
10709
10710
10711
10712
10713
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 10708

class UntagUserRequest < Struct.new(
  :user_name,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end