interface RoutingProfileQueueConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnRoutingProfilePropsMixin_RoutingProfileQueueConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnRoutingProfilePropsMixin » RoutingProfileQueueConfigProperty |
Contains information about the queue and channel for which priority and delay can be set.
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 routingProfileQueueConfigProperty: connect.CfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty = {
delay: 123,
priority: 123,
queueReference: {
channel: 'channel',
queueArn: 'queueArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| delay? | number | The delay, in seconds, a contact should be in the queue before they are routed to an available agent. |
| priority? | number | The order in which contacts are to be handled for the queue. |
| queue | IResolvable | Routing | Contains information about a queue resource. |
delay?
Type:
number
(optional)
The delay, in seconds, a contact should be in the queue before they are routed to an available agent.
For more information, see Queues: priority and delay in the Amazon Connect Administrator Guide .
priority?
Type:
number
(optional)
The order in which contacts are to be handled for the queue.
For more information, see Queues: priority and delay .
queueReference?
Type:
IResolvable | Routing
(optional)
Contains information about a queue resource.

.NET
Go
Java
Python
TypeScript