Class: Aws::Firehose::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::Tag
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Metadata that you can assign to a Firehose stream, consisting of a key-value pair.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A unique identifier for the tag.
-
#value ⇒ String
An optional string, which you can use to describe or define the tag.
Instance Attribute Details
#key ⇒ String
A unique identifier for the tag. Maximum length: 128 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @
5459 5460 5461 5462 5463 5464 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 5459 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
An optional string, which you can use to describe or define the tag. Maximum length: 256 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @
5459 5460 5461 5462 5463 5464 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 5459 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |