Class: Aws::IoTEventsData::Types::SimpleRuleEvaluation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ioteventsdata/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

Instance Attribute Details

#input_property_valueString

The value of the input property, on the left side of the comparison operator.

Returns:

  • (String)


1120
1121
1122
1123
1124
1125
1126
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 1120

class SimpleRuleEvaluation < Struct.new(
  :input_property_value,
  :operator,
  :threshold_value)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

The comparison operator.

Returns:

  • (String)


1120
1121
1122
1123
1124
1125
1126
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 1120

class SimpleRuleEvaluation < Struct.new(
  :input_property_value,
  :operator,
  :threshold_value)
  SENSITIVE = []
  include Aws::Structure
end

#threshold_valueString

The threshold value, on the right side of the comparison operator.

Returns:

  • (String)


1120
1121
1122
1123
1124
1125
1126
# File 'gems/aws-sdk-ioteventsdata/lib/aws-sdk-ioteventsdata/types.rb', line 1120

class SimpleRuleEvaluation < Struct.new(
  :input_property_value,
  :operator,
  :threshold_value)
  SENSITIVE = []
  include Aws::Structure
end