Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AllowedRenditionSize

import type { AllowedRenditionSize } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

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.

interface AllowedRenditionSize {
Height?: number | null;
Required?: RequiredFlag | null;
Width?: number | null;
}

§Properties

§
Height?: number | null
[src]

Use Height to define the video resolution height, in pixels, for this rule.

§
Required?: RequiredFlag | null
[src]

Set to ENABLED to force a rendition to be included.

§
Width?: number | null
[src]

Use Width to define the video resolution width, in pixels, for this rule.