Deletes a transcription job. To use this operation, specify the name of the job you want to delete using TranscriptionJobName. Job names are case sensitive.
TranscriptionJobName
Use a bare-bones client and the command you need to make an API call.
import { TranscribeClient, DeleteTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import // const { TranscribeClient, DeleteTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import const client = new TranscribeClient(config); const command = new DeleteTranscriptionJobCommand(input); const response = await client.send(command);
DeleteTranscriptionJobCommandInput for command's input shape.
input
DeleteTranscriptionJobCommandOutput for command's response shape.
response
config for TranscribeClient's config shape.
config
Deletes a transcription job. To use this operation, specify the name of the job you want to delete using
TranscriptionJobName
. Job names are case sensitive.Use a bare-bones client and the command you need to make an API call.
import { TranscribeClient, DeleteTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import // const { TranscribeClient, DeleteTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import const client = new TranscribeClient(config); const command = new DeleteTranscriptionJobCommand(input); const response = await client.send(command);
DeleteTranscriptionJobCommandInput for command's
input
shape.DeleteTranscriptionJobCommandOutput for command's
response
shape.config for TranscribeClient's
config
shape.