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

We couldn't process your request because of an issue with the server. Try again * later.

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

We couldn't find the requested resource. Check that your resources exists and were created * in the same AWS Region as your request, and try your request again.

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

You exceeded * the * maximum number of requests.

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

The * request isn't valid. Check the syntax and try again.

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

Your request has the same name as another active human loop but has different input data. You cannot start two * human loops with the same name and different input data.

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

You exceeded your service quota. Service quotas, also referred to as limits, are the * maximum number of service resources or operations for your AWS account. For a list of * Amazon A2I service quotes, see Amazon Augmented AI Service Quotes. Delete some resources or request an increase in your * service quota. You can request a quota increase using Service Quotas or the AWS Support * Center. To request an increase, see AWS Service Quotas in the * AWS General Reference.

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