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)
Tuple Fields
An error on the server occurred when trying to process a request.
InvalidInputException(InvalidInputException)
Tuple Fields
An error on the client occurred. Typically, the cause is an invalid input value.
LimitExceededException(LimitExceededException)
Tuple Fields
The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as DataSource
.
PredictorNotMountedException(PredictorNotMountedException)
Tuple Fields
The exception is thrown when a predict request is made to an unmounted MLModel
.
ResourceNotFoundException(ResourceNotFoundException)
Tuple Fields
A specified resource cannot be located.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
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