Interface CfnRoutingProfile.RoutingProfileQueueConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutingProfile.RoutingProfileQueueConfigProperty.Jsii$Proxy
- Enclosing class:
CfnRoutingProfile
@Stability(Stable)
public static interface CfnRoutingProfile.RoutingProfileQueueConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*; RoutingProfileQueueConfigProperty routingProfileQueueConfigProperty = RoutingProfileQueueConfigProperty.builder() .delay(123) .priority(123) .queueReference(RoutingProfileQueueReferenceProperty.builder() .channel("channel") .queueArn("queueArn") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRoutingProfile.RoutingProfileQueueConfigProperty
static final class
An implementation forCfnRoutingProfile.RoutingProfileQueueConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDelay
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 .
- See Also:
-
getPriority
The order in which contacts are to be handled for the queue.For more information, see Queues: priority and delay .
- See Also:
-
getQueueReference
Contains information about a queue resource.- See Also:
-
builder
-