Struct aws_sdk_transcribe::types::MedicalTranscript
source · #[non_exhaustive]pub struct MedicalTranscript {
pub transcript_file_uri: Option<String>,
}
Expand description
Provides you with the Amazon S3 URI you can use to access your transcript.
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.transcript_file_uri: Option<String>
The Amazon S3 location of your transcript. You can use this URI to access or download your transcript.
Note that this is the Amazon S3 location you specified in your request using the OutputBucketName
parameter.
Implementations§
source§impl MedicalTranscript
impl MedicalTranscript
sourcepub fn transcript_file_uri(&self) -> Option<&str>
pub fn transcript_file_uri(&self) -> Option<&str>
The Amazon S3 location of your transcript. You can use this URI to access or download your transcript.
Note that this is the Amazon S3 location you specified in your request using the OutputBucketName
parameter.
source§impl MedicalTranscript
impl MedicalTranscript
sourcepub fn builder() -> MedicalTranscriptBuilder
pub fn builder() -> MedicalTranscriptBuilder
Creates a new builder-style object to manufacture MedicalTranscript
.
Trait Implementations§
source§impl Clone for MedicalTranscript
impl Clone for MedicalTranscript
source§fn clone(&self) -> MedicalTranscript
fn clone(&self) -> MedicalTranscript
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 Debug for MedicalTranscript
impl Debug for MedicalTranscript
source§impl PartialEq for MedicalTranscript
impl PartialEq for MedicalTranscript
source§fn eq(&self, other: &MedicalTranscript) -> bool
fn eq(&self, other: &MedicalTranscript) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MedicalTranscript
Auto Trait Implementations§
impl RefUnwindSafe for MedicalTranscript
impl Send for MedicalTranscript
impl Sync for MedicalTranscript
impl Unpin for MedicalTranscript
impl UnwindSafe for MedicalTranscript
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.