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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.InputProcessingConfigurationPropertystatic final classAn implementation forCfnApplication.InputProcessingConfigurationProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default ObjectThe InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getInputLambdaProcessorThe InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.
- 
builder
 
-