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

BatchCreateTableRowsResult

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

§Properties

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

The map of batch item id to the row id that was created for that item.

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

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

§
workbookCursor: number
[src]

The updated workbook cursor after adding the new rows at the end of the table.