import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import type { InternalServerExceptionReason, ValidationExceptionReason } from "./enums"; import { InspectorScanServiceException as __BaseException } from "./InspectorScanServiceException"; 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 request processing has failed because of an unknown error, exception or failure.

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

The reason for the validation failure.

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

The number of seconds to wait before retrying the request.

* @public */ retryAfterSeconds?: number | 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"; $retryable: { throttling: boolean; }; /** *

The number of seconds to wait before retrying the request.

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

The request has failed validation due to missing required fields or having invalid inputs.

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

The reason for the validation failure.

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

The fields that failed validation.

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