Skip to content

Instantly share code, notes, and snippets.

@jasonbyrne
Created April 27, 2020 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonbyrne/f7e7c0c2c51504cb9e6327fe74a559cf to your computer and use it in GitHub Desktop.
Save jasonbyrne/f7e7c0c2c51504cb9e6327fe74a559cf to your computer and use it in GitHub Desktop.
Lambda@Edge Simplest Example
'use strict';
exports.handler = (event, context, callback) => {
const request = event.Records[0].cf.request;
return callback(null, request);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment