import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { BedrockDataAutomationServiceException as __BaseException } from "./BedrockDataAutomationServiceException"; import type { ValidationExceptionField } from "./models_0"; /** * This exception is thrown when a request is denied per access permissions * @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * This exception is thrown if there was an unexpected error during processing of request * @public */ export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * This exception is thrown when a resource referenced by the operation does not exist * @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * This exception is thrown when the number of requests exceeds the limit * @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * This exception is thrown when the request's input validation fails * @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; /** * list of ValidationExceptionField * @public */ fieldList?: ValidationExceptionField[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * This exception is thrown when a request is made beyond the service quota * @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * This exception is thrown when there is a conflict performing an operation * @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); }