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 Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.InputProcessingConfigurationProperty
static final class
An implementation forCfnApplication.InputProcessingConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The 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
-
getInputLambdaProcessor
The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code. -
builder
-