Interface DevOpsGuruNewAnomalyAssociation.AlarmCondition

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DevOpsGuruNewAnomalyAssociation.AlarmCondition.Jsii$Proxy
Enclosing class:
DevOpsGuruNewAnomalyAssociation

@Stability(Experimental) public static interface DevOpsGuruNewAnomalyAssociation.AlarmCondition extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for AlarmCondition.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.devopsguru.events.*;
 AlarmCondition alarmCondition = AlarmCondition.builder()
         .detectionBand(List.of("detectionBand"))
         .referenceValue(ReferenceValue.builder()
                 .comparisonOperator(List.of("comparisonOperator"))
                 .datapointsToAlarm(List.of("datapointsToAlarm"))
                 .evaluationPeriod(List.of("evaluationPeriod"))
                 .threshold(List.of("threshold"))
                 .build())
         .build();