Skip to content

Commit 24b4571

Browse files
Vandita2020Vandita Patidarhayemaxi
authored
feat(lambda): adding SNS pattern for ServerlessLand (#6841)
## Problem Adding new pattern for ServerlessLand feature. ## Solution Added pattern for SNS integration with Lambda in python, nodejs, java and dotnet runtime, supporting SAM IaC. --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license. --------- Co-authored-by: Vandita Patidar <[email protected]> Co-authored-by: Maxim Hayes <[email protected]>
1 parent 011654d commit 24b4571

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

packages/core/src/awsService/appBuilder/serverlessLand/metadata.json

+27-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
]
5454
},
5555
"Process SQS Records with Lambda": {
56-
"name": "Rest API",
56+
"name": "Process SQS Records with Lambda",
5757
"description": "Lambda, SQS • Python, Javascript, Java, .NET • SAM",
5858
"implementation": [
5959
{
@@ -77,6 +77,32 @@
7777
"assetName": "sqs-lambda-dotnet-sam"
7878
}
7979
]
80+
},
81+
"Process SNS notification messages with Lambda": {
82+
"name": "Process SNS notification messages with Lambda",
83+
"description": "Lambda, SNS • Python, Javascript, Java, .NET • SAM",
84+
"implementation": [
85+
{
86+
"iac": "sam",
87+
"runtime": "python",
88+
"assetName": "sns-lambda-python-sam"
89+
},
90+
{
91+
"iac": "sam",
92+
"runtime": "javascript",
93+
"assetName": "sns-lambda-nodejs-sam"
94+
},
95+
{
96+
"iac": "sam",
97+
"runtime": "java",
98+
"assetName": "sns-lambda-java-sam"
99+
},
100+
{
101+
"iac": "sam",
102+
"runtime": "dotnet",
103+
"assetName": "sns-lambda-dotnet-sam"
104+
}
105+
]
80106
}
81107
}
82108
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Feature",
3+
"description": "Lambda: Add 'Process SNS notification messages with Lambda' Serverless Land pattern."
4+
}

0 commit comments

Comments
 (0)