Skip to content

Commit 4c6556e

Browse files
authored
Add final pattern file
1 parent f03ff69 commit 4c6556e

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
"title": "Text translation with AWS Lambda and Amazon Translate",
3+
"description": "Create an AWS Lambda function that calls Amazon Translate for text translation via the Boto3 SDK.",
4+
"language": "Python",
5+
"level": "200",
6+
"framework": "Terraform",
7+
"introBox": {
8+
"headline": "How it works",
9+
"text": [
10+
"This pattern shows how to deploy a Terraform template that creates a Lambda function which calls Amazon Translate for text translation."
11+
]
12+
},
13+
"gitHub": {
14+
"template": {
15+
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/lambda-translate-tf",
16+
"templateURL": "serverless-patterns/lambda-translate-tf",
17+
"projectFolder": "lambda-translate-tf",
18+
"templateFile": "main.tf"
19+
}
20+
},
21+
"resources": {
22+
"bullets": [
23+
{
24+
"text": "Translation processing modes",
25+
"link": "https://docs.aws.amazon.com/translate/latest/dg/processing.html"
26+
},
27+
{
28+
"text": "Lambda",
29+
"link": "https://docs.aws.amazon.com/lambda/latest/dg/welcome.html"
30+
}
31+
]
32+
},
33+
"deploy": {
34+
"text": [
35+
"terraform init",
36+
"terraform apply"
37+
]
38+
},
39+
"testing": {
40+
"text": [
41+
"See the Github repo for detailed testing instructions."
42+
]
43+
},
44+
"cleanup": {
45+
"text": [
46+
"<code>terraform destroy</code>",
47+
"<code>terraform show</code>"
48+
]
49+
},
50+
"authors": [
51+
{
52+
"name": "Makendran G",
53+
"image": "https://drive.google.com/file/d/1mUObnbmn52UWL-Zn39EpgpneiBNv3LCN/view?usp=sharing",
54+
"bio": "Cloud Support Engineer @ AWS",
55+
"linkedin": "makendran",
56+
"twitter": "@MakendranG"
57+
}
58+
],
59+
"patternArch": {
60+
"icon1": {
61+
"x": 20,
62+
"y": 50,
63+
"service": "lambda",
64+
"label": "AWS Lambda"
65+
},
66+
"icon2": {
67+
"x": 80,
68+
"y": 50,
69+
"service": "translate",
70+
"label": "Amazon Translate"
71+
},
72+
"line1": {
73+
"from": "icon1",
74+
"to": "icon2",
75+
"label": ""
76+
}
77+
}
78+
}

0 commit comments

Comments
 (0)