Class: Aws::Firehose::Types::DescribeDeliveryStreamInput

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

{
  delivery_stream_name: "DeliveryStreamName", # required
  limit: 1,
  exclusive_start_destination_id: "DestinationId",
}

Instance Attribute Summary collapse

Instance Attribute Details

#delivery_stream_nameString

The name of the delivery stream.

Returns:

  • (String)


801
802
803
804
805
806
# File 'lib/aws-sdk-firehose/types.rb', line 801

class DescribeDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :limit,
  :exclusive_start_destination_id)
  include Aws::Structure
end

#exclusive_start_destination_idString

The ID of the destination to start returning the destination information. Kinesis Data Firehose supports one destination per delivery stream.

Returns:

  • (String)


801
802
803
804
805
806
# File 'lib/aws-sdk-firehose/types.rb', line 801

class DescribeDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :limit,
  :exclusive_start_destination_id)
  include Aws::Structure
end

#limitInteger

The limit on the number of destinations to return. You can have one destination per delivery stream.

Returns:

  • (Integer)


801
802
803
804
805
806
# File 'lib/aws-sdk-firehose/types.rb', line 801

class DescribeDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :limit,
  :exclusive_start_destination_id)
  include Aws::Structure
end