Interface CfnRoutingProfile.MediaConcurrencyProperty

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

@Stability(Stable) public static interface CfnRoutingProfile.MediaConcurrencyProperty extends software.amazon.jsii.JsiiSerializable
Contains information about which channels are supported, and how many contacts an agent can have on a channel simultaneously.

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.*;
 MediaConcurrencyProperty mediaConcurrencyProperty = MediaConcurrencyProperty.builder()
         .channel("channel")
         .concurrency(123)
         // the properties below are optional
         .crossChannelBehavior(CrossChannelBehaviorProperty.builder()
                 .behaviorType("behaviorType")
                 .build())
         .build();
 

See Also: