You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apigw-lambda-transcribe-sam-js/example-pattern.json
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,20 @@
1
1
{
2
-
"title": "Amazon API Gateway to AWS Lambda to Amazon Transcribe using AWS SAM",
3
-
"description": "This pattern creates a serverless API endpoint using API Gateway and Lambda to transcribe audio files stored in S3 using Amazon Transcribe.",
2
+
"title": "Amazon S3 to AWS Lambda to Amazon Transcribe using AWS SAM",
3
+
"description": "This pattern creates a serverless pipeline that automatically triggers an Amazon Transcribe job when audio files are uploaded to an S3 bucket, using Lambda to orchestrate the transcription process.",
4
4
"language": "Javascript",
5
5
"level": "200",
6
6
"framework": "SAM",
7
7
"introBox": {
8
8
"headline": "How it works",
9
9
"text": [
10
-
"When a POST request is made to the API Gateway endpoint with an S3 audio file URL, it triggers a Lambda function that starts a transcription job using Amazon Transcribe. The Lambda function sends the audio file location to Amazon Transcribe service, which processes the audio and generates text transcription that can be retrieved from the specified S3 bucket."
10
+
"When audio files are uploaded to the S3 bucket, it automatically triggers a Lambda function that starts a transcription job using Amazon Transcribe. The Lambda function extracts information about the uploaded audio file and sends it to the Amazon Transcribe service, which processes the audio and generates a text transcription that is saved back to the specified S3 bucket in the "transcriptions" folder."
0 commit comments