Struct aws_sdk_transcribe::output::GetVocabularyOutput
source · #[non_exhaustive]pub struct GetVocabularyOutput { /* private fields */ }Implementations§
source§impl GetVocabularyOutput
impl GetVocabularyOutput
sourcepub fn vocabulary_name(&self) -> Option<&str>
pub fn vocabulary_name(&self) -> Option<&str>
The name of the custom vocabulary you requested information about.
sourcepub fn language_code(&self) -> Option<&LanguageCode>
pub fn language_code(&self) -> Option<&LanguageCode>
The language code you selected for your custom vocabulary.
sourcepub fn vocabulary_state(&self) -> Option<&VocabularyState>
pub fn vocabulary_state(&self) -> Option<&VocabularyState>
The processing state of your custom vocabulary. If the state is READY, you can use the custom vocabulary in a StartTranscriptionJob request.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The date and time the specified custom vocabulary was last modified.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents 12:32 PM UTC-7 on May 4, 2022.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If VocabularyState is FAILED, FailureReason contains information about why the custom vocabulary request failed. See also: Common Errors.
sourcepub fn download_uri(&self) -> Option<&str>
pub fn download_uri(&self) -> Option<&str>
The S3 location where the custom vocabulary is stored; use this URI to view or download the custom vocabulary.
source§impl GetVocabularyOutput
impl GetVocabularyOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetVocabularyOutput.
Trait Implementations§
source§impl Clone for GetVocabularyOutput
impl Clone for GetVocabularyOutput
source§fn clone(&self) -> GetVocabularyOutput
fn clone(&self) -> GetVocabularyOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetVocabularyOutput
impl Debug for GetVocabularyOutput
source§impl PartialEq<GetVocabularyOutput> for GetVocabularyOutput
impl PartialEq<GetVocabularyOutput> for GetVocabularyOutput
source§fn eq(&self, other: &GetVocabularyOutput) -> bool
fn eq(&self, other: &GetVocabularyOutput) -> bool
self and other values to be equal, and is used
by ==.