Module Values.SilentAudioSource

Configures settings for the SilentAudio metric.

Sourcetype nonrec t = {
  1. state : State.t option;
    (*

    Indicates whether the SilentAudio metric is enabled or disabled.

    *)
  2. thresholdSeconds : Integer.t option;
    (*

    Specifies the number of consecutive seconds of silence that triggers an event or alert.

    *)
}
Sourceval make : ?state:??? -> ?thresholdSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) 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