List Delivery Streams
firehose_list_delivery_streams | R Documentation |
Lists your Firehose streams in alphabetical order of their names¶
Description¶
Lists your Firehose streams in alphabetical order of their names.
The number of Firehose streams might be too large to return using a
single call to list_delivery_streams
. You can limit the number of
Firehose streams returned, using the Limit
parameter. To determine
whether there are more delivery streams to list, check the value of
HasMoreDeliveryStreams
in the output. If there are more Firehose
streams to list, you can request them by calling this operation again
and setting the ExclusiveStartDeliveryStreamName
parameter to the name
of the last Firehose stream returned in the last call.
Usage¶
firehose_list_delivery_streams(Limit, DeliveryStreamType,
ExclusiveStartDeliveryStreamName)
Arguments¶
Limit |
The maximum number of Firehose streams to list. The default value is 10. |
DeliveryStreamType |
The Firehose stream type. This can be one of the following values:
This parameter is optional. If this parameter is omitted, Firehose streams of all types are returned. |
ExclusiveStartDeliveryStreamName |
The list of Firehose streams returned by this call to
|
Value¶
A list with the following syntax:
list(
DeliveryStreamNames = list(
"string"
),
HasMoreDeliveryStreams = TRUE|FALSE
)
Request syntax¶
svc$list_delivery_streams(
Limit = 123,
DeliveryStreamType = "DirectPut"|"KinesisStreamAsSource"|"MSKAsSource"|"DatabaseAsSource",
ExclusiveStartDeliveryStreamName = "string"
)