Module Values_1.ThresholdV2Source

Contains information about the threshold for service level metrics.

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

    The type of comparison. Currently, "less than" (LT), "less than equal" (LTE), and "greater than" (GT) 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 | `String of ResourceArnOrId.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