cfn-lambda-handler
cfn-lambda-handler copied to clipboard
This package provides a decorator for Python Lambda functions handling AWS CloudFormation custom resources
Results
2
cfn-lambda-handler issues
Sort by
recently updated
recently updated
newest added
I was perusing the accustom library which also uses decorators.... (code below). would be nice to have the decorator check for required properties. @accustom.sdecorator(expectedProperties=['key1','key2'])
It's generally not encouraged to use [] and {} as function param default value because they are prone to cause unexpected modifications if the default value is used and modified...