Interface ProbabilisticRuleValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProbabilisticRuleValue.Builder,ProbabilisticRuleValue>,SdkBuilder<ProbabilisticRuleValue.Builder,ProbabilisticRuleValue>,SdkPojo
- Enclosing class:
- ProbabilisticRuleValue
@Mutable @NotThreadSafe public static interface ProbabilisticRuleValue.Builder extends SdkPojo, CopyableBuilder<ProbabilisticRuleValue.Builder,ProbabilisticRuleValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProbabilisticRuleValue.BuilderactualSamplingPercentage(Double actualSamplingPercentage)Applied sampling percentage of traceIds.ProbabilisticRuleValue.BuilderdesiredSamplingPercentage(Double desiredSamplingPercentage)Configured sampling percentage of traceIds.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
desiredSamplingPercentage
ProbabilisticRuleValue.Builder desiredSamplingPercentage(Double desiredSamplingPercentage)
Configured sampling percentage of traceIds. Note that sampling can be subject to limits to ensure completeness of data.
- Parameters:
desiredSamplingPercentage- Configured sampling percentage of traceIds. Note that sampling can be subject to limits to ensure completeness of data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actualSamplingPercentage
ProbabilisticRuleValue.Builder actualSamplingPercentage(Double actualSamplingPercentage)
Applied sampling percentage of traceIds.
- Parameters:
actualSamplingPercentage- Applied sampling percentage of traceIds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-