import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
The service encountered an unexpected error.
*/ export interface ServiceFailureException extends __ServiceException__<_ServiceFailureExceptionDetails> { name: "ServiceFailureException"; } export interface _ServiceFailureExceptionDetails { /** * _ErrorCode shape */ Code?: "Unauthorized" | "Forbidden" | "NotFound" | "BadRequest" | "Conflict" | "ServiceFailure" | "ServiceUnavailable" | "Unprocessable" | "Throttled" | "PreconditionFailed" | string; /** * _String shape */ Message?: string; }