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 Firehose 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]

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

impl Debug for FirehoseAction
[src]

Formats the value using the given formatter. Read more

impl Clone for FirehoseAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FirehoseAction
[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