Module Values.ConditionSource

Indicates the condition based on which you want to filter the metrics.

Sourcetype nonrec t = {
  1. field : String255.t;
    (*

    Indicates the field in the metric.

    *)
  2. operator : ConditionOperatorType.t;
    (*

    Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.

    *)
  3. value : String255.t option;
    (*

    Indicates the value or data against which a condition is evaluated.

    *)
}
Sourceval context_ : string
Sourceval make : ?value:??? -> field:String255.t -> operator:ConditionOperatorType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String255.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