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
System.Object
CfnAnomalyDetector.RangeProperty
Implements
Namespace: Amazon.CDK.AWS.CloudWatch
Assembly: Amazon.CDK.AWS.CloudWatch.dll
Syntax (csharp)
public class RangeProperty : Object, CfnAnomalyDetector.IRangeProperty
Syntax (vb)
Public Class RangeProperty
Inherits Object
Implements CfnAnomalyDetector.IRangeProperty
Remarks
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() |
Properties
EndTime | The end time of the range to exclude. |
StartTime | The start time of the range to exclude. |
Constructors
RangeProperty()
public RangeProperty()
Properties
EndTime
The end time of the range to exclude.
public string EndTime { get; set; }
Property Value
System.String
Remarks
The format is yyyy-MM-dd'T'HH:mm:ss
. For example, 2019-07-01T23:59:59
.
StartTime
The start time of the range to exclude.
public string StartTime { get; set; }
Property Value
System.String
Remarks
The format is yyyy-MM-dd'T'HH:mm:ss
. For example, 2019-07-01T23:59:59
.