Interface CfnApplicationPropsMixin.InputProcessingConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationPropsMixin.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.cfnpropertymixins.services.kinesisanalytics.*;
 InputProcessingConfigurationProperty inputProcessingConfigurationProperty = InputProcessingConfigurationProperty.builder()
         .inputLambdaProcessor(InputLambdaProcessorProperty.builder()
                 .resourceArn("resourceArn")
                 .roleArn("roleArn")
                 .build())
         .build();
 

See Also: