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

PreferredChannelPipeline

import type { PreferredChannelPipeline } from "https://aws-api.deno.dev/v0.3/services/medialive.ts?docs=full";

Indicates which pipeline is preferred by the multiplex for program ingest. If set to "PIPELINE_0" or "PIPELINE_1" and an unhealthy ingest causes the multiplex to switch to the non-preferred pipeline, it will switch back once that ingest is healthy again. If set to "CURRENTLY_ACTIVE", it will not switch back to the other pipeline based on it recovering to a healthy state, it will only switch if the active pipeline becomes unhealthy.

type PreferredChannelPipeline =
| "CURRENTLY_ACTIVE"
| "PIPELINE_0"
| "PIPELINE_1"

§Type

§
"CURRENTLY_ACTIVE" | "PIPELINE_0" | "PIPELINE_1" | cmnP.UnexpectedEnumValue
[src]