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

AdBreak

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

Ad break configuration parameters.

interface AdBreak {
MessageType?: MessageType | null;
OffsetMillis?: number | null;
Slate?: SlateSource | null;
SpliceInsertMessage?: SpliceInsertMessage | null;
TimeSignalMessage?: TimeSignalMessage | null;
}

§Properties

§
MessageType?: MessageType | null
[src]

The SCTE-35 ad insertion type. Accepted value: SPLICE_INSERT, TIME_SIGNAL.

§
OffsetMillis?: number | null
[src]

How long (in milliseconds) after the beginning of the program that an ad starts. This value must fall within 100ms of a segment boundary, otherwise the ad break will be skipped.

§
Slate?: SlateSource | null
[src]

Ad break slate configuration.

§
SpliceInsertMessage?: SpliceInsertMessage | null
[src]

This defines the SCTE-35 splice_insert() message inserted around the ad. For information about using splice_insert(), see the SCTE-35 specficiaiton, section 9.7.3.1.

§
TimeSignalMessage?: TimeSignalMessage | null
[src]

Defines the SCTE-35 time_signal message inserted around the ad.

Programs on a channel's schedule can be configured with one or more ad breaks. You can attach a splice_insert SCTE-35 message to the ad break. This message provides basic metadata about the ad break.

See section 9.7.4 of the 2022 SCTE-35 specification for more information.