import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Information about any problems encountered while processing a search request.
*/ export interface SearchException extends __ServiceException__<_SearchExceptionDetails> { name: "SearchException"; } export interface _SearchExceptionDetails { /** *A description of the error returned by the search service.
*/ message?: string; }