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

Preset

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

A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.

interface Preset {
Arn?: string | null;
Category?: string | null;
CreatedAt?: Date | number | null;
Description?: string | null;
LastUpdated?: Date | number | null;
Name: string;
Settings: PresetSettings;
Type?: Type | null;
}

§Properties

§
Arn?: string | null
[src]

An identifier for this resource that is unique within all of AWS.

§
Category?: string | null
[src]

An optional category you create to organize your presets.

§
CreatedAt?: Date | number | null
[src]

The timestamp in epoch seconds for preset creation.

§
Description?: string | null
[src]

An optional description you create for each preset.

§
LastUpdated?: Date | number | null
[src]

The timestamp in epoch seconds when the preset was last updated.

§
Name: string
[src]

A name you create for each preset. Each name must be unique within your account.

§

Settings for preset

§
Type?: Type | null
[src]

A preset can be of two types: system or custom. System or built-in preset can't be modified or deleted by the user.