Module Values_0.PredicateSource

Defines the predicate of the trigger, which determines when it fires.

Sourcetype nonrec t = {
  1. logical : Logical.t option;
    (*

    An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.

    *)
  2. conditions : ConditionList.t option;
    (*

    A list of the conditions that determine when the trigger will fire.

    *)
}
Sourceval make : ?logical:??? -> ?conditions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of NameString.t ]) list ] list ]) 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