#[non_exhaustive]pub struct UpdateMedicalVocabularyInput { /* private fields */ }Implementations
sourceimpl UpdateMedicalVocabularyInput
impl UpdateMedicalVocabularyInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateMedicalVocabulary, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateMedicalVocabulary, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateMedicalVocabulary>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateMedicalVocabularyInput.
sourceimpl UpdateMedicalVocabularyInput
impl UpdateMedicalVocabularyInput
sourcepub fn vocabulary_name(&self) -> Option<&str>
pub fn vocabulary_name(&self) -> Option<&str>
The name of the custom medical vocabulary you want to update. Vocabulary names are case sensitive.
sourcepub fn language_code(&self) -> Option<&LanguageCode>
pub fn language_code(&self) -> Option<&LanguageCode>
The language code that represents the language of the entries in the custom vocabulary you want to update. US English (en-US) is the only language supported with Amazon Transcribe Medical.
sourcepub fn vocabulary_file_uri(&self) -> Option<&str>
pub fn vocabulary_file_uri(&self) -> Option<&str>
The Amazon S3 location of the text file that contains your custom medical vocabulary. The URI must be located in the same Amazon Web Services Region as the resource you're calling.
Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-file.txt
Trait Implementations
sourceimpl Clone for UpdateMedicalVocabularyInput
impl Clone for UpdateMedicalVocabularyInput
sourcefn clone(&self) -> UpdateMedicalVocabularyInput
fn clone(&self) -> UpdateMedicalVocabularyInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for UpdateMedicalVocabularyInput
impl Debug for UpdateMedicalVocabularyInput
sourceimpl PartialEq<UpdateMedicalVocabularyInput> for UpdateMedicalVocabularyInput
impl PartialEq<UpdateMedicalVocabularyInput> for UpdateMedicalVocabularyInput
sourcefn eq(&self, other: &UpdateMedicalVocabularyInput) -> bool
fn eq(&self, other: &UpdateMedicalVocabularyInput) -> bool
impl StructuralPartialEq for UpdateMedicalVocabularyInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateMedicalVocabularyInput
impl Send for UpdateMedicalVocabularyInput
impl Sync for UpdateMedicalVocabularyInput
impl Unpin for UpdateMedicalVocabularyInput
impl UnwindSafe for UpdateMedicalVocabularyInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more