Interface CfnAssetModel.MetricWindowProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssetModel.MetricWindowProperty.Jsii$Proxy
Enclosing class:
CfnAssetModel

@Stability(Stable) public static interface CfnAssetModel.MetricWindowProperty extends software.amazon.jsii.JsiiSerializable
Contains a time interval window used for data aggregate computations (for example, average, sum, count, and so on).

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iotsitewise.*;
 MetricWindowProperty metricWindowProperty = MetricWindowProperty.builder()
         .tumbling(TumblingWindowProperty.builder()
                 .interval("interval")
                 // the properties below are optional
                 .offset("offset")
                 .build())
         .build();