Struct aws_sdk_transcribe::operation::create_language_model::builders::CreateLanguageModelOutputBuilder
source · #[non_exhaustive]pub struct CreateLanguageModelOutputBuilder { /* private fields */ }
Expand description
A builder for CreateLanguageModelOutput
.
Implementations§
source§impl CreateLanguageModelOutputBuilder
impl CreateLanguageModelOutputBuilder
sourcepub fn language_code(self, input: ClmLanguageCode) -> Self
pub fn language_code(self, input: ClmLanguageCode) -> Self
The language code you selected for your custom language model.
sourcepub fn set_language_code(self, input: Option<ClmLanguageCode>) -> Self
pub fn set_language_code(self, input: Option<ClmLanguageCode>) -> Self
The language code you selected for your custom language model.
sourcepub fn get_language_code(&self) -> &Option<ClmLanguageCode>
pub fn get_language_code(&self) -> &Option<ClmLanguageCode>
The language code you selected for your custom language model.
sourcepub fn base_model_name(self, input: BaseModelName) -> Self
pub fn base_model_name(self, input: BaseModelName) -> Self
The Amazon Transcribe standard language model, or base model, you specified when creating your custom language model.
sourcepub fn set_base_model_name(self, input: Option<BaseModelName>) -> Self
pub fn set_base_model_name(self, input: Option<BaseModelName>) -> Self
The Amazon Transcribe standard language model, or base model, you specified when creating your custom language model.
sourcepub fn get_base_model_name(&self) -> &Option<BaseModelName>
pub fn get_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, input: impl Into<String>) -> Self
pub fn model_name(self, input: impl Into<String>) -> Self
The name of your custom language model.
sourcepub fn set_model_name(self, input: Option<String>) -> Self
pub fn set_model_name(self, input: Option<String>) -> Self
The name of your custom language model.
sourcepub fn get_model_name(&self) -> &Option<String>
pub fn get_model_name(&self) -> &Option<String>
The name of your custom language model.
sourcepub fn input_data_config(self, input: InputDataConfig) -> Self
pub fn input_data_config(self, input: InputDataConfig) -> Self
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 set_input_data_config(self, input: Option<InputDataConfig>) -> Self
pub fn set_input_data_config(self, input: Option<InputDataConfig>) -> Self
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 get_input_data_config(&self) -> &Option<InputDataConfig>
pub fn get_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, input: ModelStatus) -> Self
pub fn model_status(self, input: ModelStatus) -> Self
The status of your custom language model. When the status displays as COMPLETED
, your model is ready to use.
sourcepub fn set_model_status(self, input: Option<ModelStatus>) -> Self
pub fn set_model_status(self, input: Option<ModelStatus>) -> Self
The status of your custom language model. When the status displays as COMPLETED
, your model is ready to use.
sourcepub fn get_model_status(&self) -> &Option<ModelStatus>
pub fn get_model_status(&self) -> &Option<ModelStatus>
The status of your custom language model. When the status displays as COMPLETED
, your model is ready to use.
sourcepub fn build(self) -> CreateLanguageModelOutput
pub fn build(self) -> CreateLanguageModelOutput
Consumes the builder and constructs a CreateLanguageModelOutput
.
Trait Implementations§
source§impl Clone for CreateLanguageModelOutputBuilder
impl Clone for CreateLanguageModelOutputBuilder
source§fn clone(&self) -> CreateLanguageModelOutputBuilder
fn clone(&self) -> CreateLanguageModelOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateLanguageModelOutputBuilder
impl Default for CreateLanguageModelOutputBuilder
source§fn default() -> CreateLanguageModelOutputBuilder
fn default() -> CreateLanguageModelOutputBuilder
source§impl PartialEq for CreateLanguageModelOutputBuilder
impl PartialEq for CreateLanguageModelOutputBuilder
source§fn eq(&self, other: &CreateLanguageModelOutputBuilder) -> bool
fn eq(&self, other: &CreateLanguageModelOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateLanguageModelOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateLanguageModelOutputBuilder
impl RefUnwindSafe for CreateLanguageModelOutputBuilder
impl Send for CreateLanguageModelOutputBuilder
impl Sync for CreateLanguageModelOutputBuilder
impl Unpin for CreateLanguageModelOutputBuilder
impl UnwindSafe for CreateLanguageModelOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more