我有一些具有许多 REST 路径的 EC 2 应用程序(在 node.js 中),并且由于仍处于开发过程中,因此路径不断变化。
如何在 api-gateway 中设置,将映射到多个路径,而不是指定每个路径?
e.g.
my ec2 end points have:
my.ec2.com/api/test
my.ec2.com/api/test1
my.ec2.com/api/test2
my.ec2.com/api/user/time
my.ec2.com/api/user/time1
my.ec2.com/api/user/time2
而不是在 api-gateway 中设置所有资源,我可以执行以下操作:指向 my.ec2.com/api/ 的 api-gateway.amazon.com/api
它会自动解决对http://api-gateway.amazon.com/api/test的任何调用 指向http://my.ec2.com/api/test等?