Class: Aws::Kinesis::Types::Tag

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

Instance Attribute Details

#keyString

A unique identifier for the tag. Maximum length: 128 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @

Returns:

  • (String)


2460
2461
2462
2463
2464
2465
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2460

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

#valueString

An optional string, typically used to describe or define the tag. Maximum length: 256 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @

Returns:

  • (String)


2460
2461
2462
2463
2464
2465
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2460

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