pub enum StartTextTranslationJobError {
InternalServer(String),
InvalidRequest(String),
ResourceNotFound(String),
TooManyRequests(String),
UnsupportedLanguagePair(String),
}
Expand description
Errors returned by StartTextTranslationJob
Variants§
InternalServer(String)
An internal server error occurred. Retry your request.
InvalidRequest(String)
The request that you made is invalid. Check your request to determine why it's invalid and then retry the request.
ResourceNotFound(String)
The resource you are looking for has not been found. Review the resource you're looking for and see if a different resource will accomplish your needs before retrying the revised request.
TooManyRequests(String)
You have made too many requests within a short period of time. Wait for a short time and then try your request again.
UnsupportedLanguagePair(String)
Amazon Translate does not support translation from the language of the source text into the requested target language. For more information, see how-to-error-msg.
Implementations§
Trait Implementations§
Source§impl Debug for StartTextTranslationJobError
impl Debug for StartTextTranslationJobError
Source§impl Error for StartTextTranslationJobError
impl Error for StartTextTranslationJobError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for StartTextTranslationJobError
impl PartialEq for StartTextTranslationJobError
Source§fn eq(&self, other: &StartTextTranslationJobError) -> bool
fn eq(&self, other: &StartTextTranslationJobError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StartTextTranslationJobError
Auto Trait Implementations§
impl Freeze for StartTextTranslationJobError
impl RefUnwindSafe for StartTextTranslationJobError
impl Send for StartTextTranslationJobError
impl Sync for StartTextTranslationJobError
impl Unpin for StartTextTranslationJobError
impl UnwindSafe for StartTextTranslationJobError
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