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

An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on re:Post.

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

You have exceeded an Launch Wizard resource limit. For example, you might have too many deployments in progress.

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

The specified workload or deployment resource can't be found.

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

The input fails to 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); }