Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TranscriptionJobSummary

import type { TranscriptionJobSummary } from "https://aws-api.deno.dev/v0.3/services/transcribeservice.ts?docs=full";

Provides a summary of information about a transcription job.

interface TranscriptionJobSummary {
CompletionTime?: Date | number | null;
ContentRedaction?: ContentRedaction | null;
CreationTime?: Date | number | null;
FailureReason?: string | null;
IdentifiedLanguageScore?: number | null;
IdentifyLanguage?: boolean | null;
LanguageCode?: LanguageCode | null;
ModelSettings?: ModelSettings | null;
OutputLocationType?: OutputLocationType | null;
StartTime?: Date | number | null;
TranscriptionJobName?: string | null;
TranscriptionJobStatus?: TranscriptionJobStatus | null;
}

§Properties

§
CompletionTime?: Date | number | null
[src]

A timestamp that shows when the job was completed.

§
ContentRedaction?: ContentRedaction | null
[src]

The content redaction settings of the transcription job.

§
CreationTime?: Date | number | null
[src]

A timestamp that shows when the job was created.

§
FailureReason?: string | null
[src]

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

§
IdentifiedLanguageScore?: number | null
[src]

A value between zero and one that Amazon Transcribe assigned to the language it identified in the source audio. A higher score indicates that Amazon Transcribe is more confident in the language it identified.

§
IdentifyLanguage?: boolean | null
[src]

Whether automatic language identification was enabled for a transcription job.

§
LanguageCode?: LanguageCode | null
[src]

The language code for the input speech.

§
ModelSettings?: ModelSettings | null
[src]
§
OutputLocationType?: OutputLocationType | null
[src]

Indicates the location of the output of the transcription job.

If the value is CUSTOMER_BUCKET then the location is the S3 bucket specified in the outputBucketName field when the transcription job was started with the StartTranscriptionJob operation.

If the value is SERVICE_BUCKET then the output is stored by Amazon Transcribe and can be retrieved using the URI in the GetTranscriptionJob response's TranscriptFileUri field.

§
StartTime?: Date | number | null
[src]

A timestamp that shows when the job started processing.

§
TranscriptionJobName?: string | null
[src]

The name of the transcription job.

§
TranscriptionJobStatus?: TranscriptionJobStatus | null
[src]

The status of the transcription job. When the status is COMPLETED, use the GetTranscriptionJob operation to get the results of the transcription.