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

FailedBatchItem

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

A single item in a batch that failed to perform the intended action because of an error preventing it from succeeding.

interface FailedBatchItem {
errorMessage: string;
id: string;
}

§Properties

§
errorMessage: string
[src]

The error message that indicates why the batch item failed.

§
id: string
[src]

The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.