import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { DSQLServiceException as __BaseException } from "./DSQLServiceException"; 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 submitted action has conflicts.

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

Resource Id

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

Resource Type

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

The request processing has failed because of an unknown error, exception or failure.

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

Retry after seconds.

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

The service limit was exceeded.

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

The resource ID exceeds a quota.

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

The resource type exceeds a quota.

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

The request exceeds a service quota.

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

The service exceeds a 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: { throttling: boolean; }; /** *

The request exceeds a service quota.

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

The request exceeds a request rate quota.

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

The request exceeds a request rate quota. Retry after seconds.

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

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

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

The reason for the validation exception.

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

A list of fields that didn't validate.

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

The resource could not be found.

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

The resource ID could not be found.

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

The resource type could not be found.

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