Struct aws_sdk_transcribe::types::MedicalScribeJobSummary
source · #[non_exhaustive]pub struct MedicalScribeJobSummary {
pub medical_scribe_job_name: Option<String>,
pub creation_time: Option<DateTime>,
pub start_time: Option<DateTime>,
pub completion_time: Option<DateTime>,
pub language_code: Option<MedicalScribeLanguageCode>,
pub medical_scribe_job_status: Option<MedicalScribeJobStatus>,
pub failure_reason: Option<String>,
}
Expand description
Provides detailed information about a specific Medical Scribe job.
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.medical_scribe_job_name: Option<String>
The name of the Medical Scribe job. Job names are case sensitive and must be unique within an Amazon Web Services account.
creation_time: Option<DateTime>
The date and time the specified Medical Scribe job request was made.
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 a Medical Scribe job that started processing at 12:32 PM UTC-7 on May 4, 2022.
start_time: Option<DateTime>
The date and time your Medical Scribe job began processing.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC
. For example, 2022-05-04T12:32:58.789000-07:00
represents a Medical Scribe job that started processing at 12:32 PM UTC-7 on May 4, 2022.
completion_time: Option<DateTime>
The date and time the specified Medical Scribe job finished processing.
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 a Medical Scribe job that finished processing at 12:32 PM UTC-7 on May 4, 2022.
language_code: Option<MedicalScribeLanguageCode>
The language code used to create your Medical Scribe job. US English (en-US
) is the only supported language for Medical Scribe jobs.
medical_scribe_job_status: Option<MedicalScribeJobStatus>
Provides the status of the specified Medical Scribe job.
If the status is COMPLETED
, the job is finished and you can find the results at the location specified in MedicalScribeOutput
If the status is FAILED
, FailureReason
provides details on why your Medical Scribe job failed.
failure_reason: Option<String>
If MedicalScribeJobStatus
is FAILED
, FailureReason
contains information about why the transcription job failed. See also: Common Errors.
Implementations§
source§impl MedicalScribeJobSummary
impl MedicalScribeJobSummary
sourcepub fn medical_scribe_job_name(&self) -> Option<&str>
pub fn medical_scribe_job_name(&self) -> Option<&str>
The name of the Medical Scribe job. Job names are case sensitive and must be unique within an Amazon Web Services account.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time the specified Medical Scribe job request was made.
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 a Medical Scribe job that started processing at 12:32 PM UTC-7 on May 4, 2022.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The date and time your Medical Scribe job began processing.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC
. For example, 2022-05-04T12:32:58.789000-07:00
represents a Medical Scribe job that started processing at 12:32 PM UTC-7 on May 4, 2022.
sourcepub fn completion_time(&self) -> Option<&DateTime>
pub fn completion_time(&self) -> Option<&DateTime>
The date and time the specified Medical Scribe job finished processing.
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 a Medical Scribe job that finished processing at 12:32 PM UTC-7 on May 4, 2022.
sourcepub fn language_code(&self) -> Option<&MedicalScribeLanguageCode>
pub fn language_code(&self) -> Option<&MedicalScribeLanguageCode>
The language code used to create your Medical Scribe job. US English (en-US
) is the only supported language for Medical Scribe jobs.
sourcepub fn medical_scribe_job_status(&self) -> Option<&MedicalScribeJobStatus>
pub fn medical_scribe_job_status(&self) -> Option<&MedicalScribeJobStatus>
Provides the status of the specified Medical Scribe job.
If the status is COMPLETED
, the job is finished and you can find the results at the location specified in MedicalScribeOutput
If the status is FAILED
, FailureReason
provides details on why your Medical Scribe job failed.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If MedicalScribeJobStatus
is FAILED
, FailureReason
contains information about why the transcription job failed. See also: Common Errors.
source§impl MedicalScribeJobSummary
impl MedicalScribeJobSummary
sourcepub fn builder() -> MedicalScribeJobSummaryBuilder
pub fn builder() -> MedicalScribeJobSummaryBuilder
Creates a new builder-style object to manufacture MedicalScribeJobSummary
.
Trait Implementations§
source§impl Clone for MedicalScribeJobSummary
impl Clone for MedicalScribeJobSummary
source§fn clone(&self) -> MedicalScribeJobSummary
fn clone(&self) -> MedicalScribeJobSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MedicalScribeJobSummary
impl Debug for MedicalScribeJobSummary
source§impl PartialEq for MedicalScribeJobSummary
impl PartialEq for MedicalScribeJobSummary
source§fn eq(&self, other: &MedicalScribeJobSummary) -> bool
fn eq(&self, other: &MedicalScribeJobSummary) -> bool
self
and other
values to be equal, and is used
by ==
.