[][src]Struct rusoto_translate::StartTextTranslationJobRequest

pub struct StartTextTranslationJobRequest {
    pub client_token: String,
    pub data_access_role_arn: String,
    pub input_data_config: InputDataConfig,
    pub job_name: Option<String>,
    pub output_data_config: OutputDataConfig,
    pub parallel_data_names: Option<Vec<String>>,
    pub source_language_code: String,
    pub target_language_codes: Vec<String>,
    pub terminology_names: Option<Vec<String>>,
}

Fields

client_token: String

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

data_access_role_arn: String

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 nformation, see identity-and-access-management.

input_data_config: InputDataConfig

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

job_name: Option<String>

The name of the batch translation job to be performed.

output_data_config: OutputDataConfig

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

parallel_data_names: Option<Vec<String>>

The names of the parallel data resources to use in the batch translation job. For a list of available parallel data resources, use the ListParallelData operation.

source_language_code: String

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.

target_language_codes: Vec<String>

The language code of the output language.

terminology_names: Option<Vec<String>>

The name of the terminology to use in the batch translation job. For a list of available terminologies, use the ListTerminologies operation.

Trait Implementations

impl Clone for StartTextTranslationJobRequest[src]

impl Debug for StartTextTranslationJobRequest[src]

impl Default for StartTextTranslationJobRequest[src]

impl PartialEq<StartTextTranslationJobRequest> for StartTextTranslationJobRequest[src]

impl Serialize for StartTextTranslationJobRequest[src]

impl StructuralPartialEq for StartTextTranslationJobRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.