import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
An error occurred on the server side.
*/ export interface InternalServerError extends __ServiceException__<_InternalServerErrorDetails> { name: "InternalServerError"; } export interface _InternalServerErrorDetails { /** *The server encountered an internal error trying to fulfill the request.
*/ message?: string; }