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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

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)


2704
2705
2706
2707
2708
2709
2710
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2704

class ListDeliveryStreamsInput < Struct.new(
  :limit,
  :delivery_stream_type,
  :exclusive_start_delivery_stream_name)
  SENSITIVE = []
  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)


2704
2705
2706
2707
2708
2709
2710
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2704

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

#limitInteger

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

Returns:

  • (Integer)


2704
2705
2706
2707
2708
2709
2710
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2704

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