Class: Aws::IoTEventsData::Types::SimpleRuleEvaluation
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTEventsData::Types::SimpleRuleEvaluation
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ioteventsdata/types.rb
 
Overview
Information needed to compare two values with a comparison operator.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #input_property_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the input property, on the left side of the comparison operator.
 - 
  
    
      #operator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The comparison operator.
 - 
  
    
      #threshold_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The threshold value, on the right side of the comparison operator.
 
Instance Attribute Details
#input_property_value ⇒ String
The value of the input property, on the left side of the comparison operator.
      1120 1121 1122 1123 1124 1125 1126  | 
    
      # File 'lib/aws-sdk-ioteventsdata/types.rb', line 1120 class SimpleRuleEvaluation < Struct.new( :input_property_value, :operator, :threshold_value) SENSITIVE = [] include Aws::Structure end  | 
  
#operator ⇒ String
The comparison operator.
      1120 1121 1122 1123 1124 1125 1126  | 
    
      # File 'lib/aws-sdk-ioteventsdata/types.rb', line 1120 class SimpleRuleEvaluation < Struct.new( :input_property_value, :operator, :threshold_value) SENSITIVE = [] include Aws::Structure end  | 
  
#threshold_value ⇒ String
The threshold value, on the right side of the comparison operator.
      1120 1121 1122 1123 1124 1125 1126  | 
    
      # File 'lib/aws-sdk-ioteventsdata/types.rb', line 1120 class SimpleRuleEvaluation < Struct.new( :input_property_value, :operator, :threshold_value) SENSITIVE = [] include Aws::Structure end  |