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

The operation attempted to read past the oldest stream record in a shard.

In DynamoDB Streams, there is a 24 hour limit on data retention. Stream records whose age exceeds this limit are subject to removal (trimming) from the stream. You might receive a TrimmedDataAccessException if:

*/ export interface TrimmedDataAccessException extends __ServiceException__<_TrimmedDataAccessExceptionDetails> { name: "TrimmedDataAccessException"; } export interface _TrimmedDataAccessExceptionDetails { /** *

"The data you are trying to access has been trimmed.

*/ message?: string; }