Class: Aws::ElasticsearchService::Types::RemoveTagsRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticsearchservice/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

Instance Attribute Details

#arnString

Specifies the ARN for the Elasticsearch domain from which you want to delete the specified tags.

Returns:

  • (String)


3626
3627
3628
3629
3630
3631
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 3626

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

#tag_keysArray<String>

Specifies the TagKey list which you want to remove from the Elasticsearch domain.

Returns:

  • (Array<String>)


3626
3627
3628
3629
3630
3631
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 3626

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