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

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 RemoveTagsRequest data as a hash:

{
  arn: "ARN", # required
  tag_keys: ["String"], # required
}

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)


3040
3041
3042
3043
3044
3045
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3040

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>)


3040
3041
3042
3043
3044
3045
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3040

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