Class: Aws::OpenSearchService::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::Tag
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
A tag (key-value pair) for an Amazon OpenSearch Service resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The tag key.
-
#value ⇒ String
The value assigned to the corresponding tag key.
Instance Attribute Details
#key ⇒ String
The tag key. Tag keys must be unique for the domain to which they are attached.
7152 7153 7154 7155 7156 7157 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 7152 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value assigned to the corresponding tag key. Tag values can be
null and don't 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
7152 7153 7154 7155 7156 7157 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 7152 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |