[][src]Struct rusoto_transcribe::StartTranscriptionJobRequest

pub struct StartTranscriptionJobRequest {
    pub language_code: String,
    pub media: Media,
    pub media_format: String,
    pub media_sample_rate_hertz: Option<i64>,
    pub output_bucket_name: Option<String>,
    pub settings: Option<Settings>,
    pub transcription_job_name: String,
}

Fields

language_code: String

The language code for the language used in the input media file.

media: Media

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

media_format: 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.

output_bucket_name: Option<String>

The location where the transcription is stored.

If you set the OutputBucketName, Amazon Transcribe puts the transcription in the specified S3 bucket. When you call the GetTranscriptionJob operation, the operation returns this location in the TranscriptFileUri field. The S3 bucket must have permissions that allow Amazon Transcribe to put files in the bucket. For more information, see Permissions Required for IAM User Roles.

Amazon Transcribe uses the default Amazon S3 key for server-side encryption of transcripts that are placed in your S3 bucket. You can't specify your own encryption key.

If you don't set the OutputBucketName, Amazon Transcribe generates a pre-signed URL, a shareable URL that provides secure access to your transcription, and returns it in the TranscriptFileUri field. Use this URL to download the transcription.

settings: Option<Settings>

A Settings object that provides optional settings for a transcription job.

transcription_job_name: String

The name of the job. Note that you can't use the strings "." or ".." by themselves as the job name. The name must also be unique within an AWS account.

Trait Implementations

impl PartialEq<StartTranscriptionJobRequest> for StartTranscriptionJobRequest[src]

impl Default for StartTranscriptionJobRequest[src]

impl Clone for StartTranscriptionJobRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for StartTranscriptionJobRequest[src]

impl Serialize for StartTranscriptionJobRequest[src]

Auto Trait Implementations

impl Send for StartTranscriptionJobRequest

impl Sync for StartTranscriptionJobRequest

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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self