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

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 conflicts with an existing resource in Timestream for InfluxDB.

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

The identifier for the Timestream for InfluxDB resource associated with the request.

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

The type of Timestream for InfluxDB resource associated with the request.

* @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: {}; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The requested resource was not found or does not exist.

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

The identifier for the Timestream for InfluxDB resource associated with the request.

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

The type of Timestream for InfluxDB resource associated with the request.

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

The request exceeds the service quota.

* @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** * @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: {}; /** *

The number of seconds the caller should wait before retrying.

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

The input fails to satisfy the constraints specified by Timestream for InfluxDB.

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

The reason that validation failed.

* @public */ reason: ValidationExceptionReason | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }