interface CfnChannelFlowMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnChannelFlowMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnChannelFlowMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnChannelFlowMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnChannelFlowMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnChannelFlowMixinProps |
Properties for CfnChannelFlowPropsMixin.
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/cfn-property-mixins';
const cfnChannelFlowMixinProps: chime.CfnChannelFlowMixinProps = {
appInstanceArn: 'appInstanceArn',
name: 'name',
processors: [{
configuration: {
lambda: {
invocationType: 'invocationType',
resourceArn: 'resourceArn',
},
},
executionOrder: 123,
fallbackAction: 'fallbackAction',
name: 'name',
}],
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
(optional)
The ARN of the app instance.
name?
Type:
string
(optional)
The name of the channel flow.
processors?
Type:
IResolvable | (IResolvable | Processor)[]
(optional)
Information about the processor Lambda functions.
tags?
Type:
Cfn[]
(optional)
The tags for the channel flow.

.NET
Go
Java
Python
TypeScript