Struct aws_sdk_wafv2::error::WafInvalidParameterException
source · [−]#[non_exhaustive]pub struct WafInvalidParameterException {
pub message: Option<String>,
pub field: Option<ParameterExceptionField>,
pub parameter: Option<String>,
pub reason: Option<String>,
}
Expand description
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 aDefaultAction
that isn't among the types available atDefaultAction
. -
Your request references an ARN that is malformed, or corresponds to a resource with which a web ACL can't be associated.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.message: Option<String>
field: Option<ParameterExceptionField>
The settings where the invalid parameter was found.
parameter: Option<String>
The invalid parameter that resulted in the exception.
reason: Option<String>
Additional information about the exception.
Implementations
Creates a new builder-style object to manufacture WafInvalidParameterException
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for WafInvalidParameterException
impl Sync for WafInvalidParameterException
impl Unpin for WafInvalidParameterException
impl UnwindSafe for WafInvalidParameterException
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more