import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { DrsServiceException as __BaseException } from "./DrsServiceException"; 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"; code?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request could not be completed due to a conflict with the current state of the target resource.

* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; code?: string | undefined; /** *

The ID of the resource.

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

The type of the resource.

* @public */ resourceType?: string | undefined; /** * @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"; /** *

The number of seconds after which the request should be safe to retry.

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

The resource for this operation was not found.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; code?: string | undefined; /** *

The ID of the resource.

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

The type of the resource.

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

The request could not be completed because its exceeded the service quota.

* @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; code?: string | undefined; /** *

The ID of the resource.

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

The type of the resource.

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

Service code.

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

Quota code.

* @public */ quotaCode?: 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"; /** *

Service code.

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

Quota code.

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

The number of seconds after which the request should be safe to retry.

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

The account performing the request has not been initialized.

* @public */ export declare class UninitializedAccountException extends __BaseException { readonly name: "UninitializedAccountException"; readonly $fault: "client"; code?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The input fails to satisfy the constraints specified by the AWS service.

* @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; code?: string | undefined; /** *

Validation exception reason.

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

A list of fields that failed validation.

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