Module Values.FieldSource

Indicates the field or attribute of a resource or data structure on which a condition is being applied or evaluated.

Sourcetype nonrec t = {
  1. aggregation : FieldAggregationType.t option;
    (*

    (Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.

    *)
  2. name : String255.t;
    (*

    Name of the field.

    *)
}
Sourceval context_ : string
Sourceval make : ?aggregation:??? -> name:String255.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