Provides details about a specific Amazon Connect Queue.
By name
data "aws_connect_queue" "example" {
instance_id = "aaaaaaaa-bbbb-cccc-dddd-111111111111"
name = "Example"
}
By queue_id
data "aws_connect_queue" "example" {
instance_id = "aaaaaaaa-bbbb-cccc-dddd-111111111111"
queue_id = "cccccccc-bbbb-cccc-dddd-111111111111"
}
This argument supports the following arguments:
queue_id
- (Optional) Returns information on a specific Queue by Queue idinstance_id
- (Required) Reference to the hosting Amazon Connect Instancename
- (Optional) Returns information on a specific Queue by nameThis data source exports the following attributes in addition to the arguments above:
arn
- ARN of the Queue.description
- Description of the Queue.hours_of_operation_id
- Specifies the identifier of the Hours of Operation.id
- Identifier of the hosting Amazon Connect Instance and identifier of the Queue separated by a colon (:
).max_contacts
- Maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.outbound_caller_config
- A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.queue_id
- Identifier for the Queue.status
- Description of the Queue. Values are ENABLED
or DISABLED
.tags
- Map of tags assigned to the Queue.A outbound_caller_config
block supports the following arguments:
outbound_caller_id_name
- Specifies the caller ID name.outbound_caller_id_number_id
- Specifies the caller ID number.outbound_flow_id
- Outbound whisper flow to be used during an outbound call.