import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
A limit has been exceeded. See the accompanying error message for details.
*/ export interface TooManyRequestsException extends __ServiceException__<_TooManyRequestsExceptionDetails> { name: "TooManyRequestsException"; } export interface _TooManyRequestsExceptionDetails { /** *The limit type.
*/ LimitType?: string; /** *Describes the error encountered.
*/ Message?: string; }