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

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

Overview

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)


81
82
83
84
85
86
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 81

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:



81
82
83
84
85
86
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 81

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