[][src]Struct rusoto_transcribe::CreateLanguageModelRequest

pub struct CreateLanguageModelRequest {
    pub base_model_name: String,
    pub input_data_config: InputDataConfig,
    pub language_code: String,
    pub model_name: String,
}

Fields

base_model_name: String

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

If you want to use your custom language model to transcribe audio with a sample rate of 16 kHz or greater, choose Wideband.

If you want to use your custom language model to transcribe audio with a sample rate that is less than 16 kHz, choose Narrowband.

input_data_config: InputDataConfig

Contains the data access role and the Amazon S3 prefixes to read the required input files to create a custom language model.

language_code: String

The language of the input text you're using to train your custom language model.

model_name: String

The name you choose for your custom language model when you create it.

Trait Implementations

impl Clone for CreateLanguageModelRequest[src]

impl Debug for CreateLanguageModelRequest[src]

impl Default for CreateLanguageModelRequest[src]

impl PartialEq<CreateLanguageModelRequest> for CreateLanguageModelRequest[src]

impl Serialize for CreateLanguageModelRequest[src]

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