Skip to content

Disassociate Routing Profile Queues

connect_disassociate_routing_profile_queues R Documentation

Disassociates a set of queues from a routing profile

Description

Disassociates a set of queues from a routing profile.

Up to 10 queue references can be disassociated in a single API call. More than 10 queue references results in a single call results in an InvalidParameterException.

Usage

connect_disassociate_routing_profile_queues(InstanceId,
  RoutingProfileId, QueueReferences, ManualAssignmentQueueReferences)

Arguments

InstanceId

[required] The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

RoutingProfileId

[required] The identifier of the routing profile.

QueueReferences

The queues to disassociate from this routing profile.

ManualAssignmentQueueReferences

The manual assignment queues to disassociate with this routing profile.

Value

An empty list.

Request syntax

svc$disassociate_routing_profile_queues(
  InstanceId = "string",
  RoutingProfileId = "string",
  QueueReferences = list(
    list(
      QueueId = "string",
      Channel = "VOICE"|"CHAT"|"TASK"|"EMAIL"
    )
  ),
  ManualAssignmentQueueReferences = list(
    list(
      QueueId = "string",
      Channel = "VOICE"|"CHAT"|"TASK"|"EMAIL"
    )
  )
)