Creates a new routing profile.
connect_create_routing_profile(InstanceId, Name, Description,
DefaultOutboundQueueId, QueueConfigs, MediaConcurrencies, Tags)
A list with the following syntax:
list(
RoutingProfileArn = "string",
RoutingProfileId = "string"
)
[required] The identifier of the Amazon Connect instance.
[required] The name of the routing profile. Must not be more than 127 characters.
[required] Description of the routing profile. Must not be more than 250 characters.
[required] The default outbound queue for the routing profile.
The inbound queues associated with the routing profile. If no queue is added, the agent can only make outbound calls.
[required] The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
One or more tags.
svc$create_routing_profile(
InstanceId = "string",
Name = "string",
Description = "string",
DefaultOutboundQueueId = "string",
QueueConfigs = list(
list(
QueueReference = list(
QueueId = "string",
Channel = "VOICE"|"CHAT"|"TASK"
),
Priority = 123,
Delay = 123
)
),
MediaConcurrencies = list(
list(
Channel = "VOICE"|"CHAT"|"TASK",
Concurrency = 123
)
),
Tags = list(
"string"
)
)