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

The Amazon Redshift Data API operation failed because the maximum number of active sessions exceeded.

* @public */ export declare class ActiveSessionsExceededException extends __BaseException { readonly name: "ActiveSessionsExceededException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The number of active statements exceeds the limit.

* @public */ export declare class ActiveStatementsExceededException extends __BaseException { readonly name: "ActiveStatementsExceededException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

An SQL statement encountered an environmental error while running.

* @public */ export declare class BatchExecuteStatementException extends __BaseException { readonly name: "BatchExecuteStatementException"; readonly $fault: "server"; Message: string | undefined; /** *

Statement identifier of the exception.

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

The Amazon Redshift Data API operation failed due to invalid input.

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

The exception message.

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

The Amazon Redshift Data API operation failed due to a missing resource.

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

The exception message.

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

Resource identifier associated with the exception.

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

The Amazon Redshift Data API operation failed due to invalid input.

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

The exception message.

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

Connection to a database failed.

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

The Amazon Redshift Data API operation failed due to timeout.

* @public */ export declare class QueryTimeoutException extends __BaseException { readonly name: "QueryTimeoutException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The SQL statement encountered an environmental error while running.

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

The exception message.

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

Statement identifier of the exception.

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