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

Indicates insufficient permissions to perform the requested action.

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

Detailed explanation of the access denial.

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

Signals a conflict with the current state of the resource.

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

Description of the conflict encountered.

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

Identifier of the conflicting resource.

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

Type of the conflicting resource.

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

Indicates an unexpected server-side error occurred.

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

Description of the internal server error.

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

Recommended wait time before retrying the request.

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

Indicates the requested resource could not be found.

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

Details about the missing resource.

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

Identifier of the resource that was not found.

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

Type of the resource that was not found.

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

Indicates the request rate has exceeded limits.

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; $retryable: { throttling: boolean; }; /** *

Description of the throttling event.

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

Code identifying the service experiencing throttling.

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

Specific code for the throttling quota.

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

Recommended wait time before retrying the request.

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

Indicates invalid input parameters in the request.

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

Overall description of validation failures.

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

Specific reason for the validation failure.

* @public */ Reason: ValidationExceptionReason | undefined; /** *

List of fields that failed validation.

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

Indicates that a service quota has been exceeded.

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

Description of the quota limitation.

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

Identifier of the resource related to the quota.

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

Type of resource related to the quota.

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

Code identifying the service with the quota limitation.

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

Specific code for the exceeded quota.

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