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

GetRecordsInput

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

Represents the input of a GetRecords operation.

interface GetRecordsInput {
Limit?: number | null;
ShardIterator: string;
}

§Properties

§
Limit?: number | null
[src]

The maximum number of records to return from the shard. The upper limit is 1000.

§
ShardIterator: string
[src]

A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.