DEV Community

Discussion on: How to Schedule Any Task with AWS Lambda

Collapse
 
chrisarmstrong profile image
Chris Armstrong

Another way to schedule tasks (albeit within a 15min time-frame) is to post a message to an SQS queue with a DelaySeconds parameter. This can be useful for implementing a polling/reccurrent task started on demand that terminates itself.

Collapse
 
byrro profile image
Renato Byrro

That is a clever idea, thanks for sharing Chris! ;)