Class: Aws::Connect::Types::MediaConcurrency
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::MediaConcurrency
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Contains information about which channels are supported, and how many contacts an agent can have on a channel simultaneously.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel ⇒ String
The channels that agents can handle in the Contact Control Panel (CCP).
-
#concurrency ⇒ Integer
The number of contacts an agent can have on a channel simultaneously.
-
#cross_channel_behavior ⇒ Types::CrossChannelBehavior
Defines the cross-channel routing behavior for each channel that is enabled for this Routing Profile.
Instance Attribute Details
#channel ⇒ String
The channels that agents can handle in the Contact Control Panel (CCP).
15996 15997 15998 15999 16000 16001 16002 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15996 class MediaConcurrency < Struct.new( :channel, :concurrency, :cross_channel_behavior) SENSITIVE = [] include Aws::Structure end |
#concurrency ⇒ Integer
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.
15996 15997 15998 15999 16000 16001 16002 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15996 class MediaConcurrency < Struct.new( :channel, :concurrency, :cross_channel_behavior) SENSITIVE = [] include Aws::Structure end |
#cross_channel_behavior ⇒ Types::CrossChannelBehavior
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.
15996 15997 15998 15999 16000 16001 16002 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15996 class MediaConcurrency < Struct.new( :channel, :concurrency, :cross_channel_behavior) SENSITIVE = [] include Aws::Structure end |