Class CfnAssetModel.MetricWindowProperty
Contains a time interval window used for data aggregate computations (for example, average, sum, count, and so on).
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAssetModel.MetricWindowProperty : CfnAssetModel.IMetricWindowProperty
Syntax (vb)
Public Class CfnAssetModel.MetricWindowProperty Implements CfnAssetModel.IMetricWindowProperty
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.IoTSiteWise;
var metricWindowProperty = new MetricWindowProperty {
Tumbling = new TumblingWindowProperty {
Interval = "interval",
// the properties below are optional
Offset = "offset"
}
};
Synopsis
Constructors
| MetricWindowProperty() | Contains a time interval window used for data aggregate computations (for example, average, sum, count, and so on). |
Properties
| Tumbling | The tumbling time interval window. |
Constructors
MetricWindowProperty()
Contains a time interval window used for data aggregate computations (for example, average, sum, count, and so on).
public MetricWindowProperty()
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.IoTSiteWise;
var metricWindowProperty = new MetricWindowProperty {
Tumbling = new TumblingWindowProperty {
Interval = "interval",
// the properties below are optional
Offset = "offset"
}
};
Properties
Tumbling
The tumbling time interval window.
public object? Tumbling { get; set; }