Interface CfnLogAlarm.WarmUpConfigurationProperty

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

@Stability(Stable) public static interface CfnLogAlarm.WarmUpConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The warm-up configuration for an alarm.

A warm-up period delays alarm evaluation after you create or update the alarm. This reduces alarm noise from missing data while a new resource or service starts up. During the warm-up period, the alarm stays in INSUFFICIENT_DATA and doesn't perform alarm actions.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudwatch.*;
 WarmUpConfigurationProperty warmUpConfigurationProperty = WarmUpConfigurationProperty.builder()
         .onlyStartEvaluatingAfterWarmUpPeriodEnds(false)
         .warmUpPeriodDurationInMinutes(123)
         .build();
 

See Also: