interface CfnChannelFlowProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnChannelFlowProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnChannelFlowProps |
Java | software.amazon.awscdk.services.chime.CfnChannelFlowProps |
Python | aws_cdk.aws_chime.CfnChannelFlowProps |
TypeScript | aws-cdk-lib » aws_chime » CfnChannelFlowProps |
Properties for defining a CfnChannelFlow.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-channelflow.html
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 cfnChannelFlowProps: chime.CfnChannelFlowProps = {
appInstanceArn: 'appInstanceArn',
name: 'name',
processors: [{
configuration: {
lambda: {
invocationType: 'invocationType',
resourceArn: 'resourceArn',
},
},
executionOrder: 123,
fallbackAction: 'fallbackAction',
name: 'name',
}],
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The ARN of the app instance. |
| name | string | The name of the channel flow. |
| processors | IResolvable | (IResolvable | Processor)[] | Information about the processor Lambda functions. |
| tags? | Cfn[] | The tags for the channel flow. |
appInstanceArn
Type:
string
The ARN of the app instance.
name
Type:
string
The name of the channel flow.
processors
Type:
IResolvable | (IResolvable | Processor)[]
Information about the processor Lambda functions.
tags?
Type:
Cfn[]
(optional)
The tags for the channel flow.

.NET
Go
Java
Python
TypeScript