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

Represents the output for "GetRecords".

interface GetRecordsOutput {
ChildShards?: ChildShard[] | null;
MillisBehindLatest?: number | null;
NextShardIterator?: string | null;
Records: Record[];
}

§Properties

§
ChildShards?: ChildShard[] | null
[src]

The list of the current shard's child shards, returned in the GetRecords API's response only when the end of the current shard is reached.

§
MillisBehindLatest?: number | null
[src]

The number of milliseconds the "GetRecords" response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

§
NextShardIterator?: string | null
[src]

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

§
Records: Record[]
[src]

The data records retrieved from the shard.