Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chloegrace94/dc1e3e38d9c1bd3c17b28226b36e90ca to your computer and use it in GitHub Desktop.
Save chloegrace94/dc1e3e38d9c1bd3c17b28226b36e90ca to your computer and use it in GitHub Desktop.
API Gateway integration request mapping template for interactive Slack reminder service
{
"method": "$context.httpMethod",
"body" : $input.json('$'),
"headers": {
#foreach($param in $input.params().header.keySet())
"$param": "$util.escapeJavaScript($input.params().header.get($param))"
#if($foreach.hasNext),#end
#end
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment