Interface CfnApplicationV2.InputProcessingConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationV2.InputProcessingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
For an SQL-based Amazon Kinesis Data Analytics application, describes a processor that is used to preprocess the records in the stream before being processed by your application code.

Currently, the only input processor available is Amazon Lambda .

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.*;
 InputProcessingConfigurationProperty inputProcessingConfigurationProperty = InputProcessingConfigurationProperty.builder()
         .inputLambdaProcessor(InputLambdaProcessorProperty.builder()
                 .resourceArn("resourceArn")
                 .build())
         .build();
 

See Also: