Values.SimpleRuleSourceA rule that compares an input property value to a threshold value with a comparison operator.
type nonrec t = {inputProperty : InputProperty.t;The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.
*)comparisonOperator : ComparisonOperator.t;The comparison operator.
*)threshold : Threshold.t;The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.
*)}val make :
inputProperty:InputProperty.t ->
comparisonOperator:ComparisonOperator.t ->
threshold:Threshold.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of InputProperty.t ]) list ]