#[non_exhaustive]
pub enum GetBackupPlanFromJSONErrorKind {
InvalidParameterValueException(InvalidParameterValueException),
InvalidRequestException(InvalidRequestException),
LimitExceededException(LimitExceededException),
MissingParameterValueException(MissingParameterValueException),
ServiceUnavailableException(ServiceUnavailableException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the GetBackupPlanFromJSON
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidParameterValueException(InvalidParameterValueException)
Indicates that something is wrong with a parameter's value. For example, the value is out of range.
InvalidRequestException(InvalidRequestException)
Indicates that something is wrong with the input to the request. For example, a parameter is of the wrong type.
LimitExceededException(LimitExceededException)
A limit in the request has been exceeded; for example, a maximum number of items allowed in a request.
MissingParameterValueException(MissingParameterValueException)
Indicates that a required parameter is missing.
The request failed due to a temporary failure of the server.
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.