Amazon Connect · JSON Structure

Create Queue Request Structure

CreateQueueRequest schema from Amazon Connect Service API

Type: object Properties: 6 Required: 2
ChatContact CenterCustomer ServiceVoiceAIOmnichannel

CreateQueueRequest is a JSON Structure definition published by Amazon Connect, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Description HoursOfOperationId MaxContacts OutboundCallerConfig Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-structure/create-queue-request-structure.json",
  "name": "CreateQueueRequest",
  "description": "CreateQueueRequest schema from Amazon Connect Service API",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string",
      "description": "The name of the queue.",
      "example": "Support Queue"
    },
    "Description": {
      "type": "string",
      "description": "The description of the queue."
    },
    "HoursOfOperationId": {
      "type": "string",
      "description": "The identifier for the hours of operation.",
      "example": "a1b2c3d4-5678-90ab-cdef-66666EXAMPLE"
    },
    "MaxContacts": {
      "type": "int32",
      "description": "The maximum number of contacts that can be in the queue.",
      "example": 100
    },
    "OutboundCallerConfig": {
      "type": "object",
      "properties": {
        "OutboundCallerIdName": {
          "type": "string"
        },
        "OutboundCallerIdNumberId": {
          "type": "string"
        },
        "OutboundFlowId": {
          "type": "string"
        }
      }
    },
    "Tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "HoursOfOperationId",
    "Name"
  ]
}