I have a foo lambda that executes some code by reading some files.
I only want to run the lambda after I upload the 10 required files, which is the tricky part.
- 10 files are uploaded in S3 bucket via bitbucket pipeline
- ??? (need to wait for all new CSVs to be uploaded)
- Execute
foolambda
If I use S3 upload trigger it will not work because it will call the lambda 10 times for each file upload...
The 10 files already exist in the S3 repo, I just replace them.
Any ideas how to run only the foo lambda ONCE after the 10 files are uploaded?