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

An action you attempted resulted in an exception.

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

The ID of the resource that caused the exception.

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

The type of resource that caused the exception.

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

This exception occurs due to unexpected causes.

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

The number of seconds to wait before retrying the action that caused the * exception.

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

An entity that you specified does not exist.

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

A quota has been exceeded.

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

The ID of the resource that caused the exception.

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

The type of resource that caused the exception.

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

The identifier of the service that caused the exception.

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

The identifier of the quota that caused the exception.

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

An action was throttled.

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

The identifier of the service that caused the exception.

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

The identifier of the quota that caused the exception.

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

The number of seconds to wait before retrying the action that caused the * exception.

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

Indicates that an error has occurred while performing a validate operation.

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

The list of fields for which validation failed and the corresponding failure * messages.

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