Amazon MediaTailor · JSON Structure

Mediatailor Api Alert Structure

Alert configuration parameters.

Type: object Properties: 5 Required: 5
BroadcastingMedia ProcessingMedia

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

Properties

AlertCode AlertMessage LastModifiedTime RelatedResourceArns ResourceArn

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-mediatailor/refs/heads/main/json-structure/mediatailor-api-alert-structure.json",
  "name": "Alert",
  "type": "object",
  "description": "Alert configuration parameters.",
  "properties": {
    "AlertCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The code for the alert. For example, <code>NOT_PROCESSED</code>."
        }
      ]
    },
    "AlertMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "If an alert is generated for a resource, an explanation of the reason for the alert."
        }
      ]
    },
    "LastModifiedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampUnix"
        },
        {
          "description": "The timestamp when the alert was last modified."
        }
      ]
    },
    "RelatedResourceArns": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "description": "The Amazon Resource Names (ARNs) related to this alert."
        }
      ]
    },
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the resource."
        }
      ]
    }
  },
  "required": [
    "AlertCode",
    "AlertMessage",
    "LastModifiedTime",
    "RelatedResourceArns",
    "ResourceArn"
  ]
}