Module Values.FailoverConditionSettingsSource

Settings for one failover condition.

Sourcetype nonrec t = {
  1. audioSilenceSettings : AudioSilenceFailoverSettings.t option;
    (*

    MediaLive will perform a failover if the specified audio selector is silent for the specified period.

    *)
  2. inputLossSettings : InputLossFailoverSettings.t option;
    (*

    MediaLive will perform a failover if content is not detected in this input for the specified period.

    *)
  3. videoBlackSettings : VideoBlackFailoverSettings.t option;
    (*

    MediaLive will perform a failover if content is considered black for the specified period.

    *)
}
Sourceval make : ?audioSilenceSettings:??? -> ?inputLossSettings:??? -> ?videoBlackSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of float | `Integer of int | `String of string ]) list ]) 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