import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Your request rate is too high. The AWS SDKs for DynamoDB automatically retry requests that receive this exception. Your request is eventually successful, unless your retry queue is too large to finish. Reduce the frequency of requests and use exponential backoff. For more information, go to Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.
*/ export interface LimitExceededException extends __ServiceException__<_LimitExceededExceptionDetails> { name: "LimitExceededException"; } export interface _LimitExceededExceptionDetails { /** *Too many operations for a given subscriber.
*/ message?: string; }