Values.AwsWafRateBasedRuleMatchPredicateSourceA match predicate. A predicate might look for characteristics such as specific IP addresses, geographic locations, or sizes.
type nonrec t = {dataId : NonEmptyString.t option;The unique identifier for the predicate.
*)negated : Boolean.t option;If set to true, then the rule actions are performed on requests that match the predicate settings. If set to false, then the rule actions are performed on all requests except those that match the predicate settings.
*)type_ : NonEmptyString.t option;The type of predicate. Valid values are as follows: ByteMatch GeoMatch IPMatch RegexMatch SizeConstraint SqlInjectionMatch XssMatch
*)}val to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of NonEmptyString.t ]) list ]