Skip to content

Instantly share code, notes, and snippets.

@PixelJunkie33
Created December 12, 2023 22:57
Show Gist options
  • Save PixelJunkie33/70e87cde4ffd10702446571cbd3f2ba8 to your computer and use it in GitHub Desktop.
Save PixelJunkie33/70e87cde4ffd10702446571cbd3f2ba8 to your computer and use it in GitHub Desktop.
functional lambda function that triggers and event AWS Node.js Runtime
exports.handler = async (event) => {
const data = {
name: "mike",
}
return {
statusCode: 200,
body: JSON.stringify(data)
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment