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

Lightsail throws this exception when the user cannot be authenticated or uses invalid * credentials to access a resource.

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

Lightsail throws this exception when an account is still in the setup in progress * state.

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

Lightsail throws this exception when user input does not conform to the validation rules * of an input field.

* *

Domain and distribution APIs are only available in the N. Virginia * (us-east-1) Amazon Web Services Region. Please set your Amazon Web Services * Region configuration to us-east-1 to create, view, or edit these * resources.

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

Lightsail throws this exception when it cannot find a resource.

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

Lightsail throws this exception when an operation fails to execute.

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

Lightsail throws this exception when an operation is performed on resources in an opt-in * Region that is currently being set up.

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

* Regions * and Availability Zones for Lightsail *

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

Opt-in Regions typically take a few minutes to finish setting up before you can work with them. Wait a few minutes and try again.

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

A general service exception.

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

Lightsail throws this exception when the user has not been authenticated.

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