Skip to content

Commit e2eaf5a

Browse files
author
Eugene Cheung
authored
chore: fix doc references to createdAlarms (#103)
1 parent e005302 commit e2eaf5a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ public createCompositeAlarmUsingDisambiguator(alarmDisambiguator: string, props?
963963
Finds a subset of created alarms that are marked by a specific disambiguator and creates a composite alarm.
964964

965965
This composite alarm is created with an 'OR' condition, so it triggers with any child alarm.
966-
NOTE: This composite alarm is not added among other alarms, so it is not returned by getCreatedAlarms() calls.
966+
NOTE: This composite alarm is not added among other alarms, so it is not returned by createdAlarms() calls.
967967

968968
###### `alarmDisambiguator`<sup>Required</sup> <a name="alarmDisambiguator" id="cdk-monitoring-constructs.MonitoringFacade.createCompositeAlarmUsingDisambiguator.parameter.alarmDisambiguator"></a>
969969

@@ -990,7 +990,7 @@ public createCompositeAlarmUsingTag(customTag: string, props?: AddCompositeAlarm
990990
Finds a subset of created alarms that are marked by a specific custom tag and creates a composite alarm.
991991

992992
This composite alarm is created with an 'OR' condition, so it triggers with any child alarm.
993-
NOTE: This composite alarm is not added among other alarms, so it is not returned by getCreatedAlarms() calls.
993+
NOTE: This composite alarm is not added among other alarms, so it is not returned by createdAlarms() calls.
994994

995995
###### `customTag`<sup>Required</sup> <a name="customTag" id="cdk-monitoring-constructs.MonitoringFacade.createCompositeAlarmUsingTag.parameter.customTag"></a>
996996

lib/facade/MonitoringFacade.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export class MonitoringFacade extends MonitoringScope {
210210
/**
211211
* Finds a subset of created alarms that are marked by a specific custom tag and creates a composite alarm.
212212
* This composite alarm is created with an 'OR' condition, so it triggers with any child alarm.
213-
* NOTE: This composite alarm is not added among other alarms, so it is not returned by getCreatedAlarms() calls.
213+
* NOTE: This composite alarm is not added among other alarms, so it is not returned by createdAlarms() calls.
214214
*
215215
* @param customTag tag to filter alarms by
216216
* @param props customization options
@@ -234,7 +234,7 @@ export class MonitoringFacade extends MonitoringScope {
234234
/**
235235
* Finds a subset of created alarms that are marked by a specific disambiguator and creates a composite alarm.
236236
* This composite alarm is created with an 'OR' condition, so it triggers with any child alarm.
237-
* NOTE: This composite alarm is not added among other alarms, so it is not returned by getCreatedAlarms() calls.
237+
* NOTE: This composite alarm is not added among other alarms, so it is not returned by createdAlarms() calls.
238238
*
239239
* @param alarmDisambiguator disambiguator to filter alarms by
240240
* @param props customization options

0 commit comments

Comments
 (0)