Struct rusoto_kinesisanalytics::LambdaOutputUpdate[][src]

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

When updating an output configuration using the UpdateApplication operation, provides information about an AWS Lambda function configured as the destination.

Fields

Amazon Resource Name (ARN) of the destination Lambda function.

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

Trait Implementations

impl Default for LambdaOutputUpdate
[src]

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

impl Debug for LambdaOutputUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for LambdaOutputUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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