more shuffling

This commit is contained in:
cktricky
2018-09-13 20:09:26 -04:00
committed by Kenneth Toler
parent 34d22d77be
commit 8e0ded67d3
30 changed files with 1 additions and 1 deletions

29
modules/aws/cloudwatch.py Normal file
View 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()