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

JobDetails

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

The number of documents successfully and unsuccessfully processed during a translation job.

interface JobDetails {
DocumentsWithErrorsCount?: number | null;
InputDocumentsCount?: number | null;
TranslatedDocumentsCount?: number | null;
}

§Properties

§
DocumentsWithErrorsCount?: number | null
[src]

The number of documents that could not be processed during a translation job.

§
InputDocumentsCount?: number | null
[src]

The number of documents used as input in a translation job.

§
TranslatedDocumentsCount?: number | null
[src]

The number of documents successfully processed during a translation job.