Class: Aws::Firehose::Types::ListDeliveryStreamsInput

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

{
  limit: 1,
  delivery_stream_type: "DirectPut", # accepts DirectPut, KinesisStreamAsSource
  exclusive_start_delivery_stream_name: "DeliveryStreamName",
}

Instance Attribute Summary collapse

Instance Attribute Details

#delivery_stream_typeString

The delivery stream type. This can be one of the following values:

  • ‘DirectPut`: Provider applications access the delivery stream directly.

  • ‘KinesisStreamAsSource`: The delivery stream uses a Kinesis data stream as a source.

This parameter is optional. If this parameter is omitted, delivery streams of all types are returned.

Returns:

  • (String)


2180
2181
2182
2183
2184
2185
# File 'lib/aws-sdk-firehose/types.rb', line 2180

class ListDeliveryStreamsInput < Struct.new(
  :limit,
  :delivery_stream_type,
  :exclusive_start_delivery_stream_name)
  include Aws::Structure
end

#exclusive_start_delivery_stream_nameString

The list of delivery streams returned by this call to ‘ListDeliveryStreams` will start with the delivery stream whose name comes alphabetically immediately after the name you specify in `ExclusiveStartDeliveryStreamName`.

Returns:

  • (String)


2180
2181
2182
2183
2184
2185
# File 'lib/aws-sdk-firehose/types.rb', line 2180

class ListDeliveryStreamsInput < Struct.new(
  :limit,
  :delivery_stream_type,
  :exclusive_start_delivery_stream_name)
  include Aws::Structure
end

#limitInteger

The maximum number of delivery streams to list. The default value is 10.

Returns:

  • (Integer)


2180
2181
2182
2183
2184
2185
# File 'lib/aws-sdk-firehose/types.rb', line 2180

class ListDeliveryStreamsInput < Struct.new(
  :limit,
  :delivery_stream_type,
  :exclusive_start_delivery_stream_name)
  include Aws::Structure
end