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

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


2809
2810
2811
2812
2813
2814
2815
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2809

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)


2809
2810
2811
2812
2813
2814
2815
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2809

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)


2809
2810
2811
2812
2813
2814
2815
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2809

class SimpleRule < Struct.new(
  :input_property,
  :comparison_operator,
  :threshold)
  SENSITIVE = []
  include Aws::Structure
end