How to upload data to AWS S3 that does not fit in memoy ?
I need to upload large data files (around 200MB) from my STM32L485 board to AWS S3 storage. I was planning to use direct S3 upload via an HTTP request. However, my data cannot be loaded in RAM so I was thinking of sending it in chunks. But, I have seen that the HTTP library used in the examples, coreHTTP from aws c sdk, does not support streaming. Because of this, I'm not sure that uploading my data via HTTP is the best way to go.
I am new to these kinds of challenges so any advice on how to solve this problem will be much appreciated !
Thank in advance,
D.
