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

TextTranslationJobProperties

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

Provides information about a translation job.

interface TextTranslationJobProperties {
DataAccessRoleArn?: string | null;
EndTime?: Date | number | null;
InputDataConfig?: InputDataConfig | null;
JobDetails?: JobDetails | null;
JobId?: string | null;
JobName?: string | null;
JobStatus?: JobStatus | null;
Message?: string | null;
OutputDataConfig?: OutputDataConfig | null;
ParallelDataNames?: string[] | null;
Settings?: TranslationSettings | null;
SourceLanguageCode?: string | null;
SubmittedTime?: Date | number | null;
TargetLanguageCodes?: string[] | null;
TerminologyNames?: string[] | null;
}

§Properties

§
DataAccessRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of an AWS Identity Access and Management (IAM) role that granted Amazon Translate read access to the job's input data.

§
EndTime?: Date | number | null
[src]

The time at which the translation job ended.

§
InputDataConfig?: InputDataConfig | null
[src]

The input configuration properties that were specified when the job was requested.

§
JobDetails?: JobDetails | null
[src]

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

§
JobId?: string | null
[src]

The ID of the translation job.

§
JobName?: string | null
[src]

The user-defined name of the translation job.

§
JobStatus?: JobStatus | null
[src]

The status of the translation job.

§
Message?: string | null
[src]

An explanation of any errors that may have occurred during the translation job.

§
OutputDataConfig?: OutputDataConfig | null
[src]

The output configuration properties that were specified when the job was requested.

§
ParallelDataNames?: string[] | null
[src]

A list containing the names of the parallel data resources applied to the translation job.

§
Settings?: TranslationSettings | null
[src]

Settings that configure the translation output.

§
SourceLanguageCode?: string | null
[src]

The language code of the language of the source text. The language must be a language supported by Amazon Translate.

§
SubmittedTime?: Date | number | null
[src]

The time at which the translation job was submitted.

§
TargetLanguageCodes?: string[] | null
[src]

The language code of the language of the target text. The language must be a language supported by Amazon Translate.

§
TerminologyNames?: string[] | null
[src]

A list containing the names of the terminologies applied to a translation job. Only one terminology can be applied per "StartTextTranslationJob" request at this time.