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.3/services/kinesis.ts?docs=full";

The range of possible sequence numbers for the shard.

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

§Properties

§
EndingSequenceNumber?: string | null
[src]

The ending sequence number for the range. Shards that are in the OPEN state have an ending sequence number of null.

§
StartingSequenceNumber: string
[src]

The starting sequence number for the range.