An excel file (say my_excel_file.xlsx) will be uploaded to s3://my-bucket/a/b/
A trigger is set in lambda with following properties: bucket-name: my-bucket, prefix: a/b/
I want my lambda to:
- Read the excel file uploaded to s3://my-bucket/a/b/ into a pandas dataframe
- After processing it, move the excel file to s3://my-bucket/a/b/archive/ with the name: my_excel_file_timestamp.xlsx
In case I am able to achieve the above step, will the lambda get invoked recursively? If yes, is there a workaround?