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

MinBottomRenditionSize

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

Use Min bottom rendition size to specify a minimum size for the lowest resolution in your ABR stack. * The lowest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 640x360 the lowest resolution in your ABR stack will be equal to or greater than to 640x360. * If you specify a Min top rendition size rule, the value that you specify for Min bottom rendition size must be less than, or equal to, Min top rendition size.

interface MinBottomRenditionSize {
Height?: number | null;
Width?: number | null;
}

§Properties

§
Height?: number | null
[src]

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

§
Width?: number | null
[src]

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