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

The operation failed because the calling identity doesn't have the minimum required permissions.

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

The value populated to the x-amzn-ErrorType response header by API Gateway.

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

The request could not be processed because of a conflict in the current status of the resource. For example, this happens if you try to enable a Region that is currently being disabled (in a status of DISABLING) or if you try to change an account’s root user email to an email address which is already in use.

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

The value populated to the x-amzn-ErrorType response header by API Gateway.

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

The operation failed because of an error internal to Amazon Web Services. Try your operation again later.

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

The value populated to the x-amzn-ErrorType response header by API Gateway.

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

The operation failed because it specified a resource that can't be found.

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

The value populated to the x-amzn-ErrorType response header by API Gateway.

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

The operation failed because it was called too frequently and exceeded a throttle limit.

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

The value populated to the x-amzn-ErrorType response header by API Gateway.

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

The operation failed because one of the input parameters was invalid.

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

The reason that validation failed.

* @public */ reason?: ValidationExceptionReason | undefined; /** *

The field where the invalid entry was detected.

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

The operation failed because it specified a resource that is not currently available.

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

The value populated to the x-amzn-ErrorType response header by API Gateway.

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