Module Values.ConditionSource

A single match condition for a Filter.

Sourcetype nonrec t = {
  1. actionCondition : ActionCondition.t option;
    (*

    A single action condition. This is the action setting that a log record must contain in order to meet the condition.

    *)
  2. labelNameCondition : LabelNameCondition.t option;
    (*

    A single label name condition. This is the fully qualified label name that a log record must contain in order to meet the condition. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

    *)
}
Sourceval make : ?actionCondition:??? -> ?labelNameCondition:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of LabelName.t ]) 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