Class: Aws::IoTSiteWise::Types::Transform
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Transform
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
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 *IoT SiteWise User Guide*.
[1]: docs.aws.amazon.com/iot-sitewise/latest/userguide/asset-properties.html#transforms
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expression ⇒ String
The mathematical expression that defines the transformation function.
-
#processing_config ⇒ Types::TransformProcessingConfig
The processing configuration for the given transform property.
-
#variables ⇒ Array<Types::ExpressionVariable>
The list of variables used in the expression.
Instance Attribute Details
#expression ⇒ String
The mathematical expression that defines the transformation 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 *IoT SiteWise User Guide*.
[1]: docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
8736 8737 8738 8739 8740 8741 8742 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 8736 class Transform < Struct.new( :expression, :variables, :processing_config) SENSITIVE = [] include Aws::Structure end |
#processing_config ⇒ Types::TransformProcessingConfig
The processing configuration for the given transform property. You can configure transforms to be kept at the edge or forwarded to the Amazon Web Services Cloud. You can also configure transforms to be computed at the edge or in the cloud.
8736 8737 8738 8739 8740 8741 8742 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 8736 class Transform < Struct.new( :expression, :variables, :processing_config) SENSITIVE = [] include Aws::Structure end |
#variables ⇒ Array<Types::ExpressionVariable>
The list of variables used in the expression.
8736 8737 8738 8739 8740 8741 8742 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 8736 class Transform < Struct.new( :expression, :variables, :processing_config) SENSITIVE = [] include Aws::Structure end |