#[non_exhaustive]
pub enum CreateInvalidationErrorKind {
AccessDenied(AccessDenied),
BatchTooLarge(BatchTooLarge),
InconsistentQuantities(InconsistentQuantities),
InvalidArgument(InvalidArgument),
MissingBody(MissingBody),
NoSuchDistribution(NoSuchDistribution),
TooManyInvalidationsInProgress(TooManyInvalidationsInProgress),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the CreateInvalidation
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AccessDenied(AccessDenied)
Access denied.
BatchTooLarge(BatchTooLarge)
Invalidation batch specified is too large.
InconsistentQuantities(InconsistentQuantities)
The value of Quantity
and the size of Items
don't match.
InvalidArgument(InvalidArgument)
An argument is invalid.
MissingBody(MissingBody)
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.
NoSuchDistribution(NoSuchDistribution)
The specified distribution does not exist.
TooManyInvalidationsInProgress(TooManyInvalidationsInProgress)
You have exceeded the maximum number of allowable InProgress invalidation batch requests, or invalidation objects.
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 CreateInvalidationErrorKind
impl Send for CreateInvalidationErrorKind
impl Sync for CreateInvalidationErrorKind
impl Unpin for CreateInvalidationErrorKind
impl !UnwindSafe for CreateInvalidationErrorKind
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