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
feita há 2 anos2796 visualizações
1 Resposta
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
ESPECIALISTA
kentrad
respondido há 2 anos
  • 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?

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas