interface LambdaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnChannelFlowPropsMixin.LambdaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnChannelFlowPropsMixin_LambdaConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnChannelFlowPropsMixin.LambdaConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnChannelFlowPropsMixin.LambdaConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnChannelFlowPropsMixin » 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/cfn-property-mixins';
const lambdaConfigurationProperty: chime.CfnChannelFlowPropsMixin.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
(optional)
Controls how the Lambda function is invoked.
resourceArn?
Type:
string
(optional)
The ARN of the Lambda message processing function.

.NET
Go
Java
Python
TypeScript