cc-docs/functions/hi-from-lambda.js
2023-07-04 16:33:06 +02:00

12 lines
232 B
JavaScript

exports.handler = (event, context, callback) => {
callback (null, {
statusCode: 200,
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
message: 'Hi from Lambda.',
}),
});
}