import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException"; import type { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceType, ValidationExceptionReason } from "./enums"; import type { ValidationExceptionField } from "./models_0"; /** *

Caller does not have sufficient access to perform this action.

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

A reason code for the exception.

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

Updating or deleting a resource can cause an inconsistent state.

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

The ID of the conflicting resource.

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

The type of the conflicting resource.

* @public */ resourceType?: ResourceType | undefined; /** *

A reason code for the exception.

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

Unexpected error during processing of request.

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

Request references a resource which does not exist.

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

The Id of the missing resource.

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

The type of the missing resource.

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

Request denied because service quota has been exceeded.

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

The name of the quota.

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

The value of the quota.

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

Request was denied due to request throttling.

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

The input fails to satisfy the specified constraints.

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

A reason code for the exception.

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

Validation errors for specific input parameters.

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