1

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.

Web console of Lambda Code

user19906
  • 323
  • 4
  • 12

1 Answers1

2

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.

Kannaiyan
  • 12,554
  • 3
  • 44
  • 83