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
gefragt vor 2 Jahren2796 Aufrufe
1 Antwort
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
EXPERTE
kentrad
beantwortet vor 2 Jahren
  • 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?

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen