8000 Add Cloudwatch AnomalyDetector resource by oussemos · Pull Request #1461 · cloudtools/troposphere · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add Cloudwatch AnomalyDetector resource #1461

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions troposphere/cloudwatch.py
5B26
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,29 @@ def validate(self):
if name in self.properties:
dashboard_body = self.properties.get(name)
self.properties[name] = json_checker(dashboard_body)


class Range(AWSProperty):
props = {
'EndTime': (basestring, True),
'StartTime': (basestring, True),
}


class Configuration(AWSProperty):
props = {
'ExcludedTimeRanges': ([Range], False),
'MetricTimeZone': (basestring, False),
}


class AnomalyDetector(AWSObject):
resource_type = "AWS::CloudWatch::AnomalyDetector"

props = {
'Configuration': (Configuration, False),
'Dimensions': ([MetricDimension], False),
'MetricName': (basestring, True),
'Namespace': (basestring, True),
'Stat': (basestring, True)
}
0