#[non_exhaustive]pub struct InputLambdaProcessor {
pub resource_arn: String,
}Expand description
An object that contains the Amazon Resource Name (ARN) of the Amazon Lambda function that is used to preprocess records in the stream in a SQL-based Kinesis Data Analytics application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource_arn: StringThe ARN of the Amazon Lambda function that operates on records in the stream.
To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: Amazon Lambda
Implementations§
source§impl InputLambdaProcessor
impl InputLambdaProcessor
sourcepub fn resource_arn(&self) -> &str
pub fn resource_arn(&self) -> &str
The ARN of the Amazon Lambda function that operates on records in the stream.
To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: Amazon Lambda
source§impl InputLambdaProcessor
impl InputLambdaProcessor
sourcepub fn builder() -> InputLambdaProcessorBuilder
pub fn builder() -> InputLambdaProcessorBuilder
Creates a new builder-style object to manufacture InputLambdaProcessor.
Trait Implementations§
source§impl Clone for InputLambdaProcessor
impl Clone for InputLambdaProcessor
source§fn clone(&self) -> InputLambdaProcessor
fn clone(&self) -> InputLambdaProcessor
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for InputLambdaProcessor
impl Debug for InputLambdaProcessor
source§impl PartialEq for InputLambdaProcessor
impl PartialEq for InputLambdaProcessor
source§fn eq(&self, other: &InputLambdaProcessor) -> bool
fn eq(&self, other: &InputLambdaProcessor) -> bool
self and other values to be equal, and is used
by ==.