Class: Aws::Firehose::Types::TagDeliveryStreamInput

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 TagDeliveryStreamInput data as a hash:

{
  delivery_stream_name: "DeliveryStreamName", # required
  tags: [ # required
    {
      key: "TagKey", # required
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#delivery_stream_nameString

The name of the delivery stream to which you want to add the tags.

Returns:

  • (String)


3943
3944
3945
3946
3947
# File 'lib/aws-sdk-firehose/types.rb', line 3943

class TagDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

A set of key-value pairs to use to create the tags.

Returns:



3943
3944
3945
3946
3947
# File 'lib/aws-sdk-firehose/types.rb', line 3943

class TagDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :tags)
  include Aws::Structure
end