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

An error occurred on the server side.

*/ export interface InternalServiceError extends __ServiceException__<_InternalServiceErrorDetails> { name: "InternalServiceError"; } export interface _InternalServiceErrorDetails { /** * _ErrorMessage shape */ Message?: string; }