Class: Aws::Firehose::Types::ListDeliveryStreamsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::ListDeliveryStreamsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-firehose/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_stream_type ⇒ String
The Firehose stream type.
-
#exclusive_start_delivery_stream_name ⇒ String
The list of Firehose streams returned by this call to ‘ListDeliveryStreams` will start with the Firehose stream whose name comes alphabetically immediately after the name you specify in `ExclusiveStartDeliveryStreamName`.
-
#limit ⇒ Integer
The maximum number of Firehose streams to list.
Instance Attribute Details
#delivery_stream_type ⇒ String
The Firehose stream type. This can be one of the following values:
-
‘DirectPut`: Provider applications access the Firehose stream directly.
-
‘KinesisStreamAsSource`: The Firehose stream uses a Kinesis data stream as a source.
This parameter is optional. If this parameter is omitted, Firehose streams of all types are returned.
3288 3289 3290 3291 3292 3293 3294 |
# File 'lib/aws-sdk-firehose/types.rb', line 3288 class ListDeliveryStreamsInput < Struct.new( :limit, :delivery_stream_type, :exclusive_start_delivery_stream_name) SENSITIVE = [] include Aws::Structure end |
#exclusive_start_delivery_stream_name ⇒ String
The list of Firehose streams returned by this call to ‘ListDeliveryStreams` will start with the Firehose stream whose name comes alphabetically immediately after the name you specify in `ExclusiveStartDeliveryStreamName`.
3288 3289 3290 3291 3292 3293 3294 |
# File 'lib/aws-sdk-firehose/types.rb', line 3288 class ListDeliveryStreamsInput < Struct.new( :limit, :delivery_stream_type, :exclusive_start_delivery_stream_name) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of Firehose streams to list. The default value is 10.
3288 3289 3290 3291 3292 3293 3294 |
# File 'lib/aws-sdk-firehose/types.rb', line 3288 class ListDeliveryStreamsInput < Struct.new( :limit, :delivery_stream_type, :exclusive_start_delivery_stream_name) SENSITIVE = [] include Aws::Structure end |