Struct rusoto_kinesisanalytics::KinesisFirehoseInput[][src]

pub struct KinesisFirehoseInput {
    pub resource_arn: String,
    pub role_arn: String,
}

Identifies an Amazon Kinesis Firehose delivery stream as the streaming source. You provide the delivery stream's Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis Analytics to access the stream on your behalf.

Fields

ARN of the input delivery stream.

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

Trait Implementations

impl Default for KinesisFirehoseInput
[src]

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

impl Debug for KinesisFirehoseInput
[src]

Formats the value using the given formatter. Read more

impl Clone for KinesisFirehoseInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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