Interface CfnSecurityProfile.MachineLearningDetectionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfile.MachineLearningDetectionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityProfile
@Stability(Stable)
public static interface CfnSecurityProfile.MachineLearningDetectionConfigProperty
extends software.amazon.jsii.JsiiSerializable
The
MachineLearningDetectionConfig
property type controls confidence of the machine learning model.
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.*; MachineLearningDetectionConfigProperty machineLearningDetectionConfigProperty = MachineLearningDetectionConfigProperty.builder() .confidenceLevel("confidenceLevel") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnSecurityProfile.MachineLearningDetectionConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfidenceLevel
The model confidence level.There are three levels of confidence,
"high"
,"medium"
, and"low"
.The higher the confidence level, the lower the sensitivity, and the lower the alarm frequency will be.
- See Also:
-
builder
@Stability(Stable) static CfnSecurityProfile.MachineLearningDetectionConfigProperty.Builder builder()
-