Skip to content

Commit

Permalink
Add final pattern file
Browse files Browse the repository at this point in the history
  • Loading branch information
bfreiberg authored Jan 10, 2024
1 parent 82df094 commit 6d0ba7e
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions apigw-lambda-translate-cdk/apigw-lambda-translate-cdk.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{
"title": "API Gateway - Lambda - Translate",
"description": "Perform language translation using Translate through Lambda and API Gateway",
"language": "Python",
"level": "200",
"framework": "CDK",
"introBox": {
"headline": "How it works",
"text": [
"This patterns shows CDK deployment on how to leverage Amazon API Gateway, AWS Lambda, and Amazon Translate to perform language translation in a serverless fashion."
]
},
"gitHub": {
"template": {
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/apigw-lambda-translate-cdk",
"templateURL": "serverless-patterns/apigw-lambda-translate-cdk",
"projectFolder": "apigw-lambda-translate-cdk",
"templateFile": "app.py"
}
},
"resources": {
"bullets": [
{
"text": "Amazon Translate",
"link": "https://docs.aws.amazon.com/translate/latest/dg/what-is.html"
},
{
"text": "Amazon Translate Features",
"Link": "https://aws.amazon.com/translate/"
},
{
"text": "Amazon API Gateway",
"link": "https://docs.aws.amazon.com/apigateway/latest/developerguide/welcome.html"
},
{
"text": "Amazon API Gateway Features",
"link": "https://aws.amazon.com/api-gateway/"
}
]
},
"deploy": {
"text": [
"cdk deploy"
]
},
"testing": {
"text": [
"See the GitHub repo for detailed testing instructions."
]
},
"cleanup": {
"text": [
"Delete the stack: <code>cdk destroy</code>."
]
},
"authors": [
{
"name": "Arjun Arippa",
"image": "https://github.com/awsarippa/amazon-textract-comprehend-pii-analysis/blob/main/image.png",
"bio": "Arjun Arippa is a Solutions Architect based in Bangalore, India. He works with some of the strategic and global customers in India, to build and architect their applications on AWS. Before joining AWS, Arjun spent over a decade working as a Software Developer. Reach out to him on LinkedIn",
"linkedin": "arjun-arippa"
}
],
"patternArch": {
"icon1": {
"x": 20,
"y": 50,
"service": "apigw",
"label": "API Gateway HTTP API"
},
"icon2": {
"x": 50,
"y": 50,
"service": "lambda",
"label": "AWS Lambda"
},
"icon3": {
"x": 80,
"y": 50,
"service": "translate",
"label": "Amazon Translate"
},
"line1": {
"from": "icon1",
"to": "icon2",
"label": ""
},
"line2": {
"from": "icon2",
"to": "icon3",
"label": ""
}
}
}

0 comments on commit 6d0ba7e

Please sign in to comment.