Amazon MediaTailor · Schema

Bumper

The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
EndUrl object
StartUrl object
View JSON Schema on GitHub

JSON Schema

mediatailor-api-bumper-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-bumper-schema.json",
  "title": "Bumper",
  "description": "The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see <a href=\"https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html\">Bumpers</a>.",
  "type": "object",
  "properties": {
    "EndUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The URL for the end bumper asset."
        }
      ]
    },
    "StartUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The URL for the start bumper asset."
        }
      ]
    }
  }
}