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
asked 2 years ago2691 views
1 Answer
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
EXPERT
kentrad
answered 2 years ago
  • 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?

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions