Amazon MediaConvert · JSON Structure

Mediaconvert Api Allowed Rendition Size Structure

Use Allowed renditions to specify a list of possible resolutions in your ABR stack. * MediaConvert will create an ABR stack exclusively from the list of resolutions that you specify. * Some resolutions in the Allowed renditions list may not be included, however you can force a resolution to be included by setting Required to ENABLED. * You must specify at least one resolution that is greater than or equal to any resolutions that you specify in Min top rendition size or Min bottom rendition size. * If you specify Allowed renditions, you must not specify a separate rule for Force include renditions.

Type: object Properties: 3
BroadcastingMedia ProcessingMedia

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

Properties

Height Required Width

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-mediaconvert/refs/heads/main/json-structure/mediaconvert-api-allowed-rendition-size-structure.json",
  "name": "AllowedRenditionSize",
  "type": "object",
  "description": "Use Allowed renditions to specify a list of possible resolutions in your ABR stack. * MediaConvert will create an ABR stack exclusively from the list of resolutions that you specify. * Some resolutions in the Allowed renditions list may not be included, however you can force a resolution to be included by setting Required to ENABLED. * You must specify at least one resolution that is greater than or equal to any resolutions that you specify in Min top rendition size or Min bottom rendition size. * If you specify Allowed renditions, you must not specify a separate rule for Force include renditions.",
  "properties": {
    "Height": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin32Max8192"
        },
        {
          "xml": {
            "name": "height"
          },
          "description": "Use Height to define the video resolution height, in pixels, for this rule."
        }
      ]
    },
    "Required": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RequiredFlag"
        },
        {
          "xml": {
            "name": "required"
          },
          "description": "Set to ENABLED to force a rendition to be included."
        }
      ]
    },
    "Width": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin32Max8192"
        },
        {
          "xml": {
            "name": "width"
          },
          "description": "Use Width to define the video resolution width, in pixels, for this rule."
        }
      ]
    }
  }
}