Skip to main content

text_translation_jobs

Creates, updates, deletes, gets or lists a text_translation_jobs resource.

Overview

Nametext_translation_jobs
TypeResource
Idaws.translate.text_translation_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
data_access_role_arnstringThe 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. (pattern: <code>arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+</code>)
end_timestring (date-time)The time at which the translation job ended.
input_data_configobjectThe input configuration properties that were specified when the job was requested.
job_detailsobjectThe number of documents successfully and unsuccessfully processed during the translation job.
job_idstringThe ID of the translation job. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-%@]*)$</code>)
job_namestringThe user-defined name of the translation job. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-%@]*)$</code>)
job_statusstringThe status of the translation job. (SUBMITTED, IN_PROGRESS, COMPLETED, COMPLETED_WITH_ERROR, FAILED, STOP_REQUESTED, STOPPED)
messagestringAn explanation of any errors that may have occurred during the translation job.
output_data_configobjectThe output configuration properties that were specified when the job was requested.
parallel_data_namesarrayA list containing the names of the parallel data resources applied to the translation job.
settingsobjectSettings that modify the translation output.
source_language_codestringThe language code of the language of the source text. The language must be a language supported by Amazon Translate.
submitted_timestring (date-time)The time at which the translation job was submitted.
target_language_codesarrayThe language code of the language of the target text. The language must be a language supported by Amazon Translate.
terminology_namesarrayA list containing the names of the terminologies applied to a translation job. Only one terminology can be applied per StartTextTranslationJob request at this time.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_text_translation_jobselectregionGets the properties associated with an asynchronous batch translation job including name, ID, status, source and target languages, input/output S3 buckets, and so on.
list_text_translation_jobsselectregionGets a list of the batch translation jobs that you have submitted.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the properties associated with an asynchronous batch translation job including name, ID, status, source and target languages, input/output S3 buckets, and so on.

SELECT
data_access_role_arn,
end_time,
input_data_config,
job_details,
job_id,
job_name,
job_status,
message,
output_data_config,
parallel_data_names,
settings,
source_language_code,
submitted_time,
target_language_codes,
terminology_names
FROM aws.translate.text_translation_jobs
WHERE region = '{{ region }}' -- required
;