interface CfnContactFlowProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnContactFlowProps |
Java | software.amazon.awscdk.services.connect.CfnContactFlowProps |
Python | aws_cdk.aws_connect.CfnContactFlowProps |
TypeScript | @aws-cdk/aws-connect » CfnContactFlowProps |
Properties for defining a CfnContactFlow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as connect from '@aws-cdk/aws-connect';
const cfnContactFlowProps: connect.CfnContactFlowProps = {
content: 'content',
instanceArn: 'instanceArn',
name: 'name',
type: 'type',
// the properties below are optional
description: 'description',
state: 'state',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content of the flow. |
| instance | string | The Amazon Resource Name (ARN) of the Amazon Connect instance. |
| name | string | The name of the flow. |
| type | string | The type of the flow. |
| description? | string | The description of the flow. |
| state? | string | The state of the flow. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
content
Type:
string
The content of the flow.
For more information, see Amazon Connect Flow language in the Amazon Connect Administrator Guide .
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the Amazon Connect instance.
name
Type:
string
The name of the flow.
type
Type:
string
The type of the flow.
For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide .
description?
Type:
string
(optional)
The description of the flow.
state?
Type:
string
(optional)
The state of the flow.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Java
Python
TypeScript