Skip to content

Instantly share code, notes, and snippets.

@sgarcez
Last active April 23, 2018 16:43
Show Gist options
  • Save sgarcez/ebf3c4eabaccde32e184b3bc5fac7458 to your computer and use it in GitHub Desktop.
Save sgarcez/ebf3c4eabaccde32e184b3bc5fac7458 to your computer and use it in GitHub Desktop.
x-amazon-apigateway-gateway-responses:
DEFAULT_4XX:
defaultResponse: false
responseParameters:
gatewayresponse.header.Content-Type: "'application/json'"
responseTemplates:
application/json: |
{
"code": "$context.error.responseType",
"message": $context.error.messageString
}
DEFAULT_5XX:
defaultResponse: false
responseParameters:
gatewayresponse.header.Content-Type: "'application/json'"
responseTemplates:
application/json: |
{
"code": "INTERNAL_ERROR",
"message": "Internal error"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment