Interface SimpleRule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SimpleRule.Builder,SimpleRule>,SdkBuilder<SimpleRule.Builder,SimpleRule>,SdkPojo
- Enclosing class:
- SimpleRule
public static interface SimpleRule.Builder extends SdkPojo, CopyableBuilder<SimpleRule.Builder,SimpleRule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimpleRule.BuildercomparisonOperator(String comparisonOperator)The comparison operator.SimpleRule.BuildercomparisonOperator(ComparisonOperator comparisonOperator)The comparison operator.SimpleRule.BuilderinputProperty(String inputProperty)The value on the left side of the comparison operator.SimpleRule.Builderthreshold(String threshold)The 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
-
inputProperty
SimpleRule.Builder inputProperty(String inputProperty)
The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.
- Parameters:
inputProperty- The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comparisonOperator
SimpleRule.Builder comparisonOperator(String comparisonOperator)
The comparison operator.
- Parameters:
comparisonOperator- The comparison operator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator,ComparisonOperator
-
comparisonOperator
SimpleRule.Builder comparisonOperator(ComparisonOperator comparisonOperator)
The comparison operator.
- Parameters:
comparisonOperator- The comparison operator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator,ComparisonOperator
-
threshold
SimpleRule.Builder threshold(String threshold)
The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.
- Parameters:
threshold- The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-