Class: Aws::IAM::Types::TagUserRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tagsArray<Types::Tag>

The list of tags that you want to attach to the IAM user. Each tag consists of a key name and an associated value.

Returns:



10411
10412
10413
10414
10415
10416
# File 'lib/aws-sdk-iam/types.rb', line 10411

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

#user_nameString

The name of the IAM user to which you want to add 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: _+=,.@-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


10411
10412
10413
10414
10415
10416
# File 'lib/aws-sdk-iam/types.rb', line 10411

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