Show / Hide Table of Contents

Class CfnAnomalyDetector.RangeProperty

Each Range specifies one range of days or times to exclude from use for training or updating an anomaly detection model.

Inheritance
object
CfnAnomalyDetector.RangeProperty
Implements
CfnAnomalyDetector.IRangeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CloudWatch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnomalyDetector.RangeProperty : CfnAnomalyDetector.IRangeProperty
Syntax (vb)
Public Class CfnAnomalyDetector.RangeProperty Implements CfnAnomalyDetector.IRangeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-range.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.AWS.CloudWatch;

             var rangeProperty = new RangeProperty {
                 EndTime = "endTime",
                 StartTime = "startTime"
             };

Synopsis

Constructors

RangeProperty()

Each Range specifies one range of days or times to exclude from use for training or updating an anomaly detection model.

Properties

EndTime

The end time of the range to exclude.

StartTime

The start time of the range to exclude.

Constructors

RangeProperty()

Each Range specifies one range of days or times to exclude from use for training or updating an anomaly detection model.

public RangeProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-range.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.AWS.CloudWatch;

             var rangeProperty = new RangeProperty {
                 EndTime = "endTime",
                 StartTime = "startTime"
             };

Properties

EndTime

The end time of the range to exclude.

public string EndTime { get; set; }
Property Value

string

Remarks

The format is yyyy-MM-dd'T'HH:mm:ss . For example, 2019-07-01T23:59:59 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-range.html#cfn-cloudwatch-anomalydetector-range-endtime

StartTime

The start time of the range to exclude.

public string StartTime { get; set; }
Property Value

string

Remarks

The format is yyyy-MM-dd'T'HH:mm:ss . For example, 2019-07-01T23:59:59 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-range.html#cfn-cloudwatch-anomalydetector-range-starttime

Implements

CfnAnomalyDetector.IRangeProperty
Back to top Generated by DocFX