#[non_exhaustive]
pub enum CreateInvalidationErrorKind {
AccessDenied(AccessDenied),
BatchTooLarge(BatchTooLarge),
InconsistentQuantities(InconsistentQuantities),
InvalidArgument(InvalidArgument),
MissingBody(MissingBody),
NoSuchDistribution(NoSuchDistribution),
TooManyInvalidationsInProgress(TooManyInvalidationsInProgress),
Unhandled(Unhandled),
}
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(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext
, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source
for more details about the underlying cause.