Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SequenceNumberRange

import type { SequenceNumberRange } from "https://aws-api.deno.dev/v0.4/services/dynamodbstreams.ts?docs=full";

The beginning and ending sequence numbers for the stream records contained within a shard.

interface SequenceNumberRange {
EndingSequenceNumber?: string | null;
StartingSequenceNumber?: string | null;
}

§Properties

§
EndingSequenceNumber?: string | null
[src]

The last sequence number for the stream records contained within a shard. String contains numeric characters only.

§
StartingSequenceNumber?: string | null
[src]

The first sequence number for the stream records contained within a shard. String contains numeric characters only.