amazonka-transcribe-2.0: Amazon Transcribe Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Transcribe.GetTranscriptionJob

Description

Provides information about the specified transcription job.

To view the status of the specified transcription job, check the TranscriptionJobStatus field. If the status is COMPLETED, the job is finished. You can find the results at the location specified in TranscriptFileUri. If the status is FAILED, FailureReason provides details on why your transcription job failed.

If you enabled content redaction, the redacted transcript can be found at the location specified in RedactedTranscriptFileUri.

To get a list of your transcription jobs, use the operation.

Synopsis

Creating a Request

data GetTranscriptionJob Source #

See: newGetTranscriptionJob smart constructor.

Constructors

GetTranscriptionJob' 

Fields

Instances

Instances details
ToJSON GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

ToHeaders GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

ToPath GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

ToQuery GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

AWSRequest GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Associated Types

type AWSResponse GetTranscriptionJob #

Generic GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Associated Types

type Rep GetTranscriptionJob :: Type -> Type #

Read GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Show GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

NFData GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Methods

rnf :: GetTranscriptionJob -> () #

Eq GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Hashable GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type AWSResponse GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJob Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJob = D1 ('MetaData "GetTranscriptionJob" "Amazonka.Transcribe.GetTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetTranscriptionJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transcriptionJobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetTranscriptionJob Source #

Create a value of GetTranscriptionJob with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

GetTranscriptionJob, getTranscriptionJob_transcriptionJobName - The name of the transcription job you want information about. Job names are case sensitive.

Request Lenses

getTranscriptionJob_transcriptionJobName :: Lens' GetTranscriptionJob Text Source #

The name of the transcription job you want information about. Job names are case sensitive.

Destructuring the Response

data GetTranscriptionJobResponse Source #

See: newGetTranscriptionJobResponse smart constructor.

Constructors

GetTranscriptionJobResponse' 

Fields

Instances

Instances details
Generic GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Associated Types

type Rep GetTranscriptionJobResponse :: Type -> Type #

Read GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Show GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

NFData GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

Eq GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJobResponse Source # 
Instance details

Defined in Amazonka.Transcribe.GetTranscriptionJob

type Rep GetTranscriptionJobResponse = D1 ('MetaData "GetTranscriptionJobResponse" "Amazonka.Transcribe.GetTranscriptionJob" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "GetTranscriptionJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transcriptionJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TranscriptionJob)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetTranscriptionJobResponse Source #

Create a value of GetTranscriptionJobResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:transcriptionJob:GetTranscriptionJobResponse', getTranscriptionJobResponse_transcriptionJob - Provides detailed information about the specified transcription job, including job status and, if applicable, failure reason.

$sel:httpStatus:GetTranscriptionJobResponse', getTranscriptionJobResponse_httpStatus - The response's http status code.

Response Lenses

getTranscriptionJobResponse_transcriptionJob :: Lens' GetTranscriptionJobResponse (Maybe TranscriptionJob) Source #

Provides detailed information about the specified transcription job, including job status and, if applicable, failure reason.