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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoutingProfile.RoutingProfileQueueConfigPropertystatic final classAn 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.Returns union: either
IResolvableorCfnRoutingProfile.RoutingProfileQueueReferenceProperty- See Also:
-
builder
-