This commit is contained in:
BABYGOAT9322 2024-04-19 08:58:57 -05:00 committed by GitHub
parent 20f2b01dee
commit 17d9c54541
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

33
.vscode/launch.json vendored
View file

@ -4,6 +4,39 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "aws-sam",
"request": "direct-invoke",
"name": "Invoke Lambda with API Gateway",
"invokeTarget": {
"target": "api",
"templatePath": "Template Location",
"logicalId": "Function Logical ID"
},
"api": {
"path": "Path",
"httpMethod": "Method",
"payload": {
"json": {}
}
}
},
{
"type": "aws-sam",
"request": "direct-invoke",
"name": "Invoke Lambda",
"invokeTarget": {
"target": "code",
"lambdaHandler": "Function Handler",
"projectRoot": "${workspaceFolder}"
},
"lambda": {
"runtime": "Lambda Runtime",
"payload": {
"json": {}
}
}
},
{
"type": "cobol",
"request": "launch",