import { ServiceException as __ServiceException__ } from '@aws-js-sdk-v3-prerelease/types'; /** *
An exception thrown when a dependent service such as Facebook or Twitter is not responding
*/ export interface ExternalServiceException extends __ServiceException__<_ExternalServiceExceptionDetails> { name: 'ExternalServiceException'; } export interface _ExternalServiceExceptionDetails { /** *The message returned by an ExternalServiceException
*/ message?: string; }