Struct rusoto_kinesisanalytics::KinesisStreamsInputUpdate[][src]

pub struct KinesisStreamsInputUpdate {
    pub resource_arn_update: Option<String>,
    pub role_arn_update: Option<String>,
}

When updating application input configuration, provides information about an Amazon Kinesis stream as the streaming source.

Fields

Amazon Resource Name (ARN) of the input Amazon Kinesis stream to read.

ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.

Trait Implementations

impl Default for KinesisStreamsInputUpdate
[src]

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

impl Debug for KinesisStreamsInputUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for KinesisStreamsInputUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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