#[non_exhaustive]pub struct UtteranceAudioInputSpecification {
pub audio_file_s3_location: String,
}Expand description
Contains information about the audio for an utterance.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.audio_file_s3_location: StringAmazon S3 file pointing to the audio.
Implementations§
source§impl UtteranceAudioInputSpecification
impl UtteranceAudioInputSpecification
sourcepub fn audio_file_s3_location(&self) -> &str
pub fn audio_file_s3_location(&self) -> &str
Amazon S3 file pointing to the audio.
source§impl UtteranceAudioInputSpecification
impl UtteranceAudioInputSpecification
sourcepub fn builder() -> UtteranceAudioInputSpecificationBuilder
pub fn builder() -> UtteranceAudioInputSpecificationBuilder
Creates a new builder-style object to manufacture UtteranceAudioInputSpecification.
Trait Implementations§
source§impl Clone for UtteranceAudioInputSpecification
impl Clone for UtteranceAudioInputSpecification
source§fn clone(&self) -> UtteranceAudioInputSpecification
fn clone(&self) -> UtteranceAudioInputSpecification
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for UtteranceAudioInputSpecification
impl PartialEq for UtteranceAudioInputSpecification
source§fn eq(&self, other: &UtteranceAudioInputSpecification) -> bool
fn eq(&self, other: &UtteranceAudioInputSpecification) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UtteranceAudioInputSpecification
Auto Trait Implementations§
impl Freeze for UtteranceAudioInputSpecification
impl RefUnwindSafe for UtteranceAudioInputSpecification
impl Send for UtteranceAudioInputSpecification
impl Sync for UtteranceAudioInputSpecification
impl Unpin for UtteranceAudioInputSpecification
impl UnwindSafe for UtteranceAudioInputSpecification
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.