interface InputProcessingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins.CfnApplicationPropsMixin.InputProcessingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalyticsv2/mixins#CfnApplicationPropsMixin_InputProcessingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.InputProcessingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.InputProcessingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalyticsv2 » mixins » CfnApplicationPropsMixin » InputProcessingConfigurationProperty |
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 { mixins as kinesisanalyticsv2_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalyticsv2';
const inputProcessingConfigurationProperty: kinesisanalyticsv2_mixins.CfnApplicationPropsMixin.InputProcessingConfigurationProperty = {
inputLambdaProcessor: {
resourceArn: 'resourceArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| input | IResolvable | Input | The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code. |
inputLambdaProcessor?
Type:
IResolvable | Input
(optional)
The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.

.NET
Go
Java
Python
TypeScript