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

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); } /** *

An unexpected error occurred during processing of a request.

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

The number of seconds the caller should wait before retrying.

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

The input does not satisfy the constraints specified by an Amazon Web Services service.

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

Updating or deleting the resource can cause an inconsistent state.

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

The request would cause a service quota to be exceeded. See Service quotas.

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