Amazon Connect · Schema

Error

An Amazon Connect error response.

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
message string The error message.
code string The error code.
View JSON Schema on GitHub

JSON Schema

amazon-connect-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "description": "An Amazon Connect error response.",
  "properties": {
    "message": {
      "type": "string",
      "description": "The error message.",
      "example": "The specified resource was not found."
    },
    "code": {
      "type": "string",
      "description": "The error code.",
      "example": "ResourceNotFoundException"
    }
  }
}