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

You don't have permission to perform this operation. Check your IAM permissions and try again.

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

The request conflicts with the current state of the resource. This can occur when trying to modify a resource that is not in a valid state for the requested operation.

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

The ID of the conflicting resource.

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

The type of the conflicting resource.

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

An internal server error occurred. Try again later.

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

Number of seconds in which the caller can retry the request.

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

The specified resource was not found. Verify the resource ID and try again.

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

The unique ID of the resource referenced in the failed request.

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

The resource type of the resource referenced in the failed request.

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

The request would exceed one or more service quotas. Check your current usage and quotas, then try again.

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

The unique ID of the resource referenced in the failed request.

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

The resource type of the resource referenced in the failed request.

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

The code for the Amazon Web Services service that owns the quota.

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

The quota code recognized by the Amazon Web Services Service Quotas service.

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

The request was throttled due to too many requests. Wait a moment and try again.

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

The code for the Amazon Web Services service that owns the quota.

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

The quota code recognized by the Amazon Web Services Service Quotas service.

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

Number of seconds in which the caller can retry the request.

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

The input parameters are invalid. Check the parameter values and try again.

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

Reason the request failed validation.

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

The list of fields that aren't valid.

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