Class: Aws::IoTEvents::Types::SimpleRule

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#comparison_operatorString

The comparison operator.

Returns:

  • (String)


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_propertyString

The value on the left side of the comparison operator. You can specify an AWS IoT Events input attribute as an input property.

Returns:

  • (String)


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

#thresholdString

The value on the right side of the comparison operator. You can enter a number or specify an AWS IoT Events input attribute.

Returns:

  • (String)


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