From 5c786852fcbd582855f2d7b148008f610aa82405 Mon Sep 17 00:00:00 2001 From: timam Date: Thu, 16 May 2024 22:29:42 +0600 Subject: [PATCH] Update response message in Lambda handler The text returned by the Lambda handler's response has been updated for clarity. This change enhances the demonstrative impact of the message, improving user experience. --- demo/lambda/src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/lambda/src/app.js b/demo/lambda/src/app.js index ad7df6b..4ad447c 100644 --- a/demo/lambda/src/app.js +++ b/demo/lambda/src/app.js @@ -1,7 +1,7 @@ exports.handler = async (event) => { const response = { statusCode: 200, - body: JSON.stringify('Hello from Lambda!!') + body: JSON.stringify('Hello from Lambda!!!') }; return response; };