#[non_exhaustive]
pub enum ListDistributionsByWebACLIdErrorKind {
InvalidArgument(InvalidArgument),
InvalidWebAclId(InvalidWebAclId),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the ListDistributionsByWebACLId
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InvalidArgument(InvalidArgument)
An argument is invalid.
InvalidWebAclId(InvalidWebAclId)
A web ACL ID specified is not valid. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a
. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a
.
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 Send for ListDistributionsByWebACLIdErrorKind
impl Sync for ListDistributionsByWebACLIdErrorKind
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