Interface CfnAssetModel.TransformProperty

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

@Stability(Stable) public static interface CfnAssetModel.TransformProperty extends software.amazon.jsii.JsiiSerializable
Contains an asset transform property.

A transform is a one-to-one mapping of a property's data points from one form to another. For example, you can use a transform to convert a Celsius data stream to Fahrenheit by applying the transformation expression to each data point of the Celsius stream. A transform can only have a data type of DOUBLE and consume properties with data types of INTEGER or DOUBLE .

For more information, see Transforms 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 software.amazon.awscdk.services.iotsitewise.*;
 TransformProperty transformProperty = TransformProperty.builder()
         .expression("expression")
         .variables(List.of(ExpressionVariableProperty.builder()
                 .name("name")
                 .value(VariableValueProperty.builder()
                         .hierarchyExternalId("hierarchyExternalId")
                         .hierarchyId("hierarchyId")
                         .hierarchyLogicalId("hierarchyLogicalId")
                         .propertyExternalId("propertyExternalId")
                         .propertyId("propertyId")
                         .propertyLogicalId("propertyLogicalId")
                         .propertyPath(List.of(PropertyPathDefinitionProperty.builder()
                                 .name("name")
                                 .build()))
                         .build())
                 .build()))
         .build();
 

See Also: