aws-cdk-lib.aws_iotsitewise.CfnAssetModel.MetricProperty

interface MetricProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTSiteWise.CfnAssetModel.MetricProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#CfnAssetModel_MetricProperty
Javasoftware.amazon.awscdk.services.iotsitewise.CfnAssetModel.MetricProperty
Pythonaws_cdk.aws_iotsitewise.CfnAssetModel.MetricProperty
TypeScript aws-cdk-lib » aws_iotsitewise » CfnAssetModel » MetricProperty

Contains an asset metric property.

With metrics, you can calculate aggregate functions, such as an average, maximum, or minimum, as specified through an expression. A metric maps several values to a single value (such as a sum).

The maximum number of dependent/cascading variables used in any one metric calculation is 10. Therefore, a root metric can have up to 10 cascading metrics in its computational dependency tree. Additionally, a metric can only have a data type of DOUBLE and consume properties with data types of INTEGER or DOUBLE .

For more information, see Defining data properties in the AWS IoT SiteWise User Guide .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsitewise as iotsitewise } from 'aws-cdk-lib';
const metricProperty: iotsitewise.CfnAssetModel.MetricProperty = {
  expression: 'expression',
  variables: [{
    name: 'name',
    value: {
      propertyLogicalId: 'propertyLogicalId',

      // the properties below are optional
      hierarchyLogicalId: 'hierarchyLogicalId',
    },
  }],
  window: {
    tumbling: {
      interval: 'interval',

      // the properties below are optional
      offset: 'offset',
    },
  },
};

Properties

NameTypeDescription
expressionstringThe mathematical expression that defines the metric aggregation function.
variablesIResolvable | IResolvable | ExpressionVariableProperty[]The list of variables used in the expression.
windowIResolvable | MetricWindowPropertyThe window (time interval) over which AWS IoT SiteWise computes the metric's aggregation expression.

expression

Type: string

The mathematical expression that defines the metric aggregation function.

You can specify up to 10 variables per expression. You can specify up to 10 functions per expression.

For more information, see Quotas in the AWS IoT SiteWise User Guide .


variables

Type: IResolvable | IResolvable | ExpressionVariableProperty[]

The list of variables used in the expression.


window

Type: IResolvable | MetricWindowProperty

The window (time interval) over which AWS IoT SiteWise computes the metric's aggregation expression.

AWS IoT SiteWise computes one data point per window .