Class: Aws::ElasticsearchService::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::Tag
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Specifies a key value pair for a resource tag.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
Specifies the ‘TagKey`, the name of the tag.
-
#value ⇒ String
Specifies the ‘TagValue`, the value assigned to the corresponding tag key.
Instance Attribute Details
#key ⇒ String
Specifies the ‘TagKey`, the name of the tag. Tag keys must be unique for the Elasticsearch domain to which they are attached.
4117 4118 4119 4120 4121 4122 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4117 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
Specifies the ‘TagValue`, the value assigned to the corresponding tag key. Tag values can be null and do not have to be unique in a tag set. For example, you can have a key value pair in a tag set of `project : Trinity` and `cost-center : Trinity`
4117 4118 4119 4120 4121 4122 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4117 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |