import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeartifactServiceException as __BaseException } from "./CodeartifactServiceException"; import { ResourceType, ValidationExceptionReason } from "./enums"; /** *

* The operation did not succeed because of an unauthorized access attempt. *

* @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

* The operation did not succeed because prerequisites are not met. *

* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; /** *

* The ID of the resource. *

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

* The type of Amazon Web Services resource. *

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

The operation did not succeed because of an error that occurred inside CodeArtifact.

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

* The operation did not succeed because the resource requested is not found in the service. *

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** *

* The ID of the resource. *

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

* The type of Amazon Web Services resource. *

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

* The operation did not succeed because it would have exceeded a service limit for your account. *

* @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** *

* The ID of the resource. *

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

* The type of Amazon Web Services resource. *

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

* The operation did not succeed because too many requests are sent to the service. *

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; /** *

* The time period, in seconds, to wait before retrying the request. *

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

* The operation did not succeed because a parameter in the request was sent with an invalid value. *

* @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; /** *

* *

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