Struct rusoto_firehose::KinesisStreamSourceDescription [] [src]

pub struct KinesisStreamSourceDescription {
    pub delivery_start_timestamp: Option<f64>,
    pub kinesis_stream_arn: Option<String>,
    pub role_arn: Option<String>,
}

Details about a Kinesis stream used as the source for a Kinesis Firehose delivery stream.

Fields

Kinesis Firehose starts retrieving records from the Kinesis stream starting with this time stamp.

The ARN of the source Kinesis stream.

The ARN of the role used by the source Kinesis stream.

Trait Implementations

impl Default for KinesisStreamSourceDescription
[src]

[src]

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

impl Debug for KinesisStreamSourceDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for KinesisStreamSourceDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations