Module Values.RuleSummarySource

High-level information about a Rule, returned by operations like DescribeManagedRuleGroup. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

Sourcetype nonrec t = {
  1. name : EntityName.t option;
    (*

    The name of the rule.

    *)
  2. action : RuleAction.t option;
    (*

    The action that WAF should take on a web request when it matches a rule's statement. Settings at the web ACL level can override the rule action setting.

    *)
}
Sourceval make : ?name:??? -> ?action:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EntityName.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Integer of ResponseStatusCode.t | `List of [> `Structure of (string * [> `String of CustomHTTPHeaderName.t ]) list ] list | `String of EntityName.t ]) list ]) list ]) 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