Recommendations for Amazon's API Gateway 10MB payload limit

1

My customer wants to migrate their APIs on Amazon API Gateway.

The challenge is that they have many downstream apps that post data to their APIs and there is a concern on the API Gateway 10MB payload limit.

We are looking for recommendations on how to work around the 10MB payload limit with minimal change if possible to the downstream applications.

1 Answer
2
Accepted Answer

Since 10MB is a hard limit on payload size for Amazon API Gateway we would recommend to the customer to examine HTTP Posting large files to S3 Pre-signed URLs.

Uploading to S3 via a Pre-signed URL can be very similar to sending a POST request to API GW.

The customer can use API Gateway to return an S3 Pre-signed URL in its response and then the application can use that URL in order to upload the data to S3. https://docs.aws.amazon.com/AmazonS3/latest/dev/PresignedUrlUploadObject.html

AWS
answered 4 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions