forked from aws-samples/serverless-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-pattern.json
More file actions
54 lines (54 loc) · 2.06 KB
/
Copy pathexample-pattern.json
File metadata and controls
54 lines (54 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"title": "Amazon API Gateway REST API to AWS Lambda to Amazon SES",
"description": "This sample project demonstrates publishing an email through SES by invoking a Lambda function through a REST API.",
"language": "Python",
"level": "200",
"framework": "AWS SAM",
"introBox": {
"headline": "Create an Amazon API Gateway REST API that invokes a Lambda function to send email through SES.",
"text": ["This pattern deploys a Amazon API Gateway REST API with Lambda Function integration and SES"]
},
"gitHub": {
"template": {
"repoURL": "https://github.com/aws-samples/serverless-patterns/blob/main/apigw-lambda-ses",
"templateURL": "serverless-patterns/apigw-lambda-ses",
"projectFolder": "apigw-lambda-ses",
"templateFile": "template.yml"
}
},
"resources": {
"bullets": [
{
"text": "Publishing Emails in Amazon SES.",
"link": "https://docs.aws.amazon.com/ses/latest/dg/getting-started.html"
},
{
"text": "Creating and verifying identities in Amazon SES.",
"link": "https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html"
}
]
},
"deploy": {
"text": [
"sam deploy --guided --parameter-overrides SENDER=sender@email.com RECIPIENT=recipient@email.com"
]
},
"testing": {
"text": [
"See the GitHub repo for detailed testing instructions."
]
},
"cleanup": {
"text": [
"Delete the stack: <code>sam delete </code>."
]
},
"authors": [
{
"name": "Himanshu Goyal",
"image": "https://drive.google.com/file/d/1wXvafYjTDUxW55EX12XbVJBdR135obFP/view?usp=sharing",
"bio": "A Serverless Cloud Engineer and technical writer, dedicated to crafting efficient and scalable solutions using AWS services. My expertise in serverless architecture empowers me to create innovative and cost-effective cloud solutions. I enjoy sharing my knowledge with the serverless community through articles and patterns, helping others explore the vast potential of serverless computing. ",
"linkedin": "himanshugoyal20"
}
]
}