I have an application deployed on AWS on a linux instance running LAMP. Programming language of choice is PHP.
I have a process or a function that needs to be executed every 30 mins. What is the best way to achieve this?
In an IIS environment, I would be able to create a scheduled task, but was looking to see if I can get a serverless solution since I am using AWS.
an example is: I have a script that can be accessed via http://. 30 mins goes to http://someurl.com/function the URL request should respond with a JSON with either success or fail, if fail with proper error.
Any help is appreciated.
Rick