You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TagUserRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  user_name: "existingUserNameType", # required
  tags: [ # required
    {
      key: "tagKeyType", # required
      value: "tagValueType", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#tagsArray<Types::Tag>

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

Returns:

  • (Array<Types::Tag>)

    The list of tags that you want to attach to the user.

#user_nameString

The name of the user that you want to add tags to.

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

Returns:

  • (String)

    The name of the user that you want to add tags to.