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

An internal server error has occurred during the request. For more information, see the error and message fields.

*/ export interface InternalServerError extends __ServiceException__<_InternalServerErrorDetails> { name: "InternalServerError"; } export interface _InternalServerErrorDetails { /** *

A human-readable message describing the error that occurred.

*/ message?: string; /** *

A StorageGatewayError that provides more information about the cause of the error.

*/ error?: _UnmarshalledStorageGatewayError; }