AWS::IoT::SecurityProfile BehaviorCriteria
The criteria by which the behavior is determined to be normal.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "ComparisonOperator" :
String
, "ConsecutiveDatapointsToAlarm" :Integer
, "ConsecutiveDatapointsToClear" :Integer
, "DurationSeconds" :Integer
, "MlDetectionConfig" :MachineLearningDetectionConfig
, "StatisticalThreshold" :StatisticalThreshold
, "Value" :MetricValue
}
YAML
ComparisonOperator:
String
ConsecutiveDatapointsToAlarm:Integer
ConsecutiveDatapointsToClear:Integer
DurationSeconds:Integer
MlDetectionConfig:MachineLearningDetectionConfig
StatisticalThreshold:StatisticalThreshold
Value:MetricValue
Properties
ComparisonOperator
-
The operator that relates the thing measured (
metric
) to the criteria (containing avalue
orstatisticalThreshold
). Valid operators include:-
string-list
:in-set
andnot-in-set
-
number-list
:in-set
andnot-in-set
-
ip-address-list
:in-cidr-set
andnot-in-cidr-set
-
number
:less-than
,less-than-equals
,greater-than
, andgreater-than-equals
Required: No
Type: String
Allowed values:
less-than | less-than-equals | greater-than | greater-than-equals | in-cidr-set | not-in-cidr-set | in-port-set | not-in-port-set | in-set | not-in-set
Update requires: No interruption
-
ConsecutiveDatapointsToAlarm
-
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.
Required: No
Type: Integer
Minimum:
1
Maximum:
10
Update requires: No interruption
ConsecutiveDatapointsToClear
-
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.
Required: No
Type: Integer
Minimum:
1
Maximum:
10
Update requires: No interruption
DurationSeconds
-
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 astatisticalThreshhold
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.Required: No
Type: Integer
Update requires: No interruption
MlDetectionConfig
-
The confidence level of the detection model.
Required: No
Type: MachineLearningDetectionConfig
Update requires: No interruption
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.
Required: No
Type: StatisticalThreshold
Update requires: No interruption
Value
-
The value to be compared with the
metric
.Required: No
Type: MetricValue
Update requires: No interruption