Struct aws_sdk_transcribe::output::CreateVocabularyOutput [−][src]
#[non_exhaustive]pub struct CreateVocabularyOutput {
pub vocabulary_name: Option<String>,
pub language_code: Option<LanguageCode>,
pub vocabulary_state: Option<VocabularyState>,
pub last_modified_time: Option<DateTime>,
pub failure_reason: Option<String>,
}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.vocabulary_name: Option<String>The name of the vocabulary.
language_code: Option<LanguageCode>The language code of the vocabulary entries.
vocabulary_state: Option<VocabularyState>The processing state of the vocabulary. When the VocabularyState field contains
READY the vocabulary is ready to be used in a StartTranscriptionJob
request.
last_modified_time: Option<DateTime>The date and time that the vocabulary was created.
failure_reason: Option<String>If the VocabularyState field is FAILED, this field contains information about
why the job failed.
Implementations
The name of the vocabulary.
The language code of the vocabulary entries.
The processing state of the vocabulary. When the VocabularyState field contains
READY the vocabulary is ready to be used in a StartTranscriptionJob
request.
The date and time that the vocabulary was created.
If the VocabularyState field is FAILED, this field contains information about
why the job failed.
Creates a new builder-style object to manufacture CreateVocabularyOutput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CreateVocabularyOutput
impl Send for CreateVocabularyOutput
impl Sync for CreateVocabularyOutput
impl Unpin for CreateVocabularyOutput
impl UnwindSafe for CreateVocabularyOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more