Skip to content

Instantly share code, notes, and snippets.

@hackintoshrao
Created July 16, 2021 14:10
Show Gist options
  • Save hackintoshrao/502b1ccfd83f1da5a345b35032d9dcdd to your computer and use it in GitHub Desktop.
Save hackintoshrao/502b1ccfd83f1da5a345b35032d9dcdd to your computer and use it in GitHub Desktop.
AWS Lambda Hello World
exports.handler = async (event) => {
// TODO implement
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!'),
};
return response;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment