Module Values.AutomaticInputFailoverSettingsSource

The settings for Automatic Input Failover.

Sourcetype nonrec t = {
  1. errorClearTimeMsec : int option;
    (*

    This clear time defines the requirement a recovered input must meet to be considered healthy. The input must have no failover conditions for this length of time. Enter a time in milliseconds. This value is particularly important if the input_preference for the failover pair is set to PRIMARY_INPUT_PREFERRED, because after this time, MediaLive will switch back to the primary input.

    *)
  2. failoverConditions : FailoverCondition.t list option;
    (*

    A list of failover conditions. If any of these conditions occur, MediaLive will perform a failover to the other input.

    *)
  3. inputPreference : InputPreference.t option;
    (*

    Input preference when deciding which input to make active when a previously failed input has recovered.

    *)
  4. secondaryInputId : string;
    (*

    The input ID of the secondary input in the automatic input failover pair.

    *)
}
Sourceval context_ : string
Sourceval make : ?errorClearTimeMsec:??? -> ?failoverConditions:??? -> ?inputPreference:??? -> secondaryInputId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Double of float | `Integer of int | `String of string ]) list ]) list ]) list ] list | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t