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

RecordPatch

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

An update operation for a record.

interface RecordPatch {
DeviceLastModifiedDate?: Date | number | null;
Key: string;
SyncCount: number;
Value?: string | null;
}

§Properties

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

The last modified date of the client device.

§
Key: string
[src]

The key associated with the record patch.

§

An operation, either replace or remove.

§
SyncCount: number
[src]

Last known server sync count for this record. Set to 0 if unknown.

§
Value?: string | null
[src]

The value associated with the record patch.