[][src]Struct rusoto_transcribe::MedicalTranscriptionJobSummary

pub struct MedicalTranscriptionJobSummary {
    pub completion_time: Option<f64>,
    pub creation_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub language_code: Option<String>,
    pub medical_transcription_job_name: Option<String>,
    pub output_location_type: Option<String>,
    pub specialty: Option<String>,
    pub start_time: Option<f64>,
    pub transcription_job_status: Option<String>,
    pub type_: Option<String>,
}

Provides summary information about a transcription job.

Fields

completion_time: Option<f64>

A timestamp that shows when the job was completed.

creation_time: Option<f64>

A timestamp that shows when the medical transcription job was created.

failure_reason: Option<String>

If the TranscriptionJobStatus field is FAILED, a description of the error.

language_code: Option<String>

The language of the transcript in the source audio file.

medical_transcription_job_name: Option<String>

The name of a medical transcription job.

output_location_type: Option<String>

Indicates the location of the transcription job's output.

The CUSTOMER_BUCKET is the S3 location provided in the OutputBucketName field when the

specialty: Option<String>

The medical specialty of the transcription job. Primary care is the only valid value.

start_time: Option<f64>

A timestamp that shows when the job began processing.

transcription_job_status: Option<String>

The status of the medical transcription job.

type_: Option<String>

The speech of the clinician in the input audio.

Trait Implementations

impl Clone for MedicalTranscriptionJobSummary[src]

impl Debug for MedicalTranscriptionJobSummary[src]

impl Default for MedicalTranscriptionJobSummary[src]

impl<'de> Deserialize<'de> for MedicalTranscriptionJobSummary[src]

impl PartialEq<MedicalTranscriptionJobSummary> for MedicalTranscriptionJobSummary[src]

impl StructuralPartialEq for MedicalTranscriptionJobSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.