Skip to content

Instantly share code, notes, and snippets.

@rowanu
Last active September 16, 2025 17:52
Show Gist options
  • Save rowanu/580936bd8bca503ed03ab0242fe9d896 to your computer and use it in GitHub Desktop.
Save rowanu/580936bd8bca503ed03ab0242fe9d896 to your computer and use it in GitHub Desktop.
All deprecated Lambda runtimes in an AWS account
aws lambda list-functions \
--output text \
--query 'Functions[?
Runtime==`dotnet5.0` ||
Runtime==`dotnet6` ||
Runtime==`dotnet7` ||
Runtime==`dotnetcore1.0` ||
Runtime==`dotnetcore2.0` ||
Runtime==`dotnetcore2.1` ||
Runtime==`dotnetcore3.1` ||
Runtime==`go1.x` ||
Runtime==`java8` ||
Runtime==`nodejs` ||
Runtime==`nodejs4.3` ||
Runtime==`nodejs4.3-edge` ||
Runtime==`nodejs6.10` ||
Runtime==`nodejs8.10` ||
Runtime==`nodejs10.x` ||
Runtime==`nodejs12.x` ||
Runtime==`nodejs14.x` ||
Runtime==`nodejs16.x` ||
Runtime==`nodejs18.x` ||
Runtime==`provided` ||
Runtime==`python2.7` ||
Runtime==`python3.6` ||
Runtime==`python3.7` ||
Runtime==`python3.8` ||
Runtime==`ruby2.5` ||
Runtime==`ruby2.7`
].[FunctionName,Runtime,LastModified,FunctionArn]' > all-deprecated-runtime-lambda-functions.tsv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment