Interface Threshold.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Threshold.Builder,Threshold>,SdkBuilder<Threshold.Builder,Threshold>,SdkPojo
- Enclosing class:
- Threshold
public static interface Threshold.Builder extends SdkPojo, CopyableBuilder<Threshold.Builder,Threshold>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Threshold.Buildercomparison(String comparison)The type of comparison.Threshold.Buildercomparison(Comparison comparison)The type of comparison.Threshold.BuilderthresholdValue(Double thresholdValue)The threshold value to compare.-
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, sdkFields
-
-
-
-
Method Detail
-
comparison
Threshold.Builder comparison(String comparison)
The type of comparison. Only "less than" (LT) comparisons are supported.
- Parameters:
comparison- The type of comparison. Only "less than" (LT) comparisons are supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Comparison,Comparison
-
comparison
Threshold.Builder comparison(Comparison comparison)
The type of comparison. Only "less than" (LT) comparisons are supported.
- Parameters:
comparison- The type of comparison. Only "less than" (LT) comparisons are supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Comparison,Comparison
-
thresholdValue
Threshold.Builder thresholdValue(Double thresholdValue)
The threshold value to compare.
- Parameters:
thresholdValue- The threshold value to compare.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-