aws-cdk-lib.aws_kinesisanalytics.CfnApplication.InputLambdaProcessorProperty

interface InputLambdaProcessorProperty

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

An object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used to preprocess records in the stream, and the ARN of the IAM role that is used to access the AWS Lambda function.

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 inputLambdaProcessorProperty: kinesisanalytics.CfnApplication.InputLambdaProcessorProperty = {
  resourceArn: 'resourceArn',
  roleArn: 'roleArn',
};

Properties

NameTypeDescription
resourceArnstringThe ARN of the AWS Lambda function that operates on records in the stream.
roleArnstringThe ARN of the IAM role that is used to access the AWS Lambda function.

resourceArn

Type: string

The ARN of the AWS Lambda function that operates on records in the stream.

To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda


roleArn

Type: string

The ARN of the IAM role that is used to access the AWS Lambda function.