Struct rusoto_iot::KinesisAction[][src]

pub struct KinesisAction {
    pub partition_key: Option<String>,
    pub role_arn: String,
    pub stream_name: String,
}

Describes an action to write data to an Amazon Kinesis stream.

Fields

The partition key.

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

The name of the Amazon Kinesis stream.

Trait Implementations

impl Default for KinesisAction
[src]

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

impl Debug for KinesisAction
[src]

Formats the value using the given formatter. Read more

impl Clone for KinesisAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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