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

The user does not have sufficient access to perform this action.

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

The ID of the resource.

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

The type of resource.

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

An unexpected error occurred while processing the request.

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

The ID of the resource.

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

The type of resource.

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

The request would cause a service quota to be exceeded.

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

The ID of the resource.

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

The type of resource.

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

Service quota requirement to identify originating quota. Reached throttling quota * exception.

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

Service quota requirement to identify originating service. Reached throttling quota * exception service code.

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

Request was denied because the request was throttled.

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

Service quota requirement to identify originating quota. Reached throttling quota * exception.

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

Service quota requirement to identify originating service. Reached throttling quota * exception service code.

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

The number of seconds to wait before retrying.

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

The input does not satisfy the constraints specified by an Amazon Web Service. *

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

The resource policy is not valid.

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