AWS
AWS Lambda SingletonFunction
Kyle79
2021. 7. 1. 12:18
https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-lambda.SingletonFunction.html
class SingletonFunction (construct) · AWS CDK
# class SingletonFunction (construct)
docs.aws.amazon.com
Singleton instance lifecycle in AWS Lambda function (Python)
If I create a singleton instance in Lambda, and set lambda timeout to 30s. Upon next invocation, would I get the same singleton instance or a new one if same container is used. I am creating this
stackoverflow.com