Struct rusoto_iot::FirehoseAction [] [src]

pub struct FirehoseAction {
    pub delivery_stream_name: String,
    pub role_arn: String,
    pub separator: Option<String>,
}

Describes an action that writes data to an Amazon Kinesis Firehose stream.

Fields

The delivery stream name.

The IAM role that grants access to the Amazon Kinesis Firehost stream.

A character separator that will be used to separate records written to the Firehose stream. Valid values are: '\n' (newline), '\t' (tab), '\r\n' (Windows newline), ',' (comma).

Trait Implementations

impl Default for FirehoseAction
[src]

[src]

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

impl Debug for FirehoseAction
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for FirehoseAction
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations