Amazon MediaTailor · Schema

HttpConfiguration

The HTTP configuration for the source location.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
BaseUrl object
View JSON Schema on GitHub

JSON Schema

mediatailor-api-http-configuration-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-http-configuration-schema.json",
  "title": "HttpConfiguration",
  "description": "The HTTP configuration for the source location.",
  "type": "object",
  "properties": {
    "BaseUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The base URL for the source location host server. This string must include the protocol, such as <b>https://</b>."
        }
      ]
    }
  },
  "required": [
    "BaseUrl"
  ]
}