Created
December 6, 2018 16:22
-
-
Save MikeGarde/fa5cb710bb3331d13657a7b181328a6f to your computer and use it in GitHub Desktop.
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
exports.handler = function (event, context, callback) { | |
let respondToGateway = { | |
statusCode: '200', | |
body : JSON.stringify({ | |
event: event, | |
context: context | |
}), | |
headers : { | |
'Content-Type': 'application/json' | |
} | |
}; | |
callback(null, respondToGateway); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment