You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListDeliveryStreamsInput as input to an Aws::Client method, you can use a vanilla 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.

Possible values:

  • DirectPut
  • KinesisStreamAsSource

Returns:

  • (String)

    The delivery stream type.

#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)

    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.

#limitInteger

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

Returns:

  • (Integer)

    The maximum number of delivery streams to list.