Class: Aws::Connect::Types::RoutingProfileQueueReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::RoutingProfileQueueReference
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Note:
When making an API call, you may pass RoutingProfileQueueReference data as a hash:
{
queue_id: "QueueId", # required
channel: "VOICE", # required, accepts VOICE, CHAT, TASK
}
Contains the channel and queue identifier for a routing profile.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel ⇒ String
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
-
#queue_id ⇒ String
The identifier for the queue.
Instance Attribute Details
#channel ⇒ String
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
8561 8562 8563 8564 8565 8566 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8561 class RoutingProfileQueueReference < Struct.new( :queue_id, :channel) SENSITIVE = [] include Aws::Structure end |
#queue_id ⇒ String
The identifier for the queue.
8561 8562 8563 8564 8565 8566 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8561 class RoutingProfileQueueReference < Struct.new( :queue_id, :channel) SENSITIVE = [] include Aws::Structure end |