Struct rusoto_firehose::DescribeDeliveryStreamInput[][src]

pub struct DescribeDeliveryStreamInput {
    pub delivery_stream_name: String,
    pub exclusive_start_destination_id: Option<String>,
    pub limit: Option<i64>,
}

Fields

The name of the delivery stream.

The ID of the destination to start returning the destination information. Currently, Kinesis Firehose supports one destination per delivery stream.

The limit on the number of destinations to return. Currently, you can have one destination per delivery stream.

Trait Implementations

impl Default for DescribeDeliveryStreamInput
[src]

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

impl Debug for DescribeDeliveryStreamInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDeliveryStreamInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeDeliveryStreamInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations