interface MetricWindowProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTSiteWise.CfnAssetModel.MetricWindowProperty | 
|  Java | software.amazon.awscdk.services.iotsitewise.CfnAssetModel.MetricWindowProperty | 
|  Python | aws_cdk.aws_iotsitewise.CfnAssetModel.MetricWindowProperty | 
|  TypeScript | @aws-cdk/aws-iotsitewise»CfnAssetModel»MetricWindowProperty | 
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 * as iotsitewise from '@aws-cdk/aws-iotsitewise';
const metricWindowProperty: iotsitewise.CfnAssetModel.MetricWindowProperty = {
  tumbling: {
    interval: 'interval',
    // the properties below are optional
    offset: 'offset',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| tumbling? | IResolvable | Tumbling | The tumbling time interval window. | 
tumbling?
Type:
IResolvable | Tumbling
(optional)
The tumbling time interval window.
