I've made a Lambda Function, using boto3, that is triggered when I upload an audio file to my s3 bucket. The function creates a transcription job using boto3's "start_transcription_job" method. I don't specify an OutputBucketName value, meaning my transcript is placed in a service-managed Amazon S3 bucket and I'm provided with a URI to access my transcript.
I then want to use the "get_transcription_job" method to obtain the output of the transcribed file. The "get_transcription_jobs" response syntax provides a 'Transcript' key with a 'TranscriptFileUri' value, but I'm not too sure how to obtain that value, or the transcribed text.
I hope this makes sense, there are a lot of parts in this Lambda Function and I'm confusing myself trying to explain it.