interface QueueQuickConnectConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnQuickConnectPropsMixin.QueueQuickConnectConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnQuickConnectPropsMixin_QueueQuickConnectConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnQuickConnectPropsMixin.QueueQuickConnectConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnQuickConnectPropsMixin.QueueQuickConnectConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const queueQuickConnectConfigProperty: connect.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