Class: Aws::ElasticsearchService::Types::RemoveTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::RemoveTagsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Container for the parameters to the ‘RemoveTags` operation. Specify the `ARN` for the Elasticsearch domain from which you want to remove the specified `TagKey`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
Specifies the ‘ARN` for the Elasticsearch domain from which you want to delete the specified tags.
-
#tag_keys ⇒ Array<String>
Specifies the ‘TagKey` list which you want to remove from the Elasticsearch domain.
Instance Attribute Details
#arn ⇒ String
Specifies the ‘ARN` for the Elasticsearch domain from which you want to delete the specified tags.
3626 3627 3628 3629 3630 3631 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3626 class RemoveTagsRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
Specifies the ‘TagKey` list which you want to remove from the Elasticsearch domain.
3626 3627 3628 3629 3630 3631 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3626 class RemoveTagsRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |