Reputation: 15032
How is it possible to get a list of AWS functions deployed by my IAM. The problem here is that our organization has over 4000 lambda functions so I don't need list of lambda functions in our account, rather ones I've created.
Upvotes: 1
Views: 141
Reputation: 626
You're using a wrong concept to group your lambdas.... I suggest you use a tag and then list all the lambdas, query the tags and filter by that:
How To Filter Out Lambdas with the AWS Cli with tags?
Upvotes: 0