Interface CfnApplicationV2.InputLambdaProcessorProperty

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

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

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")
         .build();