Amazon MediaLive · Schema

HlsMediaStoreSettings

Hls Media Store Settings

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ConnectionRetryInterval object
FilecacheDuration object
MediaStoreStorageClass object
NumRetries object
RestartDelay object
View JSON Schema on GitHub

JSON Schema

medialive-api-hls-media-store-settings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-hls-media-store-settings-schema.json",
  "title": "HlsMediaStoreSettings",
  "description": "Hls Media Store Settings",
  "type": "object",
  "properties": {
    "ConnectionRetryInterval": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin0"
        },
        {
          "xml": {
            "name": "connectionRetryInterval"
          },
          "description": "Number of seconds to wait before retrying connection to the CDN if the connection is lost."
        }
      ]
    },
    "FilecacheDuration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin0Max600"
        },
        {
          "xml": {
            "name": "filecacheDuration"
          },
          "description": "Size in seconds of file cache for streaming outputs."
        }
      ]
    },
    "MediaStoreStorageClass": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HlsMediaStoreStorageClass"
        },
        {
          "xml": {
            "name": "mediaStoreStorageClass"
          },
          "description": "When set to temporal, output files are stored in non-persistent memory for faster reading and writing."
        }
      ]
    },
    "NumRetries": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin0"
        },
        {
          "xml": {
            "name": "numRetries"
          },
          "description": "Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with \"s3\" or \"mediastore\". For other URIs, the value is always 3."
        }
      ]
    },
    "RestartDelay": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin0Max15"
        },
        {
          "xml": {
            "name": "restartDelay"
          },
          "description": "If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart."
        }
      ]
    }
  }
}