#[non_exhaustive]
pub enum DeleteViewErrorKind {
AccessDeniedException(AccessDeniedException),
InternalServerException(InternalServerException),
ResourceNotFoundException(ResourceNotFoundException),
ThrottlingException(ThrottlingException),
UnauthorizedException(UnauthorizedException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}Expand description
Types of errors that can occur for the DeleteView operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AccessDeniedException(AccessDeniedException)
The credentials that you used to call this operation don't have the minimum required permissions.
InternalServerException(InternalServerException)
The request failed because of internal service error. Try your request again later.
ResourceNotFoundException(ResourceNotFoundException)
You specified a resource that doesn't exist. Check the ID or ARN that you used to identity the resource, and try again.
ThrottlingException(ThrottlingException)
The request failed because you exceeded a rate limit for this operation. For more information, see Quotas for Resource Explorer.
The principal making the request isn't permitted to perform the operation.
ValidationException(ValidationException)
You provided an invalid value for one of the operation's parameters. Check the syntax for the operation, and try again.
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.