Show / Hide Table of Contents

Class CfnAssetModel.MetricWindowProperty

Contains a time interval window used for data aggregate computations (for example, average, sum, count, and so on).

Inheritance
object
CfnAssetModel.MetricWindowProperty
Implements
CfnAssetModel.IMetricWindowProperty
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.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAssetModel.MetricWindowProperty : CfnAssetModel.IMetricWindowProperty
Syntax (vb)
Public Class CfnAssetModel.MetricWindowProperty Implements CfnAssetModel.IMetricWindowProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-metricwindow.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-metricwindow.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.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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-metricwindow.html#cfn-iotsitewise-assetmodel-metricwindow-tumbling

Type union: either IResolvable or CfnAssetModel.ITumblingWindowProperty

Implements

CfnAssetModel.IMetricWindowProperty
Back to top Generated by DocFX