Class: Aws::OSIS::Types::Tag

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#keyString

The tag key. Tag keys must be unique for the pipeline to which they are attached.

Returns:

  • (String)


708
709
710
711
712
713
# File 'gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb', line 708

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

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

Returns:

  • (String)


708
709
710
711
712
713
# File 'gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb', line 708

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end