interface QueueQuickConnectConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnQuickConnectPropsMixin.QueueQuickConnectConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnQuickConnectPropsMixin_QueueQuickConnectConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnQuickConnectPropsMixin.QueueQuickConnectConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnQuickConnectPropsMixin.QueueQuickConnectConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnQuickConnectPropsMixin » QueueQuickConnectConfigProperty |
Contains information about a queue for a quick connect.
The flow must be of type Transfer to Queue.
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 queueQuickConnectConfigProperty: connect_mixins.CfnQuickConnectPropsMixin.QueueQuickConnectConfigProperty = {
contactFlowArn: 'contactFlowArn',
queueArn: 'queueArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The Amazon Resource Name (ARN) of the flow. |
| queue | string | The Amazon Resource Name (ARN) of the queue. |
contactFlowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the flow.
queueArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the queue.

.NET
Go
Java
Python
TypeScript