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

You don't have sufficient access to perform this action.

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

There is an error in the call or in a SQL statement. (This error only appears in calls from Aurora Serverless v1 databases.)

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

There was an error in processing the SQL statement.

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

The DB cluster doesn't have a DB instance.

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

A request was cancelled because the Aurora Serverless v2 DB instance was paused. * The Data API request automatically resumes the DB instance. Wait a few seconds and * try again.

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

The writer instance in the DB cluster isn't available.

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

There are insufficient privileges to make the call.

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

The HTTP endpoint for using RDS Data API isn't enabled for the DB cluster.

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

An internal error occurred.

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

The resource is in an invalid state.

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

The Secrets Manager secret used with the request isn't valid.

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

There was a problem with the Secrets Manager secret used with the request, caused by one of the following conditions:

*
    *
  • *

    RDS Data API timed out retrieving the secret.

    *
  • *
  • *

    The secret provided wasn't found.

    *
  • *
  • *

    The secret couldn't be decrypted.

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

The service specified by the resourceArn parameter isn't * available.

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

The execution of the SQL statement timed out.

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

The database connection ID that executed the SQL statement.

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

The transaction ID wasn't found.

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

The resourceArn, secretArn, or transactionId value can't be found.

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

There was a problem with the result because of one of the following conditions:

*
    *
  • *

    It contained an unsupported data type.

    *
  • *
  • *

    It contained a multidimensional array.

    *
  • *
  • *

    The size was too large.

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