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

GetRecordsOutput

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

Represents the output of a GetRecords operation.

interface GetRecordsOutput {
NextShardIterator?: string | null;
Records?: Record[] | null;
}

§Properties

§
NextShardIterator?: string | null
[src]

The next position in the shard from which to start sequentially reading stream records. If set to null, the shard has been closed and the requested iterator will not return any more data.

§
Records?: Record[] | null
[src]

The stream records from the shard, which were retrieved using the shard iterator.