import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *

Information about any problems encountered while processing an upload request.

*/ export interface DocumentServiceException extends __ServiceException__<_DocumentServiceExceptionDetails> { name: "DocumentServiceException"; } export interface _DocumentServiceExceptionDetails { /** *

The return status of a document upload request, error or success.

*/ status?: string; /** *

The description of the errors returned by the document service.

*/ message?: string; }