interface CfnContactFlowModuleAliasMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnContactFlowModuleAliasMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnContactFlowModuleAliasMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnContactFlowModuleAliasMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnContactFlowModuleAliasMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnContactFlowModuleAliasMixinProps |
Properties for CfnContactFlowModuleAliasPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnContactFlowModuleAliasMixinProps: connect_mixins.CfnContactFlowModuleAliasMixinProps = {
contactFlowModuleId: 'contactFlowModuleId',
contactFlowModuleVersion: 123,
description: 'description',
name: 'name',
};
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. |
| description? | string | The description of the alias. |
| name? | string | The name of the alias. |
contactFlowModuleId?
Type:
string
(optional)
The identifier of the contact flow module (ARN) this alias is tied to.
contactFlowModuleVersion?
Type:
number
(optional)
The version number of the contact flow module this alias points to.
description?
Type:
string
(optional)
The description of the alias.
name?
Type:
string
(optional)
The name of the alias.

.NET
Go
Java
Python
TypeScript