Class: Aws::IoTEvents::Types::SimpleRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::SimpleRule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
A rule that compares an input property value to a threshold value with a comparison operator.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_operator ⇒ String
The comparison operator.
-
#input_property ⇒ String
The value on the left side of the comparison operator.
-
#threshold ⇒ String
The value on the right side of the comparison operator.
Instance Attribute Details
#comparison_operator ⇒ String
The comparison operator.
2808 2809 2810 2811 2812 2813 2814 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2808 class SimpleRule < Struct.new( :input_property, :comparison_operator, :threshold) SENSITIVE = [] include Aws::Structure end |
#input_property ⇒ String
The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.
2808 2809 2810 2811 2812 2813 2814 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2808 class SimpleRule < Struct.new( :input_property, :comparison_operator, :threshold) SENSITIVE = [] include Aws::Structure end |
#threshold ⇒ String
The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.
2808 2809 2810 2811 2812 2813 2814 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2808 class SimpleRule < Struct.new( :input_property, :comparison_operator, :threshold) SENSITIVE = [] include Aws::Structure end |