[][src]Struct rusoto_translate::TextTranslationJobProperties

pub struct TextTranslationJobProperties {
    pub data_access_role_arn: Option<String>,
    pub end_time: Option<f64>,
    pub input_data_config: Option<InputDataConfig>,
    pub job_details: Option<JobDetails>,
    pub job_id: Option<String>,
    pub job_name: Option<String>,
    pub job_status: Option<String>,
    pub message: Option<String>,
    pub output_data_config: Option<OutputDataConfig>,
    pub source_language_code: Option<String>,
    pub submitted_time: Option<f64>,
    pub target_language_codes: Option<Vec<String>>,
    pub terminology_names: Option<Vec<String>>,
}

Provides information about a translation job.

Fields

data_access_role_arn: Option<String>

The 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.

end_time: Option<f64>

The time at which the translation job ended.

input_data_config: Option<InputDataConfig>

The input configuration properties that were specified when the job was requested.

job_details: Option<JobDetails>

The number of documents successfully and unsuccessfully processed during the translation job.

job_id: Option<String>

The ID of the translation job.

job_name: Option<String>

The user-defined name of the translation job.

job_status: Option<String>

The status of the translation job.

message: Option<String>

An explanation of any errors that may have occured during the translation job.

output_data_config: Option<OutputDataConfig>

The output configuration properties that were specified when the job was requested.

source_language_code: Option<String>

The language code of the language of the source text. The language must be a language supported by Amazon Translate.

submitted_time: Option<f64>

The time at which the translation job was submitted.

target_language_codes: Option<Vec<String>>

The language code of the language of the target text. The language must be a language supported by Amazon Translate.

terminology_names: Option<Vec<String>>

A list containing the names of the terminologies applied to a translation job. Only one terminology can be applied per StartTextTranslationJob request at this time.

Trait Implementations

impl Clone for TextTranslationJobProperties[src]

impl Debug for TextTranslationJobProperties[src]

impl Default for TextTranslationJobProperties[src]

impl<'de> Deserialize<'de> for TextTranslationJobProperties[src]

impl PartialEq<TextTranslationJobProperties> for TextTranslationJobProperties[src]

impl StructuralPartialEq for TextTranslationJobProperties[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.