pub struct StartTextTranslationJobResponse {
pub job_id: Option<String>,
pub job_status: Option<String>,
}
Fields§
§job_id: Option<String>
The identifier generated for the job. To get the status of a job, use this ID with the DescribeTextTranslationJob operation.
job_status: Option<String>
The status of the job. Possible values include:
-
SUBMITTED
- The job has been received and is queued for processing. -
INPROGRESS
- Amazon Translate is processing the job. -
COMPLETED
- The job was successfully completed and the output is available. -
COMPLETEDWITHERRORS
- The job was completed with errors. The errors can be analyzed in the job's output. -
FAILED
- The job did not complete. To get details, use the DescribeTextTranslationJob operation. -
STOPREQUESTED
- The user who started the job has requested that it be stopped. -
STOPPED
- The job has been stopped.
Trait Implementations§
Source§impl Clone for StartTextTranslationJobResponse
impl Clone for StartTextTranslationJobResponse
Source§fn clone(&self) -> StartTextTranslationJobResponse
fn clone(&self) -> StartTextTranslationJobResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for StartTextTranslationJobResponse
impl Default for StartTextTranslationJobResponse
Source§fn default() -> StartTextTranslationJobResponse
fn default() -> StartTextTranslationJobResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartTextTranslationJobResponse
impl<'de> Deserialize<'de> for StartTextTranslationJobResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StartTextTranslationJobResponse
impl PartialEq for StartTextTranslationJobResponse
Source§fn eq(&self, other: &StartTextTranslationJobResponse) -> bool
fn eq(&self, other: &StartTextTranslationJobResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StartTextTranslationJobResponse
Auto Trait Implementations§
impl Freeze for StartTextTranslationJobResponse
impl RefUnwindSafe for StartTextTranslationJobResponse
impl Send for StartTextTranslationJobResponse
impl Sync for StartTextTranslationJobResponse
impl Unpin for StartTextTranslationJobResponse
impl UnwindSafe for StartTextTranslationJobResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more