#[non_exhaustive]
pub enum DeleteRuleGroupErrorKind {
WafAssociatedItemException(WafAssociatedItemException),
WafInternalErrorException(WafInternalErrorException),
WafInvalidOperationException(WafInvalidOperationException),
WafInvalidParameterException(WafInvalidParameterException),
WafNonexistentItemException(WafNonexistentItemException),
WafOptimisticLockException(WafOptimisticLockException),
WafTagOperationException(WafTagOperationException),
WafTagOperationInternalErrorException(WafTagOperationInternalErrorException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the DeleteRuleGroup operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
WafAssociatedItemException(WafAssociatedItemException)
WAF couldn’t perform the operation because your resource is being used by another resource or it’s associated with another resource.
For DeleteWebACL, you will only get this exception if the web ACL is still associated with a regional resource. Deleting a web ACL that is still associated with an Amazon CloudFront distribution won't get this exception.
WafInternalErrorException(WafInternalErrorException)
Your request is valid, but WAF couldn’t perform the operation because of a system problem. Retry your request.
WafInvalidOperationException(WafInvalidOperationException)
The operation isn't valid.
WafInvalidParameterException(WafInvalidParameterException)
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
WebACLwith aDefaultActionthat 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.
WafNonexistentItemException(WafNonexistentItemException)
WAF couldn’t perform the operation because your resource doesn’t exist.
WafOptimisticLockException(WafOptimisticLockException)
WAF couldn’t save your changes because you tried to update or delete a resource that has changed since you last retrieved it. Get the resource again, make any changes you need to make to the new copy, and retry your operation.
WafTagOperationException(WafTagOperationException)
An error occurred during the tagging operation. Retry your request.
WafTagOperationInternalErrorException(WafTagOperationInternalErrorException)
WAF couldn’t perform your tagging operation because of an internal error. Retry ybjectNoteWebRequestComponentour request.
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 DeleteRuleGroupErrorKind
impl Send for DeleteRuleGroupErrorKind
impl Sync for DeleteRuleGroupErrorKind
impl Unpin for DeleteRuleGroupErrorKind
impl !UnwindSafe for DeleteRuleGroupErrorKind
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