From 17d9c5454132e677371909e396ae0338070dda56 Mon Sep 17 00:00:00 2001 From: BABYGOAT9322 <161910245+BABYGOAT9322@users.noreply.github.com> Date: Fri, 19 Apr 2024 08:58:57 -0500 Subject: [PATCH] neee --- .vscode/launch.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 12bc837..b25f9cc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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",