I have been using Chalice for my AWS Lambda programming. There's only one thing that buggs me. How can I set the Description of a lambda function?
I know I can customize memory and timeout using configuration file in the .chalice
directory. But I cannot find how to customize the Description.
As of this writing, chalice don't have a description field for lambda. You can check on the master branch.
https://github.com/aws/chalice/blob/6295aeddd12c327fb0a524e47f69146daa0b9f34/chalice/awsclient.py
You can add a feature to add it to the list of attributes.
Hope it helps.