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

The request caused one or more limits to be exceeded.

*/ export interface LimitExceededException extends __ServiceException__<_LimitExceededExceptionDetails> { name: "LimitExceededException"; } export interface _LimitExceededExceptionDetails { /** * _String shape */ Message?: string; /** *

For a LimitExceededException error, the type of resource that exceeded the current limit.

*/ ResourceType?: string; }