Interface CfnSecurityProfile.StatisticalThresholdProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfile.StatisticalThresholdProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityProfile
@Stability(Stable)
public static interface CfnSecurityProfile.StatisticalThresholdProperty
extends software.amazon.jsii.JsiiSerializable
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.
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.*;
StatisticalThresholdProperty statisticalThresholdProperty = StatisticalThresholdProperty.builder()
.statistic("statistic")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityProfile.StatisticalThresholdPropertystatic final classAn implementation forCfnSecurityProfile.StatisticalThresholdProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatistic
The percentile that resolves to a threshold value by which compliance with a behavior is determined.Metrics are collected over the specified period (
durationSeconds) from all reporting devices in your account and statistical ranks are calculated. Then, the measurements from a device are collected over the same period. If the accumulated measurements from the device fall above or below (comparisonOperator) the value associated with the percentile specified, then the device is considered to be in compliance with the behavior, otherwise a violation occurs.- See Also:
-
builder
-