import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApiGatewayV2ServiceException as __BaseException } from "./ApiGatewayV2ServiceException"; /** * @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request is not valid, for example, the input is incomplete or incorrect. See the accompanying error message for details.

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

Describes the error encountered.

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

The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request. See the accompanying error message for details.

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

Describes the error encountered.

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

The resource specified in the request was not found. See the message field for more information.

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

Describes the error encountered.

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

The resource type.

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

A limit has been exceeded. See the accompanying error message for details.

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

The limit type.

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

Describes the error encountered.

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