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.Buildertype(String type)The type of a threshold.Threshold.Buildertype(ThresholdType type)The type of a threshold.Threshold.Builderunit(String unit)Unit of threshold value.Threshold.Builderunit(ThresholdUnit unit)Unit of threshold value.Threshold.Buildervalue(Double value)The value of a threshold.-
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
-
value
Threshold.Builder value(Double value)
The value of a threshold.
- Parameters:
value- The value of a threshold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Threshold.Builder type(String type)
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
- Parameters:
type- The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThresholdType,ThresholdType
-
type
Threshold.Builder type(ThresholdType type)
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
- Parameters:
type- The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThresholdType,ThresholdType
-
unit
Threshold.Builder unit(String unit)
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
- Parameters:
unit- Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThresholdUnit,ThresholdUnit
-
unit
Threshold.Builder unit(ThresholdUnit unit)
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
- Parameters:
unit- Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThresholdUnit,ThresholdUnit
-
-