interface RoutingProfileQueueConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnRoutingProfilePropsMixin_RoutingProfileQueueConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnRoutingProfilePropsMixin.RoutingProfileQueueConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const routingProfileQueueConfigProperty: connect_mixins.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