Skip to content

Commit 5c47101

Browse files
authored
publishing file
1 parent e810484 commit 5c47101

File tree

1 file changed

+101
-0
lines changed

1 file changed

+101
-0
lines changed
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
{
2+
"title": "Amazon S3 to AWS Lambda to Amazon Transcribe using AWS SAM",
3+
"description": "This pattern creates a serverless pipeline that automatically invokes an Amazon Transcribe job when audio files are uploaded to an S3 bucket.",
4+
"language": "Node.js",
5+
"level": "200",
6+
"framework": "SAM",
7+
"introBox": {
8+
"headline": "How it works",
9+
"text": [
10+
"When audio files are uploaded to the S3 bucket, an AWS Lambda function 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."
11+
]
12+
},
13+
"gitHub": {
14+
"template": {
15+
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/lambda-transcribe-sam-js",
16+
"templateURL": "serverless-patterns/lambda-transcribe-sam-js",
17+
"projectFolder": "lambda-transcribe-sam-js",
18+
"templateFile": "template.yaml"
19+
}
20+
},
21+
"resources": {
22+
"bullets": [
23+
{
24+
"text": "Amazon S3",
25+
"link": "https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html"
26+
},
27+
{
28+
"text": "AWS Lambda",
29+
"link": "https://docs.aws.amazon.com/lambda/latest/dg/welcome.html"
30+
},
31+
{
32+
"text": "Amazon Transcribe",
33+
"link": "https://docs.aws.amazon.com/transcribe/latest/dg/what-is.html"
34+
}
35+
]
36+
},
37+
"deploy": {
38+
"text": [
39+
"sam build",
40+
"sam deploy --guided"
41+
]
42+
},
43+
"testing": {
44+
"text": [
45+
"See the GitHub repo for detailed testing instructions."
46+
]
47+
},
48+
"cleanup": {
49+
"text": [
50+
"sam delete"
51+
]
52+
},
53+
"authors": [
54+
{
55+
"name": "Achintya Veer Singh",
56+
"image": "https://avatars.githubusercontent.com/u/55053737?v=4",
57+
"bio": "Solutions Architect @ AWS",
58+
"linkedin": "www.linkedin.com/in/achintya-veer-singh-493403193",
59+
"twitter": "achintya_veer"
60+
}
61+
],
62+
"patternArch": {
63+
"icon1": {
64+
"x": 10,
65+
"y": 50,
66+
"service": "s3",
67+
"label": "Amazon S3"
68+
},
69+
"icon2": {
70+
"x": 40,
71+
"y": 50,
72+
"service": "lambda",
73+
"label": "AWS Lambda"
74+
},
75+
"icon3": {
76+
"x": 65,
77+
"y": 50,
78+
"service": "transcribe",
79+
"label": "Amazon Transcribe"
80+
},
81+
"icon4": {
82+
"x": 90,
83+
"y": 50,
84+
"service": "s3",
85+
"label": "Amazon S3"
86+
},
87+
"line1": {
88+
"from": "icon1",
89+
"to": "icon2",
90+
"label": "Object Created"
91+
},
92+
"line2": {
93+
"from": "icon2",
94+
"to": "icon3"
95+
},
96+
"line3": {
97+
"from": "icon3",
98+
"to": "icon4"
99+
}
100+
}
101+
}

0 commit comments

Comments
 (0)