#[non_exhaustive]
pub enum UpdateStudioErrorKind {
AccessDeniedException(AccessDeniedException),
ConflictException(ConflictException),
InternalServerErrorException(InternalServerErrorException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceQuotaExceededException(ServiceQuotaExceededException),
ThrottlingException(ThrottlingException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateStudio
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AccessDeniedException(AccessDeniedException)
You are not authorized to perform this operation. Check your IAM policies, and ensure that you are using the correct access keys.
ConflictException(ConflictException)
Another operation is in progress.
InternalServerErrorException(InternalServerErrorException)
An internal error has occurred. Please retry your request.
ResourceNotFoundException(ResourceNotFoundException)
The specified resource could not be found.
ServiceQuotaExceededException(ServiceQuotaExceededException)
Your current quota does not allow you to perform the request action. You can request increases for some quotas, and other quotas cannot be increased.
Please use Amazon Web Services Service Quotas to request an increase.
ThrottlingException(ThrottlingException)
The request throughput limit was exceeded.
ValidationException(ValidationException)
One of the parameters in the request is invalid.
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.