Following this AWS documentation, I was able to create a new endpoint on my API Gateway that is able to manipulate files on an S3 repository. The problem I'm having is the file size (AWS having a payload limitation of 10MB).
I was wondering, without using a lambda work-around (this link would help with that), would it be possible to upload and get files bigger than 10MB (even as binary if needed) seeing as this is using an S3 service as a proxy - or is the limit regardless?
I've tried PUT
ting and GET
ting files bigger than 10MB, and each response is a typical "message": "Timeout waiting for endpoint response"
.
Looks like Lambda
is the only way, just wondering if anyone else got around this, using S3 as a proxy.
Thanks