英文:
How to get when lambda was last modified using boto3 and python?
问题
我想在Python脚本中使用boto3获取Lambda函数的上次更新时间。当我导航到Lambda仪表板时,我可以看到上次更新的时间,如附件中所示。
我可以使用boto3获取最后修改的值吗?
英文:
I want to use boto3 in a python script to get when a lambda was last updated. When I navigate to the lambda dashboard, I am able to see the last updated time as seen in my attachment.
Can I get the last modified value using boto3?
答案1
得分: 2
调用 Lambda 函数上的 get_function_configuration。
在响应中使用 LastModified
字符串。
英文:
Call get_function_configuration on the Lambda function.
Use the LastModified
string in the response.
答案2
得分: 0
Boto3支持Lambda GetFunction API,其中包括ModifiedTime。
英文:
Boto3 supports lambda GetFunction API which includes a ModifiedTime.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论