I want to deploy an API with API Gateway that has ...
# general
f
I want to deploy an API with API Gateway that has a single resource
/{proxy+}
with an
ANY
method. It will simply send all requests to a lambda function using the
LAMBDA_PROXY
request integration. What is the idiomatic way to go about this? i.e. Should I create all of the individual AWS resources using the aws package or is there some higher level package, perhaps in cloud-aws or cloud, that would allow me to do that with less code? The lambda function is an existing lambda function created and managed by a different, non-pulumi, process.