is it possible for a scheduled lambda (via CloudWatch event rule) to run again before its previous run has finished ?
e.g. lets say I have a lambda with a 5 minute max timeout and also have it scheduled to run every minute.
Now, if my Lambda has a long task that uses 4 out of its 5 minute timeout what happens with the other scheduled runs? are they cancelled because the lambda is currently 'in progress' or are they simply triggered in parallel ?