-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlist_lambda_functions.py
51 lines (41 loc) · 1.77 KB
/
list_lambda_functions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
1. List all functions' ARN and Runtime, or
2. List all lafunctionsyers' details if using --detailed, or
3. Lookup details of a function by its name
"""
import json
import logging
import click
from helper.aws import AwsApiHelper
logging.getLogger().setLevel(logging.INFO)
class Helper(AwsApiHelper):
def __init__(self, detailed):
super().__init__()
self._detailed = detailed
def process_request(self, session, account_id, region, kwargs):
function_name = kwargs.get("FunctionName", "").lower()
client = session.client("lambda", region_name=region)
for item in self.paginate(client, "list_functions", kwargs):
if self._detailed:
print(json.dumps(item, indent=2))
else:
print(", ".join([
item.get("FunctionArn"),
account_id,
self.profile_name,
region,
item.get("FunctionName"),
item.get("Runtime"),
]))
if function_name and function_name == item.get("FunctionName", "").lower():
return True
@click.command()
@click.option("--detailed", "-d", is_flag=True, default=False, help="Show details instead of just layer ARNs.")
@click.option("--name", "-n", help="Lambda function name. List all functions if not specified.")
@click.option("--profile", "-p", help="AWS profile name. Use profiles in ~/.aws if not specified.")
@click.option("--region", "-r", default="ap-southeast-2", show_default=True, help="AWS Region. Use 'all' for all regions.")
def main(detailed, name, profile, region):
kwargs = {"FunctionName": name} if name else {}
Helper(detailed).start(profile, region, "lambda", kwargs)
if __name__ == "__main__":
main()