Last active
February 3, 2020 09:52
-
-
Save secretshardul/c5b48b2935098bc16d16d7f4fa20af67 to your computer and use it in GitHub Desktop.
API gateway handles path and query parameters. 'x-www-form-urlencoded' string is passed to Lambda.
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
{ | |
"my_path_param" : "$input.params('my_path_param')", | |
"my_query_param" : "$input.params('my_query_param')", | |
"body": "$input" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment