Ivs Batch Error Structure

Error related to a specific channel, specified by its ARN.

Type: object Properties: 3
Live StreamingMediaVideoReal-Time

BatchError is a JSON Structure definition published by Amazon Interactive Video Service, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn code message

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-interactive-video-service/refs/heads/main/json-structure/ivs-batch-error-structure.json",
  "name": "BatchError",
  "description": "Error related to a specific channel, specified by its ARN.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceArn"
        },
        {
          "description": "Channel ARN."
        }
      ]
    },
    "code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/errorCode"
        },
        {
          "description": "Error code."
        }
      ]
    },
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/errorMessage"
        },
        {
          "description": "Error message, determined by the application."
        }
      ]
    }
  }
}