Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hi-from-lambda.js « functions - github.com/h-enk/doks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88e4fa0089a98736fb822047d5ce70a1bdd47bca (plain)
1
2
3
4
5
6
7
8
9
10
11
exports.handler = (event, context, callback) => {
  callback (null, {
    statusCode: 200,
    headers: {
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
      message: 'Hi from Lambda.',
    }),
  });
}