moto/moto/cloudwatch/utils.py
2017-09-22 16:38:20 +01:00

6 lines
163 B
Python

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