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

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

Overview

Note:

When making an API call, you may pass AddTagsRequest data as a 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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

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

Returns:

  • (String)


101
102
103
104
105
106
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 101

class AddTagsRequest < Struct.new(
  :arn,
  :tag_list)
  SENSITIVE = []
  include Aws::Structure
end

#tag_listArray<Types::Tag>

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

Returns:



101
102
103
104
105
106
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 101

class AddTagsRequest < Struct.new(
  :arn,
  :tag_list)
  SENSITIVE = []
  include Aws::Structure
end