Module Values.AwsWafv2RulesActionDetailsSource

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.

Sourcetype nonrec t = {
  1. allow : AwsWafv2ActionAllowDetails.t option;
    (*

    Instructs WAF to allow the web request.

    *)
  2. block : AwsWafv2ActionBlockDetails.t option;
    (*

    Instructs WAF to block the web request.

    *)
  3. captcha : AwsWafv2RulesActionCaptchaDetails.t option;
    (*

    Instructs WAF to run a CAPTCHA check against the web request.

    *)
  4. count : AwsWafv2RulesActionCountDetails.t option;
    (*

    Instructs WAF to count the web request and then continue evaluating the request using the remaining rules in the web ACL.

    *)
}
Sourceval make : ?allow:??? -> ?block:??? -> ?captcha:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t ]) 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