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

StartTextTranslationJobRequest

import type { StartTextTranslationJobRequest } from "https://aws-api.deno.dev/v0.3/services/translate.ts?docs=full";
interface StartTextTranslationJobRequest {
ClientToken: string;
DataAccessRoleArn: string;
InputDataConfig: InputDataConfig;
JobName?: string | null;
OutputDataConfig: OutputDataConfig;
ParallelDataNames?: string[] | null;
Settings?: TranslationSettings | null;
SourceLanguageCode: string;
TargetLanguageCodes: string[];
TerminologyNames?: string[] | null;
}

§Properties

§
ClientToken: string
[src]

A unique identifier for the request. This token is auto-generated when using the Amazon Translate SDK.

§
DataAccessRoleArn: string
[src]

The Amazon Resource Name (ARN) of an AWS Identity Access and Management (IAM) role that grants Amazon Translate read access to your input data. For more information, see "identity-and-access-management".

§
InputDataConfig: InputDataConfig
[src]

Specifies the format and S3 location of the input documents for the translation job.

§
JobName?: string | null
[src]

The name of the batch translation job to be performed.

§
OutputDataConfig: OutputDataConfig
[src]

Specifies the S3 folder to which your job output will be saved.

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

The name of a parallel data resource to add to the translation job. This resource consists of examples that show how you want segments of text to be translated. When you add parallel data to a translation job, you create an Active Custom Translation job.

This parameter accepts only one parallel data resource.

Note: Active Custom Translation jobs are priced at a higher rate than other jobs that don't use parallel data. For more information, see Amazon Translate pricing.

For a list of available parallel data resources, use the "ListParallelData" operation.

For more information, see "customizing-translations-parallel-data".

§
Settings?: TranslationSettings | null
[src]

Settings to configure your translation output, including the option to mask profane words and phrases.

§
SourceLanguageCode: string
[src]

The language code of the input language. For a list of language codes, see "what-is-languages".

Amazon Translate does not automatically detect a source language during batch translation jobs.

§
TargetLanguageCodes: string[]
[src]

The language code of the output language.

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

The name of a custom terminology resource to add to the translation job. This resource lists examples source terms and the desired translation for each term.

This parameter accepts only one custom terminology resource.

For a list of available custom terminology resources, use the "ListTerminologies" operation.

For more information, see "how-custom-terminology".