interface QuickConnectConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnQuickConnectPropsMixin.QuickConnectConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnQuickConnectPropsMixin_QuickConnectConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnQuickConnectPropsMixin.QuickConnectConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnQuickConnectPropsMixin.QuickConnectConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnQuickConnectPropsMixin » QuickConnectConfigProperty |
Contains configuration settings for a quick connect.
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 quickConnectConfigProperty: connect_mixins.CfnQuickConnectPropsMixin.QuickConnectConfigProperty = {
phoneConfig: {
phoneNumber: 'phoneNumber',
},
queueConfig: {
contactFlowArn: 'contactFlowArn',
queueArn: 'queueArn',
},
quickConnectType: 'quickConnectType',
userConfig: {
contactFlowArn: 'contactFlowArn',
userArn: 'userArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| phone | IResolvable | Phone | The phone configuration. |
| queue | IResolvable | Queue | The queue configuration. |
| quick | string | The type of quick connect. |
| user | IResolvable | User | The user configuration. |
phoneConfig?
Type:
IResolvable | Phone
(optional)
The phone configuration.
This is required only if QuickConnectType is PHONE_NUMBER.
queueConfig?
Type:
IResolvable | Queue
(optional)
The queue configuration.
This is required only if QuickConnectType is QUEUE.
quickConnectType?
Type:
string
(optional)
The type of quick connect.
In the Amazon Connect console, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).
userConfig?
Type:
IResolvable | User
(optional)
The user configuration.
This is required only if QuickConnectType is USER.

.NET
Go
Java
Python
TypeScript