Class: Aws::Connect::Types::MediaConcurrency
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::MediaConcurrency
- Includes:
- Structure
- Defined in:
- 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).
14594 14595 14596 14597 14598 14599 14600 |
# File 'lib/aws-sdk-connect/types.rb', line 14594 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.
14594 14595 14596 14597 14598 14599 14600 |
# File 'lib/aws-sdk-connect/types.rb', line 14594 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.
14594 14595 14596 14597 14598 14599 14600 |
# File 'lib/aws-sdk-connect/types.rb', line 14594 class MediaConcurrency < Struct.new( :channel, :concurrency, :cross_channel_behavior) SENSITIVE = [] include Aws::Structure end |