more shuffling
This commit is contained in:
29
modules/aws/cloudwatch.py
Normal file
29
modules/aws/cloudwatch.py
Normal file
@@ -0,0 +1,29 @@
|
||||
'''
|
||||
example calling cloudwatch functions
|
||||
decribe alarms, describe alarm history, list metrics
|
||||
'''
|
||||
from libs.cloudwatch import *
|
||||
|
||||
|
||||
def module_cloudwatch_describe_alarms():
|
||||
'''
|
||||
Describe CloudWatch Alarms
|
||||
python3 weirdAAL.py -m cloudwatch_describe_alarms -t demo
|
||||
'''
|
||||
cloudwatch_describe_alarms()
|
||||
|
||||
|
||||
def module_cloudwatch_describe_alarm_history():
|
||||
'''
|
||||
Describe CloudWatch Alarm History
|
||||
python3 weirdAAL.py -m cloudwatch_describe_alarm_history -t demo
|
||||
'''
|
||||
cloudwatch_describe_alarm_history()
|
||||
|
||||
|
||||
def module_cloudwatch_list_metrics():
|
||||
'''
|
||||
CloudWatch List Metrics
|
||||
python3 weirdAAL.py -m cloudwatch_list_metrics -t demo
|
||||
'''
|
||||
cloudwatch_list_metrics()
|
||||
Reference in New Issue
Block a user