Class: Aws::ElasticsearchService::Types::AddTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::AddTagsRequest
- 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
-
#arn ⇒ String
Specify the ‘ARN` for which you want to add the tags.
-
#tag_list ⇒ Array<Types::Tag>
List of ‘Tag` that need to be added for the Elasticsearch domain.
Instance Attribute Details
#arn ⇒ String
Specify the ‘ARN` for which you want to add the tags.
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_list ⇒ Array<Types::Tag>
List of ‘Tag` that need to be added for the Elasticsearch domain.
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 |