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

You do not have sufficient access to perform this action.

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

The requested data is currently unavailable.

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

An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.

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

An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.

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

The specified resource was not found.

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

The identifier of the resource that was not found.

* @public */ resourceId: string | undefined; /** *

The type of the resource that was not found.

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

The request was denied due to request throttling.

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

The service code that exceeded the throttling limit.

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

The quota code that exceeded the throttling limit.

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

The service code that exceeded the throttling limit. Retry your request, but if the problem persists, contact Amazon Web Services support.

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

The input provided 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"; /** *

The reason for the validation exception.

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

The list of fields that are invalid.

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

The request could not be processed because of conflict in the current state of the resource.

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

The identifier of the resource that was not found.

* @public */ resourceId: string | undefined; /** *

The type of the resource that was not found.

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

The request would cause you to exceed your service quota.

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

The identifier of the resource that exceeded quota.

* @public */ resourceId: string | undefined; /** *

The type of the resource that exceeded quota.

* @public */ resourceType: string | undefined; /** *

The service code that exceeded quota.

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

The quota code that was exceeded.

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