#[non_exhaustive]pub struct CreateLanguageModelOutput {
pub language_code: Option<ClmLanguageCode>,
pub base_model_name: Option<BaseModelName>,
pub model_name: Option<String>,
pub input_data_config: Option<InputDataConfig>,
pub model_status: Option<ModelStatus>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.language_code: Option<ClmLanguageCode>
The language code you selected for your custom language model.
base_model_name: Option<BaseModelName>
The Amazon Transcribe standard language model, or base model, you specified when creating your custom language model.
model_name: Option<String>
The name of your custom language model.
input_data_config: Option<InputDataConfig>
Lists your data access role ARN (Amazon Resource Name) and the Amazon S3 locations you provided for your training (S3Uri
) and tuning (TuningDataS3Uri
) data.
model_status: Option<ModelStatus>
The status of your custom language model. When the status displays as COMPLETED
, your model is ready to use.
Implementations§
source§impl CreateLanguageModelOutput
impl CreateLanguageModelOutput
sourcepub fn language_code(&self) -> Option<&ClmLanguageCode>
pub fn language_code(&self) -> Option<&ClmLanguageCode>
The language code you selected for your custom language model.
sourcepub fn base_model_name(&self) -> Option<&BaseModelName>
pub fn base_model_name(&self) -> Option<&BaseModelName>
The Amazon Transcribe standard language model, or base model, you specified when creating your custom language model.
sourcepub fn model_name(&self) -> Option<&str>
pub fn model_name(&self) -> Option<&str>
The name of your custom language model.
sourcepub fn input_data_config(&self) -> Option<&InputDataConfig>
pub fn input_data_config(&self) -> Option<&InputDataConfig>
Lists your data access role ARN (Amazon Resource Name) and the Amazon S3 locations you provided for your training (S3Uri
) and tuning (TuningDataS3Uri
) data.
sourcepub fn model_status(&self) -> Option<&ModelStatus>
pub fn model_status(&self) -> Option<&ModelStatus>
The status of your custom language model. When the status displays as COMPLETED
, your model is ready to use.
source§impl CreateLanguageModelOutput
impl CreateLanguageModelOutput
sourcepub fn builder() -> CreateLanguageModelOutputBuilder
pub fn builder() -> CreateLanguageModelOutputBuilder
Creates a new builder-style object to manufacture CreateLanguageModelOutput
.
Trait Implementations§
source§impl Clone for CreateLanguageModelOutput
impl Clone for CreateLanguageModelOutput
source§fn clone(&self) -> CreateLanguageModelOutput
fn clone(&self) -> CreateLanguageModelOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateLanguageModelOutput
impl Debug for CreateLanguageModelOutput
source§impl PartialEq for CreateLanguageModelOutput
impl PartialEq for CreateLanguageModelOutput
source§fn eq(&self, other: &CreateLanguageModelOutput) -> bool
fn eq(&self, other: &CreateLanguageModelOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateLanguageModelOutput
impl RequestId for CreateLanguageModelOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.