Enum aws_sdk_sagemakerruntime::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamError
source · #[non_exhaustive]pub enum InvokeEndpointWithResponseStreamError {
InternalFailure(InternalFailure),
ValidationError(ValidationError),
ModelError(ModelError),
ModelStreamError(ModelStreamError),
InternalStreamFailure(InternalStreamFailure),
ServiceUnavailable(ServiceUnavailable),
Unhandled(Unhandled),
}
Expand description
Error type for the InvokeEndpointWithResponseStreamError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InternalFailure(InternalFailure)
An internal failure occurred.
ValidationError(ValidationError)
Inspect your request and try again.
ModelError(ModelError)
Model (owned by the customer in the container) returned 4xx or 5xx error code.
ModelStreamError(ModelStreamError)
An error occurred while streaming the response body. This error can have the following error codes:
- ModelInvocationTimeExceeded
-
The model failed to finish sending the response within the timeout period allowed by Amazon SageMaker.
- StreamBroken
-
The Transmission Control Protocol (TCP) connection between the client and the model was reset or closed.
InternalStreamFailure(InternalStreamFailure)
The stream processing failed because of an unknown error, exception or failure. Try your request again.
The service is unavailable. Try your call again.
Unhandled(Unhandled)
Unhandled
directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code()
:
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata
for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl InvokeEndpointWithResponseStreamError
impl InvokeEndpointWithResponseStreamError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the InvokeEndpointWithResponseStreamError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the InvokeEndpointWithResponseStreamError::Unhandled
variant from an ErrorMetadata
.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_internal_failure(&self) -> bool
pub fn is_internal_failure(&self) -> bool
Returns true
if the error kind is InvokeEndpointWithResponseStreamError::InternalFailure
.
sourcepub fn is_validation_error(&self) -> bool
pub fn is_validation_error(&self) -> bool
Returns true
if the error kind is InvokeEndpointWithResponseStreamError::ValidationError
.
sourcepub fn is_model_error(&self) -> bool
pub fn is_model_error(&self) -> bool
Returns true
if the error kind is InvokeEndpointWithResponseStreamError::ModelError
.
sourcepub fn is_model_stream_error(&self) -> bool
pub fn is_model_stream_error(&self) -> bool
Returns true
if the error kind is InvokeEndpointWithResponseStreamError::ModelStreamError
.
sourcepub fn is_internal_stream_failure(&self) -> bool
pub fn is_internal_stream_failure(&self) -> bool
Returns true
if the error kind is InvokeEndpointWithResponseStreamError::InternalStreamFailure
.
Returns true
if the error kind is InvokeEndpointWithResponseStreamError::ServiceUnavailable
.
Trait Implementations§
source§impl CreateUnhandledError for InvokeEndpointWithResponseStreamError
impl CreateUnhandledError for InvokeEndpointWithResponseStreamError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>,
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata>, ) -> Self
source
and error metadata.source§impl Error for InvokeEndpointWithResponseStreamError
impl Error for InvokeEndpointWithResponseStreamError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<InvokeEndpointWithResponseStreamError> for Error
impl From<InvokeEndpointWithResponseStreamError> for Error
source§fn from(err: InvokeEndpointWithResponseStreamError) -> Self
fn from(err: InvokeEndpointWithResponseStreamError) -> Self
source§impl ProvideErrorMetadata for InvokeEndpointWithResponseStreamError
impl ProvideErrorMetadata for InvokeEndpointWithResponseStreamError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for InvokeEndpointWithResponseStreamError
impl RequestId for InvokeEndpointWithResponseStreamError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.Auto Trait Implementations§
impl Freeze for InvokeEndpointWithResponseStreamError
impl !RefUnwindSafe for InvokeEndpointWithResponseStreamError
impl Send for InvokeEndpointWithResponseStreamError
impl Sync for InvokeEndpointWithResponseStreamError
impl Unpin for InvokeEndpointWithResponseStreamError
impl !UnwindSafe for InvokeEndpointWithResponseStreamError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more