Enum aws_sdk_iot::error::UpdateThingErrorKind
source · #[non_exhaustive]
pub enum UpdateThingErrorKind {
InternalFailureException(InternalFailureException),
InvalidRequestException(InvalidRequestException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceUnavailableException(ServiceUnavailableException),
ThrottlingException(ThrottlingException),
UnauthorizedException(UnauthorizedException),
VersionConflictException(VersionConflictException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateThing
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InternalFailureException(InternalFailureException)
An unexpected error has occurred.
InvalidRequestException(InvalidRequestException)
The request is not valid.
ResourceNotFoundException(ResourceNotFoundException)
The specified resource does not exist.
The service is temporarily unavailable.
ThrottlingException(ThrottlingException)
The rate exceeds the limit.
You are not authorized to perform this operation.
VersionConflictException(VersionConflictException)
An exception thrown when the version of an entity specified with the expectedVersion
parameter does not match the latest version in the system.
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.