#[non_exhaustive]pub struct InputLambdaProcessorUpdate {
pub resource_arn_update: String,
}Expand description
For a SQL-based Kinesis Data Analytics application, represents an update to the InputLambdaProcessor that is used to preprocess the records in the stream.
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_update: StringThe Amazon Resource Name (ARN) of the new Amazon Lambda function that is used to preprocess the 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 InputLambdaProcessorUpdate
impl InputLambdaProcessorUpdate
sourcepub fn resource_arn_update(&self) -> &str
pub fn resource_arn_update(&self) -> &str
The Amazon Resource Name (ARN) of the new Amazon Lambda function that is used to preprocess the 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 InputLambdaProcessorUpdate
impl InputLambdaProcessorUpdate
sourcepub fn builder() -> InputLambdaProcessorUpdateBuilder
pub fn builder() -> InputLambdaProcessorUpdateBuilder
Creates a new builder-style object to manufacture InputLambdaProcessorUpdate.
Trait Implementations§
source§impl Clone for InputLambdaProcessorUpdate
impl Clone for InputLambdaProcessorUpdate
source§fn clone(&self) -> InputLambdaProcessorUpdate
fn clone(&self) -> InputLambdaProcessorUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for InputLambdaProcessorUpdate
impl Debug for InputLambdaProcessorUpdate
source§impl PartialEq for InputLambdaProcessorUpdate
impl PartialEq for InputLambdaProcessorUpdate
source§fn eq(&self, other: &InputLambdaProcessorUpdate) -> bool
fn eq(&self, other: &InputLambdaProcessorUpdate) -> bool
self and other values to be equal, and is used
by ==.