deleteAlarms method
Deletes the specified alarms. You can delete up to 100 alarms in one operation. However, this total can include no more than one composite alarm. For example, you could delete 99 metric alarms and one composite alarms with one operation, but you can't delete two composite alarms with one operation.
In the event of an error, no alarms are deleted.
To get out of such a situation, you must break the cycle by changing the
rule of one of the composite alarms in the cycle to remove a dependency
that creates the cycle. The simplest change to make to break a cycle is to
change the AlarmRule
of one of the alarms to
False
.
Additionally, the evaluation of composite alarms stops if CloudWatch detects a cycle in the evaluation path.
May throw ResourceNotFound.
Parameter alarmNames
:
The alarms to be deleted.
Implementation
Future<void> deleteAlarms({
required List<String> alarmNames,
}) async {
ArgumentError.checkNotNull(alarmNames, 'alarmNames');
final $request = <String, dynamic>{};
$request['AlarmNames'] = alarmNames;
await _protocol.send(
$request,
action: 'DeleteAlarms',
version: '2010-08-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shape: shapes['DeleteAlarmsInput'],
shapes: shapes,
);
}