pub struct StartTextTranslationJob { /* private fields */ }Expand description
Fluent builder constructing a request to StartTextTranslationJob.
Starts an asynchronous batch translation job. Batch translation jobs can be used to translate large volumes of text across multiple documents at once. For more information, see async.
Batch translation jobs can be described with the DescribeTextTranslationJob operation, listed with the ListTextTranslationJobs operation, and stopped with the StopTextTranslationJob operation.
Amazon Translate does not support batch translation of multiple source languages at once.
Implementations
sourceimpl StartTextTranslationJob
impl StartTextTranslationJob
sourcepub async fn send(
self
) -> Result<StartTextTranslationJobOutput, SdkError<StartTextTranslationJobError>>
pub async fn send(
self
) -> Result<StartTextTranslationJobOutput, SdkError<StartTextTranslationJobError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn job_name(self, input: impl Into<String>) -> Self
pub fn job_name(self, input: impl Into<String>) -> Self
The name of the batch translation job to be performed.
sourcepub fn set_job_name(self, input: Option<String>) -> Self
pub fn set_job_name(self, input: Option<String>) -> Self
The name of the batch translation job to be performed.
sourcepub fn input_data_config(self, input: InputDataConfig) -> Self
pub fn input_data_config(self, input: InputDataConfig) -> Self
Specifies the format and S3 location of the input documents for the translation job.
sourcepub fn set_input_data_config(self, input: Option<InputDataConfig>) -> Self
pub fn set_input_data_config(self, input: Option<InputDataConfig>) -> Self
Specifies the format and S3 location of the input documents for the translation job.
sourcepub fn output_data_config(self, input: OutputDataConfig) -> Self
pub fn output_data_config(self, input: OutputDataConfig) -> Self
Specifies the S3 folder to which your job output will be saved.
sourcepub fn set_output_data_config(self, input: Option<OutputDataConfig>) -> Self
pub fn set_output_data_config(self, input: Option<OutputDataConfig>) -> Self
Specifies the S3 folder to which your job output will be saved.
sourcepub fn data_access_role_arn(self, input: impl Into<String>) -> Self
pub fn data_access_role_arn(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_data_access_role_arn(self, input: Option<String>) -> Self
pub fn set_data_access_role_arn(self, input: Option<String>) -> Self
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.
sourcepub fn source_language_code(self, input: impl Into<String>) -> Self
pub fn source_language_code(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_source_language_code(self, input: Option<String>) -> Self
pub fn set_source_language_code(self, input: Option<String>) -> Self
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.
sourcepub fn target_language_codes(self, input: impl Into<String>) -> Self
pub fn target_language_codes(self, input: impl Into<String>) -> Self
Appends an item to TargetLanguageCodes.
To override the contents of this collection use set_target_language_codes.
The language code of the output language.
sourcepub fn set_target_language_codes(self, input: Option<Vec<String>>) -> Self
pub fn set_target_language_codes(self, input: Option<Vec<String>>) -> Self
The language code of the output language.
sourcepub fn terminology_names(self, input: impl Into<String>) -> Self
pub fn terminology_names(self, input: impl Into<String>) -> Self
Appends an item to TerminologyNames.
To override the contents of this collection use set_terminology_names.
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.
sourcepub fn set_terminology_names(self, input: Option<Vec<String>>) -> Self
pub fn set_terminology_names(self, input: Option<Vec<String>>) -> Self
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.
sourcepub fn parallel_data_names(self, input: impl Into<String>) -> Self
pub fn parallel_data_names(self, input: impl Into<String>) -> Self
Appends an item to ParallelDataNames.
To override the contents of this collection use set_parallel_data_names.
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.
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.
sourcepub fn set_parallel_data_names(self, input: Option<Vec<String>>) -> Self
pub fn set_parallel_data_names(self, input: Option<Vec<String>>) -> Self
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.
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.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique identifier for the request. This token is auto-generated when using the Amazon Translate SDK.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique identifier for the request. This token is auto-generated when using the Amazon Translate SDK.
sourcepub fn settings(self, input: TranslationSettings) -> Self
pub fn settings(self, input: TranslationSettings) -> Self
Settings to configure your translation output, including the option to mask profane words and phrases.
sourcepub fn set_settings(self, input: Option<TranslationSettings>) -> Self
pub fn set_settings(self, input: Option<TranslationSettings>) -> Self
Settings to configure your translation output, including the option to mask profane words and phrases.
Trait Implementations
sourceimpl Clone for StartTextTranslationJob
impl Clone for StartTextTranslationJob
sourcefn clone(&self) -> StartTextTranslationJob
fn clone(&self) -> StartTextTranslationJob
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for StartTextTranslationJob
impl Send for StartTextTranslationJob
impl Sync for StartTextTranslationJob
impl Unpin for StartTextTranslationJob
impl !UnwindSafe for StartTextTranslationJob
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more