List Text Translation Jobs
| translate_list_text_translation_jobs | R Documentation |
Gets a list of the batch translation jobs that you have submitted¶
Description¶
Gets a list of the batch translation jobs that you have submitted.
Usage¶
Arguments¶
FilterThe parameters that specify which batch translation jobs to retrieve. Filters include job name, job status, and submission time. You can only set one filter at a time.
NextTokenThe token to request the next page of results.
MaxResultsThe maximum number of results to return in each page. The default value is 100.
Value¶
A list with the following syntax:
list(
TextTranslationJobPropertiesList = list(
list(
JobId = "string",
JobName = "string",
JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERROR"|"FAILED"|"STOP_REQUESTED"|"STOPPED",
JobDetails = list(
TranslatedDocumentsCount = 123,
DocumentsWithErrorsCount = 123,
InputDocumentsCount = 123
),
SourceLanguageCode = "string",
TargetLanguageCodes = list(
"string"
),
TerminologyNames = list(
"string"
),
ParallelDataNames = list(
"string"
),
Message = "string",
SubmittedTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
InputDataConfig = list(
S3Uri = "string",
ContentType = "string"
),
OutputDataConfig = list(
S3Uri = "string",
EncryptionKey = list(
Type = "KMS",
Id = "string"
)
),
DataAccessRoleArn = "string",
Settings = list(
Formality = "FORMAL"|"INFORMAL",
Profanity = "MASK",
Brevity = "ON"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_text_translation_jobs(
Filter = list(
JobName = "string",
JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERROR"|"FAILED"|"STOP_REQUESTED"|"STOPPED",
SubmittedBeforeTime = as.POSIXct(
"2015-01-01"
),
SubmittedAfterTime = as.POSIXct(
"2015-01-01"
)
),
NextToken = "string",
MaxResults = 123
)