[][src]Struct rusoto_transcribe::TranscriptionJob

pub struct TranscriptionJob {
    pub completion_time: Option<f64>,
    pub creation_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub language_code: Option<String>,
    pub media: Option<Media>,
    pub media_format: Option<String>,
    pub media_sample_rate_hertz: Option<i64>,
    pub settings: Option<Settings>,
    pub transcript: Option<Transcript>,
    pub transcription_job_name: Option<String>,
    pub transcription_job_status: Option<String>,
}

Describes an asynchronous transcription job that was created with the StartTranscriptionJob operation.

Fields

completion_time: Option<f64>

A timestamp that shows when the job was completed.

creation_time: Option<f64>

A timestamp that shows when the job was created.

failure_reason: Option<String>

If the TranscriptionJobStatus field is FAILED, this field contains information about why the job failed.

The FailureReason field can contain one of the following values:

language_code: Option<String>

The language code for the input speech.

media: Option<Media>

An object that describes the input media for the transcription job.

media_format: Option<String>

The format of the input media file.

media_sample_rate_hertz: Option<i64>

The sample rate, in Hertz, of the audio track in the input media file.

settings: Option<Settings>

Optional settings for the transcription job. Use these settings to turn on speaker recognition, to set the maximum number of speakers that should be identified and to specify a custom vocabulary to use when processing the transcription job.

transcript: Option<Transcript>

An object that describes the output of the transcription job.

transcription_job_name: Option<String>

The name of the transcription job.

transcription_job_status: Option<String>

The status of the transcription job.

Trait Implementations

impl PartialEq<TranscriptionJob> for TranscriptionJob[src]

impl Default for TranscriptionJob[src]

impl Clone for TranscriptionJob[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TranscriptionJob[src]

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

Auto Trait Implementations

impl Send for TranscriptionJob

impl Sync for TranscriptionJob

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self