Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 122e9d3

Browse files
committed
Add AWS::CloudWatch::Dashboard (Fixes cloudtools#763)
1 parent 3a3004a commit 122e9d3

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

troposphere/cloudwatch.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,12 @@ def validate(self):
4444
'Statistic',
4545
]
4646
exactly_one(self.__class__.__name__, self.properties, conds)
47+
48+
49+
class Dashboard(AWSObject):
50+
resource_type = "AWS::CloudWatch::Dashboard"
51+
52+
props = {
53+
'DashboardBody': (basestring, False),
54+
'DashboardName': (basestring, False),
55+
}

0 commit comments

Comments
 (0)