x-amazon-apigateway-gateway-responses.gatewayResponse object
Defines a gateway response of a given response type, including the status code, any applicable response parameters, or response templates.
Property name | Type | Description |
---|---|---|
|
x-amazon-apigateway-gateway-responses.responseParameters |
Specifies the GatewayResponse parameters, namely the header parameters. The parameter values can take any incoming request parameter value or a static custom value. |
|
x-amazon-apigateway-gateway-responses.responseTemplates |
Specifies the mapping templates of the gateway response. The templates are not processed by the VTL engine. |
|
string |
An HTTP status code for the gateway response. |
x-amazon-apigateway-gateway-responses.gatewayResponse example
The following example of the API Gateway extension to OpenAPI defines a GatewayResponse to
customize the INVALID_API_KEY
response to return the status code of
456
, the incoming request's api-key
header value, and
a "Bad api-key"
message.
"INVALID_API_KEY": { "statusCode": "456", "responseParameters": { "gatewayresponse.header.api-key": "method.request.header.api-key" }, "responseTemplates": { "application/json": "{\"message\": \"Bad api-key\" }" } }