exports.handler = async (event) => { | |
console.log("value2 = " + event.name); | |
var text = event.name || "from Lambda"; | |
const response = { | |
statusCode: 200, | |
body: JSON.stringify('Hello ' + text), | |
}; | |
return response; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment