Module Values_1.ThresholdSource

Contains information about the threshold for service level metrics.

Sourcetype nonrec t = {
  1. comparison : Values_0.Comparison.t option;
    (*

    The type of comparison. Only "less than" (LT) comparisons are supported.

    *)
  2. thresholdValue : ThresholdValue.t option;
    (*

    The threshold value to compare.

    *)
}
Sourceval make : ?comparison:??? -> ?thresholdValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of ThresholdValue.t | `Enum 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