[][src]Enum rusoto_transcribe::UpdateVocabularyError

pub enum UpdateVocabularyError {
    BadRequest(String),
    Conflict(String),
    InternalFailure(String),
    LimitExceeded(String),
    NotFound(String),
}

Errors returned by UpdateVocabulary

Variants

BadRequest(String)

Your request didn't pass one or more validation tests. For example, if the transcription you're trying to delete doesn't exist or if it is in a non-terminal state (for example, it's "in progress"). See the exception Message field for more information.

Conflict(String)

When you are using the CreateVocabulary operation, the JobName field is a duplicate of a previously entered job name. Resend your request with a different name.

When you are using the UpdateVocabulary operation, there are two jobs running at the same time. Resend the second request later.

InternalFailure(String)

There was an internal error. Check the error message and try your request again.

LimitExceeded(String)

Either you have sent too many requests or your input file is too long. Wait before you resend your request, or use a smaller file and resend the request.

NotFound(String)

We can't find the requested resource. Check the name and try your request again.

Methods

impl UpdateVocabularyError[src]

Trait Implementations

impl Debug for UpdateVocabularyError[src]

impl Display for UpdateVocabularyError[src]

impl Error for UpdateVocabularyError[src]

impl PartialEq<UpdateVocabularyError> for UpdateVocabularyError[src]

impl StructuralPartialEq for UpdateVocabularyError[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, 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> ToString for T where
    T: Display + ?Sized
[src]

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.