Struct aws_sdk_transcribe::model::VocabularyFilterInfo
source · [−]#[non_exhaustive]pub struct VocabularyFilterInfo { /* private fields */ }Expand description
Provides information about a vocabulary filter, including the language of the filter, when it was last modified, and its name.
Implementations
sourceimpl VocabularyFilterInfo
impl VocabularyFilterInfo
sourcepub fn vocabulary_filter_name(&self) -> Option<&str>
pub fn vocabulary_filter_name(&self) -> Option<&str>
A unique name, chosen by you, for your custom vocabulary filter. This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.
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 your vocabulary filter. Each vocabulary filter must contain terms in only one language.
A vocabulary filter can only be used to transcribe files in the same language as the filter. For example, if you create a vocabulary filter using US English (en-US), you can only apply this filter to files that contain English audio.
For a list of supported languages and their associated language codes, refer to the Supported languages table.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The date and time the specified vocabulary filter 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.
sourceimpl VocabularyFilterInfo
impl VocabularyFilterInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VocabularyFilterInfo.
Trait Implementations
sourceimpl Clone for VocabularyFilterInfo
impl Clone for VocabularyFilterInfo
sourcefn clone(&self) -> VocabularyFilterInfo
fn clone(&self) -> VocabularyFilterInfo
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 more
sourceimpl Debug for VocabularyFilterInfo
impl Debug for VocabularyFilterInfo
sourceimpl PartialEq<VocabularyFilterInfo> for VocabularyFilterInfo
impl PartialEq<VocabularyFilterInfo> for VocabularyFilterInfo
sourcefn eq(&self, other: &VocabularyFilterInfo) -> bool
fn eq(&self, other: &VocabularyFilterInfo) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl StructuralPartialEq for VocabularyFilterInfo
Auto Trait Implementations
impl RefUnwindSafe for VocabularyFilterInfo
impl Send for VocabularyFilterInfo
impl Sync for VocabularyFilterInfo
impl Unpin for VocabularyFilterInfo
impl UnwindSafe for VocabularyFilterInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more