Interface CfnSamplingRule.SamplingRateBoostProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSamplingRule.SamplingRateBoostProperty.Jsii$Proxy
- Enclosing class:
CfnSamplingRule
@Stability(Stable)
public static interface CfnSamplingRule.SamplingRateBoostProperty
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.services.xray.*;
SamplingRateBoostProperty samplingRateBoostProperty = SamplingRateBoostProperty.builder()
.cooldownWindowMinutes(123)
.maxRate(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSamplingRule.SamplingRateBoostPropertystatic final classAn implementation forCfnSamplingRule.SamplingRateBoostProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Time window (in minutes) in which only one sampling rate boost can be triggered.The maximum sampling rate X-Ray will apply when it detects anomalies.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCooldownWindowMinutes
Time window (in minutes) in which only one sampling rate boost can be triggered.After a boost occurs, no further boosts are allowed until the next window.
- See Also:
-
getMaxRate
The maximum sampling rate X-Ray will apply when it detects anomalies.X-Ray determines the appropriate rate between your baseline and the maximum, depending on anomaly activity.
- See Also:
-
builder
-