Class: Aws::OSIS::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::OSIS::Types::Tag
- Defined in:
- gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb
Overview
A tag (key-value pair) for an OpenSearch Ingestion pipeline.
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 pipeline to which they are attached.
808 809 810 811 812 813 |
# File 'gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb', line 808 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
808 809 810 811 812 813 |
# File 'gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb', line 808 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |