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

Amazon IoT Analytics 不再向新客户提供。的现有客户 Amazon IoT Analytics 可以继续照常使用该服务。了解更多

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

RemoveAttributes 活动

removeAttributes 活动从消息中删除属性。例如,给定以下消息,它是 addAttributes 活动的结果。

{ "device": { "id": "device-123", "coord": [ 47.6, -122.3 ] }, "id": "device-123", "lat": 47.6, "lon": -122.3 }

为了规范化该消息,使其只包含根级别所需的数据,请使用以下 removeAttributes 活动。

{ "removeAttributes": { "name": "MyRemoveAttributesActivity", "attributes": [ "device" ], "next": "MyDatastoreActivity" } }

这会产生沿管道流动的以下消息。

{ "id": "device-123", "lat": 47.6, "lon": -122.3 }