Class: Aws::IoT::Types::BehaviorCriteria

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

The criteria by which the behavior is determined to be normal.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#comparison_operatorString

The operator that relates the thing measured (‘metric`) to the criteria (containing a `value` or `statisticalThreshold`). Valid operators include:

  • ‘string-list`: `in-set` and `not-in-set`

  • ‘number-list`: `in-set` and `not-in-set`

  • ‘ip-address-list`: `in-cidr-set` and `not-in-cidr-set`

  • ‘number`: `less-than`, `less-than-equals`, `greater-than`, and `greater-than-equals`

Returns:

  • (String)


1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/aws-sdk-iot/types.rb', line 1457

class BehaviorCriteria < Struct.new(
  :comparison_operator,
  :value,
  :duration_seconds,
  :consecutive_datapoints_to_alarm,
  :consecutive_datapoints_to_clear,
  :statistical_threshold,
  :ml_detection_config)
  SENSITIVE = []
  include Aws::Structure
end

#consecutive_datapoints_to_alarmInteger

If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs. If not specified, the default is 1.

Returns:

  • (Integer)


1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/aws-sdk-iot/types.rb', line 1457

class BehaviorCriteria < Struct.new(
  :comparison_operator,
  :value,
  :duration_seconds,
  :consecutive_datapoints_to_alarm,
  :consecutive_datapoints_to_clear,
  :statistical_threshold,
  :ml_detection_config)
  SENSITIVE = []
  include Aws::Structure
end

#consecutive_datapoints_to_clearInteger

If an alarm has occurred and the offending device is no longer in violation of the behavior for the specified number of consecutive datapoints, the alarm is cleared. If not specified, the default is 1.

Returns:

  • (Integer)


1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/aws-sdk-iot/types.rb', line 1457

class BehaviorCriteria < Struct.new(
  :comparison_operator,
  :value,
  :duration_seconds,
  :consecutive_datapoints_to_alarm,
  :consecutive_datapoints_to_clear,
  :statistical_threshold,
  :ml_detection_config)
  SENSITIVE = []
  include Aws::Structure
end

#duration_secondsInteger

Use this to specify the time duration over which the behavior is evaluated, for those criteria that have a time dimension (for example, ‘NUM_MESSAGES_SENT`). For a `statisticalThreshhold` metric comparison, measurements from all devices are accumulated over this time duration before being used to calculate percentiles, and later, measurements from an individual device are also accumulated over this time duration before being given a percentile rank. Cannot be used with list-based metric datatypes.

Returns:

  • (Integer)


1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/aws-sdk-iot/types.rb', line 1457

class BehaviorCriteria < Struct.new(
  :comparison_operator,
  :value,
  :duration_seconds,
  :consecutive_datapoints_to_alarm,
  :consecutive_datapoints_to_clear,
  :statistical_threshold,
  :ml_detection_config)
  SENSITIVE = []
  include Aws::Structure
end

#ml_detection_configTypes::MachineLearningDetectionConfig

The configuration of an ML Detect



1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/aws-sdk-iot/types.rb', line 1457

class BehaviorCriteria < Struct.new(
  :comparison_operator,
  :value,
  :duration_seconds,
  :consecutive_datapoints_to_alarm,
  :consecutive_datapoints_to_clear,
  :statistical_threshold,
  :ml_detection_config)
  SENSITIVE = []
  include Aws::Structure
end

#statistical_thresholdTypes::StatisticalThreshold

A statistical ranking (percentile)that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.



1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/aws-sdk-iot/types.rb', line 1457

class BehaviorCriteria < Struct.new(
  :comparison_operator,
  :value,
  :duration_seconds,
  :consecutive_datapoints_to_alarm,
  :consecutive_datapoints_to_clear,
  :statistical_threshold,
  :ml_detection_config)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::MetricValue

The value to be compared with the ‘metric`.

Returns:



1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
# File 'lib/aws-sdk-iot/types.rb', line 1457

class BehaviorCriteria < Struct.new(
  :comparison_operator,
  :value,
  :duration_seconds,
  :consecutive_datapoints_to_alarm,
  :consecutive_datapoints_to_clear,
  :statistical_threshold,
  :ml_detection_config)
  SENSITIVE = []
  include Aws::Structure
end