Interface CfnApplication.InputLambdaProcessorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplication.InputLambdaProcessorProperty.Jsii$Proxy
Enclosing class:
CfnApplication

@Stability(Stable) public static interface CfnApplication.InputLambdaProcessorProperty extends software.amazon.jsii.JsiiSerializable
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 function.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.kinesisanalytics.*;
 InputLambdaProcessorProperty inputLambdaProcessorProperty = InputLambdaProcessorProperty.builder()
         .resourceArn("resourceArn")
         .roleArn("roleArn")
         .build();
 

See Also: