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

ListRecordsResponse

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

Returned for a successful ListRecordsRequest.

interface ListRecordsResponse {
Count?: number | null;
DatasetDeletedAfterRequestedSyncCount?: boolean | null;
DatasetExists?: boolean | null;
DatasetSyncCount?: number | null;
LastModifiedBy?: string | null;
MergedDatasetNames?: string[] | null;
NextToken?: string | null;
Records?: Record[] | null;
SyncSessionToken?: string | null;
}

§Properties

§
Count?: number | null
[src]

Total number of records.

§
DatasetDeletedAfterRequestedSyncCount?: boolean | null
[src]

A boolean value specifying whether to delete the dataset locally.

§
DatasetExists?: boolean | null
[src]

Indicates whether the dataset exists.

§
DatasetSyncCount?: number | null
[src]

Server sync count for this dataset.

§
LastModifiedBy?: string | null
[src]

The user/device that made the last change to this record.

§
MergedDatasetNames?: string[] | null
[src]

Names of merged datasets.

§
NextToken?: string | null
[src]

A pagination token for obtaining the next page of results.

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

A list of all records.

§
SyncSessionToken?: string | null
[src]

A token containing a session ID, identity ID, and expiration.