Struct aws_sdk_transcribe::types::MedicalScribeOutput
source · #[non_exhaustive]pub struct MedicalScribeOutput {
pub transcript_file_uri: String,
pub clinical_document_uri: String,
}
Expand description
The location of the output of your Medical Scribe job. ClinicalDocumentUri
holds the Amazon S3 URI for the Clinical Document and TranscriptFileUri
holds the Amazon S3 URI for the 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: String
Holds the Amazon S3 URI for the Transcript.
clinical_document_uri: String
Holds the Amazon S3 URI for the Clinical Document.
Implementations§
source§impl MedicalScribeOutput
impl MedicalScribeOutput
sourcepub fn transcript_file_uri(&self) -> &str
pub fn transcript_file_uri(&self) -> &str
Holds the Amazon S3 URI for the Transcript.
sourcepub fn clinical_document_uri(&self) -> &str
pub fn clinical_document_uri(&self) -> &str
Holds the Amazon S3 URI for the Clinical Document.
source§impl MedicalScribeOutput
impl MedicalScribeOutput
sourcepub fn builder() -> MedicalScribeOutputBuilder
pub fn builder() -> MedicalScribeOutputBuilder
Creates a new builder-style object to manufacture MedicalScribeOutput
.
Trait Implementations§
source§impl Clone for MedicalScribeOutput
impl Clone for MedicalScribeOutput
source§fn clone(&self) -> MedicalScribeOutput
fn clone(&self) -> MedicalScribeOutput
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 MedicalScribeOutput
impl Debug for MedicalScribeOutput
source§impl PartialEq for MedicalScribeOutput
impl PartialEq for MedicalScribeOutput
source§fn eq(&self, other: &MedicalScribeOutput) -> bool
fn eq(&self, other: &MedicalScribeOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MedicalScribeOutput
Auto Trait Implementations§
impl RefUnwindSafe for MedicalScribeOutput
impl Send for MedicalScribeOutput
impl Sync for MedicalScribeOutput
impl Unpin for MedicalScribeOutput
impl UnwindSafe for MedicalScribeOutput
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.