Using the console, I was able to configure an API gateway method to pass HTTP requests with a path parameter off to a another URI.
This would make it so that my request is forwarded to https://example.com
with the same (greedy) path parameter.
Though this was successful enough, I need to be able to be able to specify this as an AWS::Serverless::Api resource in a cloudformation template. As far as I can tell, the documentation for the Serverless Application Model does not provide any mention as to how to accomplish this.
Can it be done on a serverless resource, or do I need to work with traditional AWS::ApiGateway::Resource/Method's?