Reputation: 6166
I am using API Gateway and want to automate the creation of my environment using Cloudformation.
I'm only missing one thing, the Use Proxy Integration
option. I can't find a reference to it in the documentation.
Here's an image of what I am talking about:
Is this available in Cloudformation and if not, any ETA or plans to make it available?
Upvotes: 4
Views: 754
Reputation: 6225
HTTP_PROXY
is correct for HTTP Endpoint pass through. If you are looking for Lambda Pass Through Proxy, you have to use AWS_PROXY
.
Adding some description on each type.
Upvotes: 1
Reputation: 6166
Ok, I found the answer to my question:
The Type, in the Integration , must be set to HTTP_PROXY and not HTTP.
Method:
Type: 'AWS::ApiGateway::Method'
Properties:
Integration:
Type: HTTP_PROXY # can also be: AWS, AWS_PROXY, HTTP, HTTP_PROXY, MOCK
Upvotes: 2