DashEncryption

A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
KeyRotationIntervalSeconds object
SpekeKeyProvider object
View JSON Schema on GitHub

JSON Schema

mediapackage-api-dash-encryption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediapackage/refs/heads/main/json-schema/mediapackage-api-dash-encryption-schema.json",
  "title": "DashEncryption",
  "description": "A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.",
  "type": "object",
  "properties": {
    "KeyRotationIntervalSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "keyRotationIntervalSeconds"
          },
          "description": "Time (in seconds) between each encryption key rotation."
        }
      ]
    },
    "SpekeKeyProvider": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SpekeKeyProvider"
        },
        {
          "xml": {
            "name": "spekeKeyProvider"
          }
        }
      ]
    }
  },
  "required": [
    "SpekeKeyProvider"
  ]
}