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

You do not have sufficient permissions to perform this action.

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

The request references a resource that does not exist.

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

The ID of the resource that caused the exception.

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

The type of the resource that is associated with the error.

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

The request was denied because of request throttling. Retry the request.

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

The ID of the service that is associated with the error.

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

The ID of the service quota that was exceeded.

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

The value of a parameter in the request caused an error.

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

A reason for the error.

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

The parameter that caused the exception.

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

A resource was in an inconsistent state during an update or a deletion.

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

The ID of the resource that caused the exception.

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

The type of the resource that is associated with the error.

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

The request would cause a service quota to be exceeded.

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

The ID of the resource that caused the exception.

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

The type of the resource that is associated with the error.

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

The ID of the service that is associated with the error.

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

The ID of the service quota that was exceeded.

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

Unexpected error while processing the request. Retry the request.

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

The service was unavailable. Retry the request.

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