Describe Queue
| connect_describe_queue | R Documentation |
Describes the specified queue¶
Description¶
Describes the specified queue.
Usage¶
connect_describe_queue(InstanceId, QueueId)
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. |
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"
),
OutboundEmailConfig = list(
OutboundEmailAddressId = "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"
)