Skip to content

List Queue Quick Connects

connect_list_queue_quick_connects R Documentation

Lists the quick connects associated with a queue

Description

Lists the quick connects associated with a queue.

Usage

connect_list_queue_quick_connects(InstanceId, QueueId, NextToken,
  MaxResults)

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.

QueueId

[required] The identifier for the queue.

NextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

MaxResults

The maximum number of results to return per page. The default MaxResult size is 100.

Value

A list with the following syntax:

list(
  NextToken = "string",
  QuickConnectSummaryList = list(
    list(
      Id = "string",
      Arn = "string",
      Name = "string",
      QuickConnectType = "USER"|"QUEUE"|"PHONE_NUMBER"|"FLOW",
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedRegion = "string"
    )
  ),
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedRegion = "string"
)

Request syntax

svc$list_queue_quick_connects(
  InstanceId = "string",
  QueueId = "string",
  NextToken = "string",
  MaxResults = 123
)