Interface CfnRoutingProfileProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRoutingProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:13.880Z") @Stability(Stable) public interface CfnRoutingProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnRoutingProfile.

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.*;
 CfnRoutingProfileProps cfnRoutingProfileProps = CfnRoutingProfileProps.builder()
         .defaultOutboundQueueArn("defaultOutboundQueueArn")
         .description("description")
         .instanceArn("instanceArn")
         .mediaConcurrencies(List.of(MediaConcurrencyProperty.builder()
                 .channel("channel")
                 .concurrency(123)
                 // the properties below are optional
                 .crossChannelBehavior(CrossChannelBehaviorProperty.builder()
                         .behaviorType("behaviorType")
                         .build())
                 .build()))
         .name("name")
         // the properties below are optional
         .agentAvailabilityTimer("agentAvailabilityTimer")
         .queueConfigs(List.of(RoutingProfileQueueConfigProperty.builder()
                 .delay(123)
                 .priority(123)
                 .queueReference(RoutingProfileQueueReferenceProperty.builder()
                         .channel("channel")
                         .queueArn("queueArn")
                         .build())
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: