Created
February 14, 2019 10:46
-
-
Save particleflux/fa22a88e0c40fc5999475d058f420e69 to your computer and use it in GitHub Desktop.
CloudTrail Route53 Changes filter for creating an alarm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
$.eventSource = "route53.amazonaws.com" | |
&& ( | |
($.eventName = Create*) | |
|| ($.eventName = Delete*) | |
|| ($.eventName = Update*) | |
|| ($.eventName = Disable*) | |
|| ($.eventName = Enable*) | |
|| ($.eventName = RegisterDomain) | |
|| ($.eventName = TransferDomain) | |
|| ($.eventName = Change*) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment