interface MachineLearningDetectionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnSecurityProfilePropsMixin.MachineLearningDetectionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnSecurityProfilePropsMixin_MachineLearningDetectionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnSecurityProfilePropsMixin.MachineLearningDetectionConfigProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnSecurityProfilePropsMixin.MachineLearningDetectionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnSecurityProfilePropsMixin » MachineLearningDetectionConfigProperty |
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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const machineLearningDetectionConfigProperty: iot_mixins.CfnSecurityProfilePropsMixin.MachineLearningDetectionConfigProperty = {
confidenceLevel: 'confidenceLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| confidence | string | The model confidence level. |
confidenceLevel?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript