Interface CfnRoutingProfile.RoutingProfileQueueReferenceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRoutingProfile.RoutingProfileQueueReferenceProperty.Jsii$Proxy
Enclosing class:
CfnRoutingProfile

@Stability(Stable) public static interface CfnRoutingProfile.RoutingProfileQueueReferenceProperty extends software.amazon.jsii.JsiiSerializable
Contains the channel and queue identifier for a routing profile.

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.*;
 RoutingProfileQueueReferenceProperty routingProfileQueueReferenceProperty = RoutingProfileQueueReferenceProperty.builder()
         .channel("channel")
         .queueArn("queueArn")
         .build();
 

See Also: