Class: Aws::Firehose::Types::UntagDeliveryStreamInput

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

{
  delivery_stream_name: "DeliveryStreamName", # required
  tag_keys: ["TagKey"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#delivery_stream_nameString

The name of the delivery stream.

Returns:

  • (String)


3972
3973
3974
3975
3976
# File 'lib/aws-sdk-firehose/types.rb', line 3972

class UntagDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

A list of tag keys. Each corresponding tag is removed from the delivery stream.

Returns:

  • (Array<String>)


3972
3973
3974
3975
3976
# File 'lib/aws-sdk-firehose/types.rb', line 3972

class UntagDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :tag_keys)
  include Aws::Structure
end