Struct rusoto_firehose::ListDeliveryStreamsInput [] [src]

pub struct ListDeliveryStreamsInput {
    pub delivery_stream_type: Option<String>,
    pub exclusive_start_delivery_stream_name: Option<String>,
    pub limit: Option<i64>,
}

Fields

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 stream as a source.

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

The name of the delivery stream to start the list with.

The maximum number of delivery streams to list.

Trait Implementations

impl Default for ListDeliveryStreamsInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ListDeliveryStreamsInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListDeliveryStreamsInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations