Interface CfnApplication.InputProcessingConfigurationProperty

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

@Stability(Stable) public static interface CfnApplication.InputProcessingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides a description of 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 AWS 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")
                 .roleArn("roleArn")
                 .build())
         .build();
 

See Also: