Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to delete a transcribe job in Amazon Transcribe

Do I need to delete a few transcribe jobs that I created using Amazon Transcribe service?

I'm using amazon transcribe for the first time to get a text from the video, it works fine but I didn't find anything there how to delete the particular transcribe job.

like image 351
satya Avatar asked Aug 30 '25 15:08

satya


2 Answers

As of 2018/10/18, you can delete Transcribe jobs.

Amazon Transcribe Supports Deletion of Completed Transcription Jobs

From AWS CLI

$ aws transcribe delete-transcription-job \
  --transcription-job-name YOUR_JOB_NAME

From Python SDK

>>> import boto3
>>> client = boto3.client('transcribe')
>>> client.delete_transcription_job(TranscriptionJobName='YOUR_JOB_NAME')

Of course, you can delete it from console :-)

like image 189
quiver Avatar answered Sep 02 '25 05:09

quiver


From Step 3: Getting Started Using the Console - Amazon Transcribe:

Jobs are kept for 90 days and then deleted from the system.

In fact, there is no "Delete Job" command!

like image 41
John Rotenstein Avatar answered Sep 02 '25 04:09

John Rotenstein