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

An item collection is too large. This exception is only returned for tables that have one or more local secondary indexes.

*/ export interface ItemCollectionSizeLimitExceededException extends __ServiceException__<_ItemCollectionSizeLimitExceededExceptionDetails> { name: 'ItemCollectionSizeLimitExceededException'; } export interface _ItemCollectionSizeLimitExceededExceptionDetails { /** *

The total size of an item collection has exceeded the maximum limit of 10 gigabytes.

*/ message?: string; }