[][src]Struct rusoto_transcribe::GetMedicalVocabularyResponse

pub struct GetMedicalVocabularyResponse {
    pub download_uri: Option<String>,
    pub failure_reason: Option<String>,
    pub language_code: Option<String>,
    pub last_modified_time: Option<f64>,
    pub vocabulary_name: Option<String>,
    pub vocabulary_state: Option<String>,
}

Fields

download_uri: Option<String>

The location in Amazon S3 where the vocabulary is stored. Use this URI to get the contents of the vocabulary. You can download your vocabulary from the URI for a limited time.

failure_reason: Option<String>

If the VocabularyState is FAILED, this field contains information about why the job failed.

language_code: Option<String>

The valid language code for your vocabulary entries.

last_modified_time: Option<f64>

The date and time that the vocabulary was last modified with a text file different from the one that was previously used.

vocabulary_name: Option<String>

The name of the vocabulary returned by Amazon Transcribe Medical.

vocabulary_state: Option<String>

The processing state of the vocabulary. If the VocabularyState is READY then you can use it in the StartMedicalTranscriptionJob operation.

Trait Implementations

impl Clone for GetMedicalVocabularyResponse[src]

impl Debug for GetMedicalVocabularyResponse[src]

impl Default for GetMedicalVocabularyResponse[src]

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

impl PartialEq<GetMedicalVocabularyResponse> for GetMedicalVocabularyResponse[src]

impl StructuralPartialEq for GetMedicalVocabularyResponse[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, 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.