AWS cli - List all the deprecated lambda runtime

1

Hi, Is there a way to list all the deprecated lambda runtime using aws cli? I'm planning to get all the list only all the deprecated lambda runtime and next is possibly to output it via .csv file.

  • Do you mean a list of your functions which are using a deprecated runtime, or a list of the runtimes which are deprecated?

  • Hi @James_S - Apologies for the confusion. I'm particularly looking for list of my functions that are using a deprecated runtime.

khentz
已提问 2 年前2797 查看次数
1 回答
1

I could not find an API call that lists the deprecated runtimes. They are listed in the documentation.

Using those values, the following CLI command will find functions that are using them:

aws lambda list-functions \
        --output table \
        --query 'Functions[?Runtime==`dotnetcore2.1` || Runtime==`python2.7` ||  Runtime==`ruby2.5` || Runtime==`nodejs10.x` || Runtime==`nodejs8.10` || Runtime==`nodejs
6.10` || Runtime==`nodejs4.3-edge` || Runtime==`nodejs4.3` || Runtime==`nodejs` || Runtime==`dotnetcore2.0` || Runtime==`dotnetcore1.0`].[FunctionName,Runtime,Version,Fu
nctionArn]'
profile pictureAWS
专家
kentrad
已回答 2 年前
  • Apologies for the confusion. I'm particularly looking for list of my functions that are using a deprecated runtime.

  • Is there a way to add the "last execution date" for each function to this list?

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则