We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
3.1.2
Consider the MonitoringFacade below with default action and disambiguator action:
monitor = new MonitoringFacade(this, "Monitor", { ...props, alarmDefaults: { action: defaultAction(), disambiguatorAction: { Critical: criticalAction(), }, }, }); monitor.createCompositeAlarmUsingTag(ROLLBACK_TAG, { disambiguator: "Critical", });
The composite alarm created should be using criticalAction().
criticalAction()
The composite alarm created is using defaultAction()
defaultAction()
The 🐛 appears to be the way action is calculated:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
3.1.2
Steps and/or minimal code example to reproduce
Consider the MonitoringFacade below with default action and disambiguator action:
Expected behavior
The composite alarm created should be using
criticalAction()
.Actual behavior
The composite alarm created is using
defaultAction()
Other details
The 🐛 appears to be the way action is calculated:
The text was updated successfully, but these errors were encountered: