Struct rusoto_kinesisanalytics::InputLambdaProcessorDescription[][src]

pub struct InputLambdaProcessorDescription {
    pub resource_arn: Option<String>,
    pub role_arn: Option<String>,
}

An object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used to preprocess records in the stream, and the ARN of the IAM role that is used to access the AWS Lambda expression.

Fields

The ARN of the AWS Lambda function that is used to preprocess the records in the stream.

The ARN of the IAM role that is used to access the AWS Lambda function.

Trait Implementations

impl Default for InputLambdaProcessorDescription
[src]

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

impl Debug for InputLambdaProcessorDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for InputLambdaProcessorDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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