Interface CfnServiceLevelObjectivePropsMixin.BurnRateConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceLevelObjectivePropsMixin.BurnRateConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnServiceLevelObjectivePropsMixin
@Stability(Stable)
public static interface CfnServiceLevelObjectivePropsMixin.BurnRateConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
This object defines the length of the look-back window used to calculate one burn rate metric for this SLO.
The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO. A burn rate of exactly 1 indicates that the SLO goal will be met exactly.
For example, if you specify 60 as the number of minutes in the look-back window, the burn rate is calculated as the following:
burn rate = error rate over the look-back window / (100% - attainment goal percentage)
For more information about burn rates, see Calculate burn rates .
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.applicationsignals.*;
BurnRateConfigurationProperty burnRateConfigurationProperty = BurnRateConfigurationProperty.builder()
.lookBackWindowMinutes(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnServiceLevelObjectivePropsMixin.BurnRateConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLookBackWindowMinutes
The number of minutes to use as the look-back window.- See Also:
-
builder
@Stability(Stable) static CfnServiceLevelObjectivePropsMixin.BurnRateConfigurationProperty.Builder builder()
-