{
"/{proxy+}": {
"x-amazon-apigateway-any-method": {
"produces": [
"application/json"
],
"parameters": [
{
"name": "proxy",
"in": "path",
"required": true,
"type": "string"
}
],
"security": [],
"responses": {},
"x-amazon-apigateway-integration": {
"responses": {
"default": {
"statusCode": "200"
}
},
"requestParameters": {
"integration.request.path.proxy": "method.request.path.proxy"
},
"uri": "http://endpoint-you-want-for-host-header.com/{proxy}",
"httpMethod": "ANY",
"passthroughBehavior": "when_no_match",
"type": "http_proxy",
"connectionType": "VPC_LINK",
"connectionId": "$${stageVariables.vpcLinkId}"
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)