moto/moto/cloudwatch/utils.py

6 lines
163 B
Python
Raw Normal View History

2017-09-22 16:38:20 +01:00
from __future__ import unicode_literals
def make_arn_for_dashboard(account_id, name):
return "arn:aws:cloudwatch::{0}dashboard/{1}".format(account_id, name)