#[non_exhaustive]
pub enum GetRateBasedRuleManagedKeysErrorKind {
WafInternalErrorException(WafInternalErrorException),
WafInvalidAccountException(WafInvalidAccountException),
WafInvalidParameterException(WafInvalidParameterException),
WafNonexistentItemException(WafNonexistentItemException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the GetRateBasedRuleManagedKeys operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
WafInternalErrorException(WafInternalErrorException)
The operation failed because of a system problem, even though the request was valid. Retry your request.
WafInvalidAccountException(WafInvalidAccountException)
The operation failed because you tried to create, update, or delete an object by using an invalid account identifier.
WafInvalidParameterException(WafInvalidParameterException)
The operation failed because AWS WAF didn't recognize a parameter in the request. For example:
-
You specified an invalid parameter name.
-
You specified an invalid value.
-
You tried to update an object (
ByteMatchSet,IPSet,Rule, orWebACL) using an action other thanINSERTorDELETE. -
You tried to create a
WebACLwith aDefaultActionTypeother thanALLOW,BLOCK, orCOUNT. -
You tried to create a
RateBasedRulewith aRateKeyvalue other thanIP. -
You tried to update a
WebACLwith aWafActionTypeother thanALLOW,BLOCK, orCOUNT. -
You tried to update a
ByteMatchSetwith aFieldToMatchTypeother than HEADER, METHOD, QUERY_STRING, URI, or BODY. -
You tried to update a
ByteMatchSetwith aFieldofHEADERbut no value forData. -
Your request references an ARN that is malformed, or corresponds to a resource with which a web ACL cannot be associated.
WafNonexistentItemException(WafNonexistentItemException)
The operation failed because the referenced object doesn't exist.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for GetRateBasedRuleManagedKeysErrorKind
impl Send for GetRateBasedRuleManagedKeysErrorKind
impl Sync for GetRateBasedRuleManagedKeysErrorKind
impl Unpin for GetRateBasedRuleManagedKeysErrorKind
impl !UnwindSafe for GetRateBasedRuleManagedKeysErrorKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more