Amazon Connect · JSON Structure

Create Routing Profile Request Structure

CreateRoutingProfileRequest schema from Amazon Connect Service API

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

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

Properties

Name Description DefaultOutboundQueueId QueueConfigs MediaConcurrencies 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-routing-profile-request-structure.json",
  "name": "CreateRoutingProfileRequest",
  "description": "CreateRoutingProfileRequest schema from Amazon Connect Service API",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string",
      "description": "The name of the routing profile. Must not be more than 127 characters.",
      "example": "Voice Agents"
    },
    "Description": {
      "type": "string",
      "description": "Description of the routing profile.",
      "example": "Routing profile for voice agents"
    },
    "DefaultOutboundQueueId": {
      "type": "string",
      "description": "The default outbound queue for the routing profile.",
      "example": "a1b2c3d4-5678-90ab-cdef-55555EXAMPLE"
    },
    "QueueConfigs": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "QueueReference": {
            "type": "object",
            "properties": {
              "QueueId": {
                "type": "string"
              },
              "Channel": {
                "type": "string"
              }
            }
          },
          "Priority": {
            "type": "int32"
          },
          "Delay": {
            "type": "int32"
          }
        }
      }
    },
    "MediaConcurrencies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MediaConcurrency"
      }
    },
    "Tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "DefaultOutboundQueueId",
    "Description",
    "MediaConcurrencies",
    "Name"
  ]
}