JobMessages

Provides messages from the service about jobs that you have already successfully submitted.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Info object
Warning object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-job-messages-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-job-messages-schema.json",
  "title": "JobMessages",
  "description": "Provides messages from the service about jobs that you have already successfully submitted.",
  "type": "object",
  "properties": {
    "Info": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "info"
          },
          "description": "List of messages that are informational only and don't indicate a problem with your job."
        }
      ]
    },
    "Warning": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "warning"
          },
          "description": "List of messages that warn about conditions that might cause your job not to run or to fail."
        }
      ]
    }
  }
}