Amazon MediaPackage · JSON Structure

Mediapackage Api Stream Selection Structure

A StreamSelection configuration.

Type: object Properties: 3
BroadcastingMedia ProcessingMedia

StreamSelection is a JSON Structure definition published by Amazon MediaPackage, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

MaxVideoBitsPerSecond MinVideoBitsPerSecond StreamOrder

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediapackage/refs/heads/main/json-structure/mediapackage-api-stream-selection-structure.json",
  "name": "StreamSelection",
  "type": "object",
  "description": "A StreamSelection configuration.",
  "properties": {
    "MaxVideoBitsPerSecond": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "maxVideoBitsPerSecond"
          },
          "description": "The maximum video bitrate (bps) to include in output."
        }
      ]
    },
    "MinVideoBitsPerSecond": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "minVideoBitsPerSecond"
          },
          "description": "The minimum video bitrate (bps) to include in output."
        }
      ]
    },
    "StreamOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamOrder"
        },
        {
          "xml": {
            "name": "streamOrder"
          },
          "description": "A directive that determines the order of streams in the output."
        }
      ]
    }
  }
}