- Lab
-
Libraries: If you want this lab, consider one of these libraries.
- Cloud

Automatically Processing Data in S3 Using Lambda
Automating processes is a cornerstone of cloud computing. If you have data processing that needs to happen on data once it is uploaded to the cloud, there is no reason not to automate it to save yourself extra work for every new file. With AWS, this automation is easy to achieve. In this lab, we'll transcribe audio data into text whenever an audio file is uploaded to S3. Magic!

Lab Info
Table of Contents
-
Challenge
Create an IAM Role
- Log in to the AWS Console.
- Create an IAM role that will allow Lambda to:
- Read and write to S3
- Start jobs in Transcribe
- Create logs in CloudWatch
-
Challenge
Create a Lambda Function
- Create a new Lambda function that will handle events from S3. Be sure to use the IAM role you just created.
- Each event should create a new job in Transcribe that will translate the audio to text and store the result back in the S3 bucket that triggered the event.
- Hint: Transcribe jobs must be uniquely named.
- Output the name of the Transcribe job to CloudWatch.
-
Challenge
Create an S3 Bucket
- Create a new S3 bucket to hold the meeting audio.
- Since the audio will contain secret company information, ensure the bucket can't be accessed by anyone outside the company.
- The meeting audio should be encrypted at rest to improve security.
- Create an event notification for uploaded audio files that will trigger your Lambda function.
- Hint: It's very important to only send audio data to your function since we'll be automatically adding text data back to this bucket via the Transcribe job. You don't want an infinite loop of Lambda calls.
- Create a new S3 bucket to hold the meeting audio.
-
Challenge
Automatically Transcribe Data
- Upload the
ImportantBusiness.mp3
audio file provided with the lab (direct link) to the S3 bucket. - View the logs for the Lambda function in CloudWatch.
- View the details of the job created in Transcribe.
- Attempt to view the transcript in a browser via the S3 URL.
- Download the transcript to view the results.
- Upload the
About the author
Real skill practice before real-world application
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Learn by doing
Engage hands-on with the tools and technologies you’re learning. You pick the skill, we provide the credentials and environment.
Follow your guide
All labs have detailed instructions and objectives, guiding you through the learning process and ensuring you understand every step.
Turn time into mastery
On average, you retain 75% more of your learning if you take time to practice. Hands-on labs set you up for success to make those skills stick.