Interface SimpleRuleEvaluation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SimpleRuleEvaluation.Builder,SimpleRuleEvaluation>,SdkBuilder<SimpleRuleEvaluation.Builder,SimpleRuleEvaluation>,SdkPojo
- Enclosing class:
- SimpleRuleEvaluation
public static interface SimpleRuleEvaluation.Builder extends SdkPojo, CopyableBuilder<SimpleRuleEvaluation.Builder,SimpleRuleEvaluation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimpleRuleEvaluation.BuilderinputPropertyValue(String inputPropertyValue)The value of the input property, on the left side of the comparison operator.SimpleRuleEvaluation.Builderoperator(String operator)The comparison operator.SimpleRuleEvaluation.Builderoperator(ComparisonOperator operator)The comparison operator.SimpleRuleEvaluation.BuilderthresholdValue(String thresholdValue)The threshold value, on the right side of the comparison operator.-
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
-
inputPropertyValue
SimpleRuleEvaluation.Builder inputPropertyValue(String inputPropertyValue)
The value of the input property, on the left side of the comparison operator.
- Parameters:
inputPropertyValue- The value of the input property, on the left side of the comparison operator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
SimpleRuleEvaluation.Builder operator(String operator)
The comparison operator.
- Parameters:
operator- The comparison operator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator,ComparisonOperator
-
operator
SimpleRuleEvaluation.Builder operator(ComparisonOperator operator)
The comparison operator.
- Parameters:
operator- The comparison operator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator,ComparisonOperator
-
thresholdValue
SimpleRuleEvaluation.Builder thresholdValue(String thresholdValue)
The threshold value, on the right side of the comparison operator.
- Parameters:
thresholdValue- The threshold value, on the right side of the comparison operator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-