Is it possible to have AWS's API gateway route based on query string parameters?
So for example:
api.com/stuff?version=1.0
will route to:
https://endpoint.com/mystuff
and
api.com/stuff?version=2.0
will route to:
https://endpoint.com:8080/mystuff
So far I haven't seen anything for this. I can send custom query string parameters along to my endpoints, but I don't seem to be able actually to do anything with them. If it's not possible, have requests been made for this? I can do this through lambda but I would really like to make sure this can't be done through AWS API Gateway first.