@Stability(value=Stable)
public static interface CfnApplication.InputProcessingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplication.InputProcessingConfigurationProperty.Builder
A builder for
CfnApplication.InputProcessingConfigurationProperty |
static class |
CfnApplication.InputProcessingConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplication.InputProcessingConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplication.InputProcessingConfigurationProperty.Builder |
builder() |
default Object |
getInputLambdaProcessor()
The [InputLambdaProcessor](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-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 CfnApplication.InputProcessingConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.