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

.NET
Go
Java
Python
TypeScript