Show / Hide Table of Contents

Class CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty

The configuration for the anomaly detection algorithm.

Inheritance
object
CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty
Implements
CfnAnomalyDetectorPropsMixin.IAnomalyDetectorConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.APS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty : CfnAnomalyDetectorPropsMixin.IAnomalyDetectorConfigurationProperty
Syntax (vb)
Public Class CfnAnomalyDetectorPropsMixin.AnomalyDetectorConfigurationProperty Implements CfnAnomalyDetectorPropsMixin.IAnomalyDetectorConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-anomalydetectorconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.APS.Mixins;

             var anomalyDetectorConfigurationProperty = new AnomalyDetectorConfigurationProperty {
                 RandomCutForest = new RandomCutForestConfigurationProperty {
                     IgnoreNearExpectedFromAbove = new IgnoreNearExpectedProperty {
                         Amount = 123,
                         Ratio = 123
                     },
                     IgnoreNearExpectedFromBelow = new IgnoreNearExpectedProperty {
                         Amount = 123,
                         Ratio = 123
                     },
                     Query = "query",
                     SampleSize = 123,
                     ShingleSize = 123
                 }
             };

Synopsis

Constructors

AnomalyDetectorConfigurationProperty()

The configuration for the anomaly detection algorithm.

Properties

RandomCutForest

The Random Cut Forest algorithm configuration for anomaly detection.

Constructors

AnomalyDetectorConfigurationProperty()

The configuration for the anomaly detection algorithm.

public AnomalyDetectorConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-anomalydetectorconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.APS.Mixins;

             var anomalyDetectorConfigurationProperty = new AnomalyDetectorConfigurationProperty {
                 RandomCutForest = new RandomCutForestConfigurationProperty {
                     IgnoreNearExpectedFromAbove = new IgnoreNearExpectedProperty {
                         Amount = 123,
                         Ratio = 123
                     },
                     IgnoreNearExpectedFromBelow = new IgnoreNearExpectedProperty {
                         Amount = 123,
                         Ratio = 123
                     },
                     Query = "query",
                     SampleSize = 123,
                     ShingleSize = 123
                 }
             };

Properties

RandomCutForest

The Random Cut Forest algorithm configuration for anomaly detection.

public object? RandomCutForest { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-anomalydetectorconfiguration.html#cfn-aps-anomalydetector-anomalydetectorconfiguration-randomcutforest

Type union: either IResolvable or CfnAnomalyDetectorPropsMixin.IRandomCutForestConfigurationProperty

Implements

CfnAnomalyDetectorPropsMixin.IAnomalyDetectorConfigurationProperty
Back to top Generated by DocFX