aws-cdk-lib.aws_kinesisanalytics.CfnApplication.InputProcessingConfigurationProperty

interface InputProcessingConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalytics.CfnApplication.InputProcessingConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplication_InputProcessingConfigurationProperty
Javasoftware.amazon.awscdk.services.kinesisanalytics.CfnApplication.InputProcessingConfigurationProperty
Pythonaws_cdk.aws_kinesisanalytics.CfnApplication.InputProcessingConfigurationProperty
TypeScript aws-cdk-lib » aws_kinesisanalytics » CfnApplication » InputProcessingConfigurationProperty

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 { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const inputProcessingConfigurationProperty: kinesisanalytics.CfnApplication.InputProcessingConfigurationProperty = {
  inputLambdaProcessor: {
    resourceArn: 'resourceArn',
    roleArn: 'roleArn',
  },
};

Properties

NameTypeDescription
inputLambdaProcessor?IResolvable | InputLambdaProcessorPropertyThe InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.

inputLambdaProcessor?

Type: IResolvable | InputLambdaProcessorProperty (optional)

The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.