Class: Aws::Kinesis::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::Tag
- Includes:
- Structure
- Defined in:
- 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, _ . / = + - % @
2460 2461 2462 2463 2464 2465 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2460 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, _ . / = + - % @
2460 2461 2462 2463 2464 2465 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2460 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |