Class: Aws::Kinesis::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::Tag
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Metadata assigned to the 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, typically used 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, _ . / = + - % @
2465 2466 2467 2468 2469 2470 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2465 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
An optional string, typically used to describe or define the tag. Maximum length: 256 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @
2465 2466 2467 2468 2469 2470 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2465 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |