Module Values.AwsWafWebAclDetailsSource

Provides information about an WAF web access control list (web ACL).

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

    A friendly name or description of the web ACL. You can't change the name of a web ACL after you create it.

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

    The action to perform if none of the rules contained in the web ACL match.

    *)
  3. rules : AwsWafWebAclRuleList.t option;
    (*

    An array that contains the action for each rule in a web ACL, the priority of the rule, and the ID of the rule.

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

    A unique identifier for a web ACL.

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