Amazon MediaTailor · Schema

SegmentDeliveryConfiguration

The segment delivery configuration settings.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
BaseUrl object
Name object
View JSON Schema on GitHub

JSON Schema

mediatailor-api-segment-delivery-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-segment-delivery-configuration-schema.json",
  "title": "SegmentDeliveryConfiguration",
  "description": "The segment delivery configuration settings.",
  "type": "object",
  "properties": {
    "BaseUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as <code>https://example.com/some/path</code>. To use a relative URL specify the relative path, such as <code>/some/path*</code>."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "A unique identifier used to distinguish between multiple segment delivery configurations in a source location."
        }
      ]
    }
  }
}