Posts

Showing posts from February, 2020

How to get the list of lambda functions filtered by runtime (or any other attrib) using aws-cli

Pretty easy. For example, if I want to get the list of lambda functions that use the nodejs8.10 runtime, I can do something like: aws lambda list-functions --query 'Functions[?Runtime==`nodejs8.10`].[FunctionName]' --output text | tr '\r\n' ' '