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

An unexpected service exception occurred.

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

One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.

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

You can't perform this action when the resource is in its current state.

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

App Runner can't create this resource. You've reached your account quota for this resource type.

*

For App Runner per-resource quotas, see App Runner endpoints and quotas in the * Amazon Web Services General Reference.

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

A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.

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