interface CfnContactFlowModuleVersionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnContactFlowModuleVersionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnContactFlowModuleVersionProps |
Java | software.amazon.awscdk.services.connect.CfnContactFlowModuleVersionProps |
Python | aws_cdk.aws_connect.CfnContactFlowModuleVersionProps |
TypeScript | aws-cdk-lib » aws_connect » CfnContactFlowModuleVersionProps |
Properties for defining a CfnContactFlowModuleVersion.
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 cfnContactFlowModuleVersionProps: connect.CfnContactFlowModuleVersionProps = {
contactFlowModuleId: 'contactFlowModuleId',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The identifier of the contact flow module (ARN) this version is tied to. |
| description? | string | The description of the version. |
contactFlowModuleId
Type:
string
The identifier of the contact flow module (ARN) this version is tied to.
description?
Type:
string
(optional)
The description of the version.

.NET
Go
Java
Python
TypeScript