The AWS lambdas doc said that global variable will be share across lambda runs. Due to legacy reason, I need to find way to declare and keep a global variable to a lambda run, and it need to be isolated from other lambda runs.
I’m was thinking using class attribute. AWS lambda still treat class attribute as global variable, right?