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

FailoverConfig

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

The settings for source failover.

interface FailoverConfig {
FailoverMode?: FailoverMode | null;
RecoveryWindow?: number | null;
SourcePriority?: SourcePriority | null;
State?: State | null;
}

§Properties

§
FailoverMode?: FailoverMode | null
[src]

The type of failover you choose for this flow. MERGE combines the source streams into a single stream, allowing graceful recovery from any single-source loss. FAILOVER allows switching between different streams.

§
RecoveryWindow?: number | null
[src]

Search window time to look for dash-7 packets

§
SourcePriority?: SourcePriority | null
[src]

The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.

§
State?: State | null
[src]