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

Class: Aws::ElasticsearchService::Types::AddTagsRequest

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

Overview

Note:

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

{
  arn: "ARN", # required
  tag_list: [ # required
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Container for the parameters to the AddTags operation. Specify the tags that you want to attach to the Elasticsearch domain.

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

Specify the ARN for which you want to add the tags.

Returns:

  • (String)

    Specify the ARN for which you want to add the tags.

#tag_listArray<Types::Tag>

List of Tag that need to be added for the Elasticsearch domain.

Returns:

  • (Array<Types::Tag>)

    List of Tag that need to be added for the Elasticsearch domain.