Class: Aws::Firehose::Types::Tag

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Note:

When making an API call, you may pass Tag data as a hash:

{
  key: "TagKey", # required
  value: "TagValue",
}

Metadata that you can assign to a delivery stream, consisting of a key-value pair.

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)


3914
3915
3916
3917
3918
# File 'lib/aws-sdk-firehose/types.rb', line 3914

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

#valueString

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

Returns:

  • (String)


3914
3915
3916
3917
3918
# File 'lib/aws-sdk-firehose/types.rb', line 3914

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