Interface CfnAlarmPropsMixin.WarmUpConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlarmPropsMixin.WarmUpConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAlarmPropsMixin
@Stability(Stable)
public static interface CfnAlarmPropsMixin.WarmUpConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.*;
WarmUpConfigurationProperty warmUpConfigurationProperty = WarmUpConfigurationProperty.builder()
.onlyStartEvaluatingAfterWarmUpPeriodEnds(false)
.warmUpPeriodDurationInMinutes(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlarmPropsMixin.WarmUpConfigurationPropertystatic final classAn implementation forCfnAlarmPropsMixin.WarmUpConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOnlyStartEvaluatingAfterWarmUpPeriodEnds
Specifies whether the alarm waits for the full warm-up period before it starts evaluating.If true, the alarm waits the entire WarmUpPeriodDurationInMinutes before it starts evaluating, even if metric data arrives earlier. If false, the alarm ends the warm-up period early and starts evaluating as soon as it has enough metric data to fill its evaluation window. This is the default behavior.
Returns union: either
BooleanorIResolvable- See Also:
-
getWarmUpPeriodDurationInMinutes
The length of the warm-up period, in minutes.For this duration after you create or update the alarm, the alarm stays in INSUFFICIENT_DATA and doesn't perform alarm actions. Valid values range from 1 to 2880 minutes (2 days). You can change this value while the alarm is still in its warm-up period. Changes have no effect after the warm-up period ends.
- See Also:
-
builder
-