[][src]Struct rusoto_transcribe::LanguageModel

pub struct LanguageModel {
    pub base_model_name: Option<String>,
    pub create_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub input_data_config: Option<InputDataConfig>,
    pub language_code: Option<String>,
    pub last_modified_time: Option<f64>,
    pub model_name: Option<String>,
    pub model_status: Option<String>,
    pub upgrade_availability: Option<bool>,
}

The structure used to describe a custom language model.

Fields

base_model_name: Option<String>

The Amazon Transcribe standard language model, or base model used to create the custom language model.

create_time: Option<f64>

The time the custom language model was created.

failure_reason: Option<String>

The reason why the custom language model couldn't be created.

input_data_config: Option<InputDataConfig>

The data access role and Amazon S3 prefixes for the input files used to train the custom language model.

language_code: Option<String>

The language code you used to create your custom language model.

last_modified_time: Option<f64>

The most recent time the custom language model was modified.

model_name: Option<String>

The name of the custom language model.

model_status: Option<String>

The creation status of a custom language model. When the status is COMPLETED the model is ready for use.

upgrade_availability: Option<bool>

Whether the base model used for the custom language model is up to date. If this field is true then you are running the most up-to-date version of the base model in your custom language model.

Trait Implementations

impl Clone for LanguageModel[src]

impl Debug for LanguageModel[src]

impl Default for LanguageModel[src]

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

impl PartialEq<LanguageModel> for LanguageModel[src]

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