Math 活动 - Amazon IoT Analytics
Amazon Web Services 文档中描述的 Amazon Web Services 服务或功能可能因区域而异。要查看适用于中国区域的差异,请参阅 中国的 Amazon Web Services 服务入门 (PDF)

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

Math 活动

math 活动使用消息的属性计算算术表达式。表达式必须返回数字。例如,给定以下输入消息:

{ "tempF": 50, }

经过以下 math 活动处理后:

{ "math": { "name": "MyMathActivity", "math": "(tempF - 32) / 2", "attribute": "tempC", "next": "MyDatastoreActivity" } }

生成的消息类似于:

{ "tempF" : 50, "tempC": 9 }