Module Values.AwsWafRegionalRuleDetailsSource

Provides information about an WAF Regional rule. This rule identifies the web requests that you want to allow, block, or count.

Sourcetype nonrec t = {
  1. metricName : NonEmptyString.t option;
    (*

    A name for the metrics for the rule.

    *)
  2. name : NonEmptyString.t option;
    (*

    A descriptive name for the rule.

    *)
  3. predicateList : AwsWafRegionalRulePredicateList.t option;
    (*

    Specifies the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, and SizeConstraintSet objects that you want to add to a rule and, for each object, indicates whether you want to negate the settings.

    *)
  4. ruleId : NonEmptyString.t option;
    (*

    The ID of the rule.

    *)
}
Sourceval make : ?metricName:??? -> ?name:??? -> ?predicateList:??? -> ?ruleId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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