AllowedRenditionSize

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.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Height object
Required object
Width object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-allowed-rendition-size-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-allowed-rendition-size-schema.json",
  "title": "AllowedRenditionSize",
  "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.",
  "type": "object",
  "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."
        }
      ]
    }
  }
}