Interface CfnSecurityProfile.BehaviorCriteriaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfile.BehaviorCriteriaProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityProfile
@Stability(Stable)
public static interface CfnSecurityProfile.BehaviorCriteriaProperty
extends software.amazon.jsii.JsiiSerializable
The criteria by which the behavior is determined to be normal.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iot.*; BehaviorCriteriaProperty behaviorCriteriaProperty = BehaviorCriteriaProperty.builder() .comparisonOperator("comparisonOperator") .consecutiveDatapointsToAlarm(123) .consecutiveDatapointsToClear(123) .durationSeconds(123) .mlDetectionConfig(MachineLearningDetectionConfigProperty.builder() .confidenceLevel("confidenceLevel") .build()) .statisticalThreshold(StatisticalThresholdProperty.builder() .statistic("statistic") .build()) .value(MetricValueProperty.builder() .cidrs(List.of("cidrs")) .count("count") .number(123) .numbers(List.of(123)) .ports(List.of(123)) .strings(List.of("strings")) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSecurityProfile.BehaviorCriteriaProperty
static final class
An implementation forCfnSecurityProfile.BehaviorCriteriaProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The operator that relates the thing measured (metric
) to the criteria (containing avalue
orstatisticalThreshold
).default Number
If a device is in violation of the behavior for the specified number of consecutive datapoints, an alarm occurs.default Number
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.default Number
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
).default Object
The confidence level of the detection model.default Object
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.default Object
getValue()
The value to be compared with themetric
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComparisonOperator
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
- See Also:
-
getConsecutiveDatapointsToAlarm
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.
- See Also:
-
getConsecutiveDatapointsToClear
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.
- See Also:
-
getDurationSeconds
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.- See Also:
-
getMlDetectionConfig
The confidence level of the detection model.- See Also:
-
getStatisticalThreshold
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.- See Also:
-
getValue
The value to be compared with themetric
.- See Also:
-
builder
-