5 ms·
So the lambda function will survive, but billing will still go to zero when the lambda's last execution finishes, right?
by ralphist 3y ago
So the lambda function will survive, but billing will still go to zero when the lambda's last execution finishes, right?
- easton 3y agoThe function would be destroyed (guessing running instances would finish their handlers and then no longer be accessible) but the log group it created would still be present, holding logs from the dead function.
- ralphist 3y agoThat sounds stupid, thanks. Guess I'll be careful when I set up lambdas.