使用boto3和Python如何获取Lambda函数的上次修改时间?

huangapple go评论62阅读模式
英文:

How to get when lambda was last modified using boto3 and python?

问题

我想在Python脚本中使用boto3获取Lambda函数的上次更新时间。当我导航到Lambda仪表板时,我可以看到上次更新的时间,如附件中所示。使用boto3和Python如何获取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.使用boto3和Python如何获取Lambda函数的上次修改时间?

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.

huangapple
  • 本文由 发表于 2023年3月7日 02:46:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/75654676.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定