Module Values.AwsWafRuleGroupRulesDetailsSource

Provides information about the rules attached to the rule group. These rules identify the web requests that you want to allow, block, or count.

Sourcetype nonrec t = {
  1. action : AwsWafRuleGroupRulesActionDetails.t option;
    (*

    Provides information about what action WAF should take on a web request when it matches the criteria defined in the rule.

    *)
  2. priority : Integer.t option;
    (*

    If you define more than one rule in a web ACL, WAF evaluates each request against the rules in order based on the value of Priority.

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

    The rule ID for a rule.

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

    The type of rule.

    *)
}
Sourceval make : ?action:??? -> ?priority:??? -> ?ruleId:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.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