import * as __aws_sdk_types from "@aws-sdk/types"; /** *

Represents the output of a GetShardIterator operation.

*/ export interface GetShardIteratorOutput extends __aws_sdk_types.MetadataBearer { /** *

The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.

*/ ShardIterator?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }