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

The shard iterator has expired and can no longer be used to retrieve stream records. A shard iterator expires 15 minutes after it is retrieved using the GetShardIterator action.

*/ export interface ExpiredIteratorException extends __ServiceException__<_ExpiredIteratorExceptionDetails> { name: "ExpiredIteratorException"; } export interface _ExpiredIteratorExceptionDetails { /** *

The provided iterator exceeds the maximum age allowed.

*/ message?: string; }