Module Values.AwsWafRegionalRuleGroupDetailsSource

Provides information about an WAF Regional rule group. The rule group is a collection of rules for inspecting and controlling web requests.

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

    A name for the metrics for this rule group.

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

    The descriptive name of the rule group.

    *)
  3. ruleGroupId : NonEmptyString.t option;
    (*

    The ID of the rule group.

    *)
  4. rules : AwsWafRegionalRuleGroupRulesList.t option;
    (*

    Provides information about the rule statements used to identify the web requests that you want to allow, block, or count.

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