Learn R Programming

paws.customer.engagement (version 0.1.12)

connect_create_routing_profile: Creates a new routing profile

Description

Creates a new routing profile.

Usage

connect_create_routing_profile(InstanceId, Name, Description,
  DefaultOutboundQueueId, QueueConfigs, MediaConcurrencies, Tags)

Value

A list with the following syntax:

list(
  RoutingProfileArn = "string",
  RoutingProfileId = "string"
)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance.

Name

[required] The name of the routing profile. Must not be more than 127 characters.

Description

[required] Description of the routing profile. Must not be more than 250 characters.

DefaultOutboundQueueId

[required] The default outbound queue for the routing profile.

QueueConfigs

The inbound queues associated with the routing profile. If no queue is added, the agent can only make outbound calls.

MediaConcurrencies

[required] The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.

Tags

One or more tags.

Request syntax

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"
  )
)