Update Parallel Data
translate_update_parallel_data | R Documentation |
Updates a previously created parallel data resource by importing a new input file from Amazon S3¶
Description¶
Updates a previously created parallel data resource by importing a new input file from Amazon S3.
Usage¶
translate_update_parallel_data(Name, Description, ParallelDataConfig,
ClientToken)
Arguments¶
Name |
[required] The name of the parallel data resource being updated. |
Description |
A custom description for the parallel data resource in Amazon Translate. |
ParallelDataConfig |
[required] Specifies the format and S3 location of the parallel data input file. |
ClientToken |
[required] A unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK. |
Value¶
A list with the following syntax:
list(
Name = "string",
Status = "CREATING"|"UPDATING"|"ACTIVE"|"DELETING"|"FAILED",
LatestUpdateAttemptStatus = "CREATING"|"UPDATING"|"ACTIVE"|"DELETING"|"FAILED",
LatestUpdateAttemptAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$update_parallel_data(
Name = "string",
Description = "string",
ParallelDataConfig = list(
S3Uri = "string",
Format = "TSV"|"CSV"|"TMX"
),
ClientToken = "string"
)