interface LambdaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnChannelFlow.LambdaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnChannelFlow_LambdaConfigurationProperty |
Java | software.amazon.awscdk.services.chime.CfnChannelFlow.LambdaConfigurationProperty |
Python | aws_cdk.aws_chime.CfnChannelFlow.LambdaConfigurationProperty |
TypeScript | aws-cdk-lib » aws_chime » CfnChannelFlow » LambdaConfigurationProperty |
Stores metadata about a Lambda processor.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_chime as chime } from 'aws-cdk-lib';
const lambdaConfigurationProperty: chime.CfnChannelFlow.LambdaConfigurationProperty = {
invocationType: 'invocationType',
resourceArn: 'resourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| invocation | string | Controls how the Lambda function is invoked. |
| resource | string | The ARN of the Lambda message processing function. |
invocationType
Type:
string
Controls how the Lambda function is invoked.
resourceArn
Type:
string
The ARN of the Lambda message processing function.

.NET
Go
Java
Python
TypeScript