import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { AccessAnalyzerServiceException as __BaseException } from "./AccessAnalyzerServiceException"; 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); } /** *

A conflict exception error.

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

The ID of the resource.

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

The resource type.

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

Internal server error.

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

The seconds to wait to retry.

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

The specified resource could not be found.

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

The ID of the resource.

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

The type of the resource.

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

Service quote met error.

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

The resource ID.

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

The resource type.

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

Throttling limit exceeded error.

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

The seconds to wait to retry.

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

Validation exception error.

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

The reason for the exception.

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

A list of fields that didn't validate.

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

The specified parameter is invalid.

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

The specified entity could not be processed.

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