Interface CfnAlarmModelPropsMixin.SimpleRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlarmModelPropsMixin.SimpleRuleProperty.Jsii$Proxy
- Enclosing class:
CfnAlarmModelPropsMixin
@Stability(Stable)
public static interface CfnAlarmModelPropsMixin.SimpleRuleProperty
extends software.amazon.jsii.JsiiSerializable
A rule that compares an input property value to a threshold value with a comparison operator.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotevents.*;
SimpleRuleProperty simpleRuleProperty = SimpleRuleProperty.builder()
.comparisonOperator("comparisonOperator")
.inputProperty("inputProperty")
.threshold("threshold")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlarmModelPropsMixin.SimpleRulePropertystatic final classAn implementation forCfnAlarmModelPropsMixin.SimpleRuleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComparisonOperator
The comparison operator.- See Also:
-
getInputProperty
The value on the left side of the comparison operator.You can specify an AWS IoT Events input attribute as an input property.
- See Also:
-
getThreshold
The value on the right side of the comparison operator.You can enter a number or specify an AWS IoT Events input attribute.
- See Also:
-
builder
-