从文档中,有一种在 AWS IoT 中创建事物的语法,但我找不到如何将它连接到事物类型。可以这样写吗?
AWSTemplateFormatVersion: "2010-09-09"
Resources:
MyThing:
Type: "AWS::IoT::Thing"
Properties:
ThingName: "coffeemachine-12"
ThingType: "coffeemachine"
AttributePayload:
Attributes:
temp: "celcius"
如何在 AWS CloudFormation 模板中配置/创建 AWS IoT 事物类型?