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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoutingProfile.MediaConcurrencyPropertystatic final classAn implementation forCfnRoutingProfile.MediaConcurrencyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The channels that agents can handle in the Contact Control Panel (CCP).The number of contacts an agent can have on a channel simultaneously.default ObjectDefines the cross-channel routing behavior for each channel that is enabled for this Routing Profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannel
The channels that agents can handle in the Contact Control Panel (CCP).- See Also:
-
getConcurrency
The number of contacts an agent can have on a channel simultaneously.Valid Range for
VOICE: Minimum value of 1. Maximum value of 1.Valid Range for
CHAT: Minimum value of 1. Maximum value of 10.Valid Range for
TASK: Minimum value of 1. Maximum value of 10.- See Also:
-
getCrossChannelBehavior
Defines the cross-channel routing behavior for each channel that is enabled for this Routing Profile.For example, this allows you to offer an agent a different contact from another channel when they are currently working with a contact from a Voice channel.
Returns union: either
IResolvableorCfnRoutingProfile.CrossChannelBehaviorProperty- See Also:
-
builder
-