Enum aws_sdk_machinelearning::error::PredictErrorKind [−][src]
#[non_exhaustive]
pub enum PredictErrorKind {
InternalServerException(InternalServerException),
InvalidInputException(InvalidInputException),
LimitExceededException(LimitExceededException),
PredictorNotMountedException(PredictorNotMountedException),
ResourceNotFoundException(ResourceNotFoundException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the Predict
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InternalServerException(InternalServerException)
An error on the server occurred when trying to process a request.
Tuple Fields of InternalServerException
InvalidInputException(InvalidInputException)
An error on the client occurred. Typically, the cause is an invalid input value.
Tuple Fields of InvalidInputException
LimitExceededException(LimitExceededException)
The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as DataSource
.
Tuple Fields of LimitExceededException
PredictorNotMountedException(PredictorNotMountedException)
The exception is thrown when a predict request is made to an unmounted MLModel
.
Tuple Fields of PredictorNotMountedException
ResourceNotFoundException(ResourceNotFoundException)
A specified resource cannot be located.
Tuple Fields of ResourceNotFoundException
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for PredictErrorKind
impl Send for PredictErrorKind
impl Sync for PredictErrorKind
impl Unpin for PredictErrorKind
impl !UnwindSafe for PredictErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more