Added dashboard methods + tests

This commit is contained in:
Terry Cain 2017-09-22 16:38:20 +01:00
commit c965fdd47f
4 changed files with 269 additions and 25 deletions

5
moto/cloudwatch/utils.py Normal file
View file

@ -0,0 +1,5 @@
from __future__ import unicode_literals
def make_arn_for_dashboard(account_id, name):
return "arn:aws:cloudwatch::{0}dashboard/{1}".format(account_id, name)