Interface CfnAlarmModel.SimpleRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAlarmModel.SimpleRuleProperty.Jsii$Proxy
Enclosing class:
CfnAlarmModel

@Stability(Stable) public static interface CfnAlarmModel.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.services.iotevents.*;
 SimpleRuleProperty simpleRuleProperty = SimpleRuleProperty.builder()
         .comparisonOperator("comparisonOperator")
         .inputProperty("inputProperty")
         .threshold("threshold")
         .build();
 

See Also: