#[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
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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