I have a service running in EC2 instance. The server contains an exe which takes file name as a parameter and do some logic. I.E. whenever a file is uploaded to S3, it will trigger the exe to process the file.
Can someone guide me on this?
what i have done is, i have created a SQS, and open the notification on S3 bucket to that sqs. when a file is uploaded i get a notification in sqs. i wrote an application which reads the sqs and extract name from its values and call the application with that name as parameters.