import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { AmpServiceException as __BaseException } from "./AmpServiceException"; import type { ValidationExceptionReason } from "./enums"; import type { ValidationExceptionField } from "./models_0"; /** *

You do not have sufficient access to perform this action.

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

The request would cause an inconsistent state.

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

Identifier of the resource affected.

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

Type of the resource affected.

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

An unexpected error occurred during the processing of the request.

* @public */ export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; $retryable: {}; /** *

Advice to clients on when the call can be safely retried.

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

The request references a resources that doesn't exist.

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

Identifier of the resource affected.

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

Type of the resource affected.

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

Completing the request would cause a service quota to be exceeded.

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

Identifier of the resource affected.

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

Type of the resource affected.

* @public */ resourceType: string | undefined; /** *

Service quotas code for the originating service.

* @public */ serviceCode: string | undefined; /** *

Service quotas code of the originating quota.

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

The request was denied due to request throttling.

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

Service quotas code for the originating service.

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

Service quotas code for the originating quota.

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

Advice to clients on when the call can be safely retried.

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

The input fails to satisfy the constraints specified by an Amazon Web Services service.

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

Reason the request failed validation.

* @public */ reason: ValidationExceptionReason | undefined; /** *

The field that caused the error, if applicable.

* @public */ fieldList?: ValidationExceptionField[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }