interface CfnContactFlowVersionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnContactFlowVersionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnContactFlowVersionProps |
Java | software.amazon.awscdk.services.connect.CfnContactFlowVersionProps |
Python | aws_cdk.aws_connect.CfnContactFlowVersionProps |
TypeScript | aws-cdk-lib » aws_connect » CfnContactFlowVersionProps |
Properties for defining a CfnContactFlowVersion.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnContactFlowVersionProps: connect.CfnContactFlowVersionProps = {
contactFlowId: 'contactFlowId',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The identifier of the flow. |
| description? | string | The description of the flow version. |
contactFlowId
Type:
string
The identifier of the flow.
description?
Type:
string
(optional)
The description of the flow version.

.NET
Go
Java
Python
TypeScript