import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import type { ValidationExceptionReason } from "./enums"; import type { ValidationExceptionField } from "./models_0"; import { WellArchitectedServiceException as __BaseException } from "./WellArchitectedServiceException"; /** *
User does not have sufficient access to perform this action.
* @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; /** *Description of the error.
* @public */ Message: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThe resource has already been processed, was deleted, or is too large.
* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; /** *Description of the error.
* @public */ Message: string | undefined; /** *Identifier of the resource affected.
* @public */ ResourceId: string | undefined; /** *Type of the resource affected.
* @public */ ResourceType: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThere is a problem with the Well-Architected Tool API service.
* @public */ export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; /** *Description of the error.
* @public */ Message: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThe requested resource was not found.
* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** *Description of the error.
* @public */ Message: string | undefined; /** *Identifier of the resource affected.
* @public */ ResourceId: string | undefined; /** *Type of the resource affected.
* @public */ ResourceType: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeRequest was denied due to request throttling.
* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; /** *Description of the error.
* @public */ Message: string | undefined; /** *Service Quotas requirement to identify originating quota.
* @public */ QuotaCode?: string | undefined; /** *Service Quotas requirement to identify originating service.
* @public */ ServiceCode?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThe user input is not valid.
* @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; /** *Description of the error.
* @public */ Message: string | undefined; /** *The reason why the request failed validation.
* @public */ Reason?: ValidationExceptionReason | undefined; /** *The fields that caused the error, if applicable.
* @public */ Fields?: ValidationExceptionField[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionTypeThe user has reached their resource quota.
* @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** *Description of the error.
* @public */ Message: string | undefined; /** *Identifier of the resource affected.
* @public */ ResourceId?: string | undefined; /** *Type of the resource affected.
* @public */ ResourceType?: string | undefined; /** *Service Quotas requirement to identify originating quota.
* @public */ QuotaCode: string | undefined; /** *Service Quotas requirement to identify originating service.
* @public */ ServiceCode: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType