Show / Hide Table of Contents

Interface CfnServiceLevelObjectivePropsMixin.IBurnRateConfigurationProperty

This object defines the length of the look-back window used to calculate one burn rate metric for this SLO.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ApplicationSignals
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnServiceLevelObjectivePropsMixin.IBurnRateConfigurationProperty
Syntax (vb)
Public Interface CfnServiceLevelObjectivePropsMixin.IBurnRateConfigurationProperty
Remarks

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-burnrateconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.ApplicationSignals;

             var burnRateConfigurationProperty = new BurnRateConfigurationProperty {
                 LookBackWindowMinutes = 123
             };

Synopsis

Properties

LookBackWindowMinutes

The number of minutes to use as the look-back window.

Properties

LookBackWindowMinutes

The number of minutes to use as the look-back window.

double? LookBackWindowMinutes { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-burnrateconfiguration.html#cfn-applicationsignals-servicelevelobjective-burnrateconfiguration-lookbackwindowminutes

Back to top Generated by DocFX