interface InputLambdaProcessorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins.CfnApplicationPropsMixin.InputLambdaProcessorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalytics/mixins#CfnApplicationPropsMixin_InputLambdaProcessorProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalytics.mixins.CfnApplicationPropsMixin.InputLambdaProcessorProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalytics.mixins.CfnApplicationPropsMixin.InputLambdaProcessorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalytics » mixins » CfnApplicationPropsMixin » 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 { mixins as kinesisanalytics_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalytics';
const inputLambdaProcessorProperty: kinesisanalytics_mixins.CfnApplicationPropsMixin.InputLambdaProcessorProperty = {
resourceArn: 'resourceArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ARN of the AWS Lambda function that operates on records in the stream. |
| role | string | The ARN of the IAM role that is used to access the AWS Lambda function. |
resourceArn?
Type:
string
(optional)
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
(optional)
The ARN of the IAM role that is used to access the AWS Lambda function.

.NET
Go
Java
Python
TypeScript