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: