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

BatchUpsertTableRowsResult

import type { BatchUpsertTableRowsResult } from "https://aws-api.deno.dev/v0.4/services/honeycode.ts?docs=full";
interface BatchUpsertTableRowsResult {
failedBatchItems?: FailedBatchItem[] | null;
rows: {
[key: string]: UpsertRowsResult | null | undefined;
}
;
workbookCursor: number;
}

§Properties

§
failedBatchItems?: FailedBatchItem[] | null
[src]

The list of batch items in the request that could not be updated or appended in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated or appended.

§
rows: {
[key: string]: UpsertRowsResult | null | undefined;
}
[src]

A map with the batch item id as the key and the result of the upsert operation as the value. The result of the upsert operation specifies whether existing rows were updated or a new row was appended, along with the list of row ids that were affected.

§
workbookCursor: number
[src]

The updated workbook cursor after updating or appending rows in the table.