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

Access is denied. Your account is not authorized to perform this operation.

* @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; /** * A general-purpose string value. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

An unknown internal error occurred in the service.

* @public */ export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; /** * A general-purpose string value. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The requested data store was not found.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** * A general-purpose string value. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The user has exceeded their maximum number of allowed calls to the given API.

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; /** * A general-purpose string value. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The user input parameter was invalid.

* @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; /** * A general-purpose string value. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The data store is in a transition state and the user requested action cannot be performed.

* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; /** * A general-purpose string value. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * The request exceeds the service quota. * @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** * A message describing the error. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The agent message does not fit within the current conversation context. Start a new conversation or provide a message that relates to the current profile customization session.

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

The specified conversation identifier does not exist. Verify the conversation ID or omit it to start a new conversation.

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

The requested operation is not yet available. Check the service documentation for a list of supported operations.

* @public */ export declare class NotImplementedOperationException extends __BaseException { readonly name: "NotImplementedOperationException"; readonly $fault: "server"; Message: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

You are not authorized to make this request. Verify that your AWS credentials are valid and that you have the required permissions.

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

The content type in your request is not supported. Use a supported content type for this operation.

* @public */ export declare class UnsupportedMIMETypeException extends __BaseException { readonly name: "UnsupportedMIMETypeException"; readonly $fault: "client"; Message: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * A dependent service failed to fulfill the request. * @public */ export declare class FailedDependencyException extends __BaseException { readonly name: "FailedDependencyException"; readonly $fault: "client"; /** * A message describing the error. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }