Skip to content

Describe Queue

connect_describe_queue R Documentation

This API is in preview release for Amazon Connect and is subject to change

Description

This API is in preview release for Amazon Connect and is subject to change.

Describes the specified queue.

Usage

connect_describe_queue(InstanceId, QueueId)

Arguments

InstanceId

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

QueueId

[required] The identifier for the queue.

Value

A list with the following syntax:

list(
  Queue = list(
    Name = "string",
    QueueArn = "string",
    QueueId = "string",
    Description = "string",
    OutboundCallerConfig = list(
      OutboundCallerIdName = "string",
      OutboundCallerIdNumberId = "string",
      OutboundFlowId = "string"
    ),
    HoursOfOperationId = "string",
    MaxContacts = 123,
    Status = "ENABLED"|"DISABLED",
    Tags = list(
      "string"
    ),
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedRegion = "string"
  )
)

Request syntax

svc$describe_queue(
  InstanceId = "string",
  QueueId = "string"
)