#[non_exhaustive]pub struct InputLambdaProcessorDescription {
pub resource_arn: Option<String>,
pub role_arn: Option<String>,
}
Expand description
For a SQL-based Kinesis Data Analytics application, an object that contains the Amazon Resource Name (ARN) of the Amazon Lambda function that is used to preprocess 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: Option<String>
The ARN of the 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
role_arn: Option<String>
The ARN of the IAM role that is used to access the Amazon Lambda function.
Provided for backward compatibility. Applications that are created with the current API version have an application-level service execution role rather than a resource-level role.
Implementations§
source§impl InputLambdaProcessorDescription
impl InputLambdaProcessorDescription
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The ARN of the 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 InputLambdaProcessorDescription
impl InputLambdaProcessorDescription
sourcepub fn builder() -> InputLambdaProcessorDescriptionBuilder
pub fn builder() -> InputLambdaProcessorDescriptionBuilder
Creates a new builder-style object to manufacture InputLambdaProcessorDescription
.
Trait Implementations§
source§impl Clone for InputLambdaProcessorDescription
impl Clone for InputLambdaProcessorDescription
source§fn clone(&self) -> InputLambdaProcessorDescription
fn clone(&self) -> InputLambdaProcessorDescription
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<InputLambdaProcessorDescription> for InputLambdaProcessorDescription
impl PartialEq<InputLambdaProcessorDescription> for InputLambdaProcessorDescription
source§fn eq(&self, other: &InputLambdaProcessorDescription) -> bool
fn eq(&self, other: &InputLambdaProcessorDescription) -> bool
self
and other
values to be equal, and is used
by ==
.