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

Record

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

The basic data structure of a dataset.

interface Record {
DeviceLastModifiedDate?: Date | number | null;
Key?: string | null;
LastModifiedBy?: string | null;
LastModifiedDate?: Date | number | null;
SyncCount?: number | null;
Value?: string | null;
}

§Properties

§
DeviceLastModifiedDate?: Date | number | null
[src]

The last modified date of the client device.

§
Key?: string | null
[src]

The key for the record.

§
LastModifiedBy?: string | null
[src]

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

§
LastModifiedDate?: Date | number | null
[src]

The date on which the record was last modified.

§
SyncCount?: number | null
[src]

The server sync count for this record.

§
Value?: string | null
[src]

The value for the record.