import { _UnmarshalledStorageGatewayError } from "./_StorageGatewayError"; import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
An internal server error has occurred because the service is unavailable. For more information, see the error and message fields.
*/ export interface ServiceUnavailableError extends __ServiceException__<_ServiceUnavailableErrorDetails> { name: "ServiceUnavailableError"; } export interface _ServiceUnavailableErrorDetails { /** *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; }