Interface NumberCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NumberCondition.Builder,NumberCondition>,SdkBuilder<NumberCondition.Builder,NumberCondition>,SdkPojo
- Enclosing class:
- NumberCondition
public static interface NumberCondition.Builder extends SdkPojo, CopyableBuilder<NumberCondition.Builder,NumberCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumberCondition.BuildercomparisonType(String comparisonType)The type of comparison to be made when evaluating the number condition.NumberCondition.BuildercomparisonType(NumberComparisonType comparisonType)The type of comparison to be made when evaluating the number condition.NumberCondition.BuilderfieldName(String fieldName)The name of the field in the number condition.NumberCondition.BuildermaxValue(Integer maxValue)The maxValue to be used while evaluating the number condition.NumberCondition.BuilderminValue(Integer minValue)The minValue to be used while evaluating the number condition.-
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
-
fieldName
NumberCondition.Builder fieldName(String fieldName)
The name of the field in the number condition.
- Parameters:
fieldName- The name of the field in the number condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minValue
NumberCondition.Builder minValue(Integer minValue)
The minValue to be used while evaluating the number condition.
- Parameters:
minValue- The minValue to be used while evaluating the number condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxValue
NumberCondition.Builder maxValue(Integer maxValue)
The maxValue to be used while evaluating the number condition.
- Parameters:
maxValue- The maxValue to be used while evaluating the number condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comparisonType
NumberCondition.Builder comparisonType(String comparisonType)
The type of comparison to be made when evaluating the number condition.
- Parameters:
comparisonType- The type of comparison to be made when evaluating the number condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NumberComparisonType,NumberComparisonType
-
comparisonType
NumberCondition.Builder comparisonType(NumberComparisonType comparisonType)
The type of comparison to be made when evaluating the number condition.
- Parameters:
comparisonType- The type of comparison to be made when evaluating the number condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NumberComparisonType,NumberComparisonType
-
-