@Stability(value=Stable)
public static interface CfnApplicationV2.InputProcessingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationV2.InputProcessingConfigurationProperty.Builder
A builder for
CfnApplicationV2.InputProcessingConfigurationProperty |
static class |
CfnApplicationV2.InputProcessingConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplicationV2.InputProcessingConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationV2.InputProcessingConfigurationProperty.Builder |
builder() |
default Object |
getInputLambdaProcessor()
The [InputLambdaProcessor](https://docs.aws.amazon.com/kinesisanalytics/latest/apiv2/API_InputLambdaProcessor.html) that is used to preprocess the records in the stream before being processed by your application code.
|
@Stability(value=Stable) @Nullable default Object getInputLambdaProcessor()
@Stability(value=Stable) static CfnApplicationV2.InputProcessingConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.