Created
April 27, 2020 13:12
-
-
Save jasonbyrne/f7e7c0c2c51504cb9e6327fe74a559cf to your computer and use it in GitHub Desktop.
Lambda@Edge Simplest Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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