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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.InputProcessingConfigurationProperty
static final class
An implementation forCfnApplicationV2.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.- See Also:
-
builder
-