import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** * InternalFailureException shape */ export interface InternalFailureException extends __ServiceException__<_InternalFailureExceptionDetails> { name: "InternalFailureException"; } export interface _InternalFailureExceptionDetails { /** *

500

*/ Code?: string; /** *

The 500 error message returned by the web server.

*/ Message?: string; }