#[non_exhaustive]
pub enum UpdateGroupErrorKind {
BadRequestException(BadRequestException),
ForbiddenException(ForbiddenException),
InternalServerErrorException(InternalServerErrorException),
MethodNotAllowedException(MethodNotAllowedException),
NotFoundException(NotFoundException),
TooManyRequestsException(TooManyRequestsException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateGroup
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
BadRequestException(BadRequestException)
The request includes one or more parameters that violate validation rules.
ForbiddenException(ForbiddenException)
The caller isn't authorized to make the request. Check permissions.
InternalServerErrorException(InternalServerErrorException)
An internal error occurred while processing the request. Try again later.
MethodNotAllowedException(MethodNotAllowedException)
The request uses an HTTP method that isn't allowed for the specified resource.
NotFoundException(NotFoundException)
One or more of the specified resources don't exist.
TooManyRequestsException(TooManyRequestsException)
You've exceeded throttling limits by making too many requests in a period of time.
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.