Increase Maximum POST Size for Amazon API Gateway

I intend to use the AWS API Gateway and Lambda to upload a file to S3 via POST from an HTML form. However, the API gateway endpoint will fail if the file is large enough with the message [HTTP content length exceeded 10485760 bytes.].

Do you know how to increase this limit?

This is the same if the API method hides the lambda function or just the layout method.

+6
source share
1 answer

There is currently no way to increase this limit.

In addition, the API Gateway API is not currently optimized to support binary transmission on S3. This is a request that we have heard from other customers, and we can add support for this in the future.

Update 2017-02-19: There is still no way to increase the payload size limits, the Gateway API now supports binary data .

+6
source

All Articles