interface AnomalyDetectionComputationModelConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnComputationModelPropsMixin.AnomalyDetectionComputationModelConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnComputationModelPropsMixin_AnomalyDetectionComputationModelConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnComputationModelPropsMixin.AnomalyDetectionComputationModelConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnComputationModelPropsMixin.AnomalyDetectionComputationModelConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnComputationModelPropsMixin » AnomalyDetectionComputationModelConfigurationProperty |
Contains the configuration for anomaly detection computation models.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const anomalyDetectionComputationModelConfigurationProperty: iotsitewise_mixins.CfnComputationModelPropsMixin.AnomalyDetectionComputationModelConfigurationProperty = {
inputProperties: 'inputProperties',
resultProperty: 'resultProperty',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | The list of input properties for the anomaly detection model. |
| result | string | The property where the anomaly detection results will be stored. |
inputProperties?
Type:
string
(optional)
The list of input properties for the anomaly detection model.
resultProperty?
Type:
string
(optional)
The property where the anomaly detection results will be stored.

.NET
Go
Java
Python
TypeScript