import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *

The specified action violates a limit. For example, ReceiveMessage returns this error if the maximum number of inflight messages is reached and AddPermission returns this error if the maximum number of permissions for the queue is reached.

*/ export interface OverLimit extends __ServiceException__<_OverLimitDetails> { name: "OverLimit"; } export interface _OverLimitDetails { }