Module Values.AwsWafRuleGroupDetailsSource

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

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

    The name of the metrics for this rule group.

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

    The name of the rule group.

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

    The ID of the rule group.

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

    Provides information about the rules attached to the rule group. These rules 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