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

CreateChannelRequest

import type { CreateChannelRequest } from "https://aws-api.deno.dev/v0.3/services/mediatailor.ts?docs=full";
interface CreateChannelRequest {
ChannelName: string;
FillerSlate?: SlateSource | null;
Outputs: RequestOutputItem[];
PlaybackMode: PlaybackMode;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
ChannelName: string
[src]

The identifier for the channel you are working on.

§
FillerSlate?: SlateSource | null
[src]

The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses the LINEAR PlaybackMode. MediaTailor doesn't support filler slate for channels using the LOOP PlaybackMode.

§

The channel's output properties.

§
PlaybackMode: PlaybackMode
[src]

The type of playback mode to use for this channel.

LINEAR - The programs in the schedule play once back-to-back in the schedule.

LOOP - The programs in the schedule play back-to-back in an endless loop. When the last program in the schedule stops playing, playback loops back to the first program in the schedule.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags to assign to the channel.