import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SageMakerRuntimeServiceException as __BaseException } from "./SageMakerRuntimeServiceException"; /** *

Your request caused an exception with an internal dependency. Contact customer * support.

* @public */ export declare class InternalDependencyException extends __BaseException { readonly name: "InternalDependencyException"; readonly $fault: "server"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

An internal failure occurred.

* @public */ export declare class InternalFailure extends __BaseException { readonly name: "InternalFailure"; readonly $fault: "server"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Model (owned by the customer in the container) returned 4xx or 5xx error code. *

* @public */ export declare class ModelError extends __BaseException { readonly name: "ModelError"; readonly $fault: "client"; Message?: string | undefined; /** *

Original status code.

* @public */ OriginalStatusCode?: number | undefined; /** *

Original message.

* @public */ OriginalMessage?: string | undefined; /** *

The Amazon Resource Name (ARN) of the log stream.

* @public */ LogStreamArn?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Either a serverless endpoint variant's resources are still being provisioned, or a * multi-model endpoint is still downloading or loading the target model. Wait and try your * request again.

* @public */ export declare class ModelNotReadyException extends __BaseException { readonly name: "ModelNotReadyException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The service is unavailable. Try your call again.

* @public */ export declare class ServiceUnavailable extends __BaseException { readonly name: "ServiceUnavailable"; readonly $fault: "server"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Inspect your request and try again.

* @public */ export declare class ValidationError extends __BaseException { readonly name: "ValidationError"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The stream processing failed because of an unknown error, exception or failure. Try your request again.

* @public */ export declare class InternalStreamFailure extends __BaseException { readonly name: "InternalStreamFailure"; readonly $fault: "server"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

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 AI.

*
*
StreamBroken
*
*

The Transmission Control Protocol (TCP) connection between the client and * the model was reset or closed.

*
*
* @public */ export declare class ModelStreamError extends __BaseException { readonly name: "ModelStreamError"; readonly $fault: "client"; Message?: string | undefined; /** *

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 AI.

*
*
StreamBroken
*
*

The Transmission Control Protocol (TCP) connection between the client and * the model was reset or closed.

*
*
* @public */ ErrorCode?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }