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

BatchItemError

import type { BatchItemError } from "https://aws-api.deno.dev/v0.3/services/comprehend.ts?docs=full";

Describes an error that occurred while processing a document in a batch. The operation returns on BatchItemError object for each document that contained an error.

interface BatchItemError {
ErrorCode?: string | null;
ErrorMessage?: string | null;
Index?: number | null;
}

§Properties

§
ErrorCode?: string | null
[src]

The numeric error code of the error.

§
ErrorMessage?: string | null
[src]

A text description of the error.

§
Index?: number | null
[src]

The zero-based index of the document in the input list.