Module Values.WAFInvalidParameterExceptionSource

The operation failed because WAF didn't recognize a parameter in the request. For example: You specified a parameter name or value that isn't valid. Your nested statement isn't valid. You might have tried to nest a statement that canโ€™t be nested. You tried to update a WebACL with a DefaultAction that isn't among the types available at DefaultAction. Your request references an ARN that is malformed, or corresponds to a resource with which a web ACL can't be associated.

Sourcetype nonrec t = {
  1. message : ErrorMessage.t option;
  2. field : ParameterExceptionField.t option;
    (*

    The settings where the invalid parameter was found.

    *)
  3. parameter : ParameterExceptionParameter.t option;
    (*

    The invalid parameter that resulted in the exception.

    *)
  4. reason : ErrorReason.t option;
    (*

    Additional information about the exception.

    *)
}
Sourceval make : ?message:??? -> ?field:??? -> ?parameter:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ErrorMessage.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