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

You have exceeded an SageMaker resource limit. For example, you might have too many training jobs created.

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

Resource being access is not found.

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

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

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

Resource being accessed is in use.

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