How to use the Fleet Provisioning Hook to assign a thing to a thing group?

0

I'd like my PreProvisioning Hook lambda to set the thing group that the newly created thing should be assigned to. But I can't find an example of what to return in the parameterOverrides map to accomplish that.

已提问 1 年前335 查看次数
2 回答
0

The PreProvisioning Hook lambda is only used to authorize the device registration via Fleet Provisioning. You can define the Thing Group in the fleet provisioning template associated to the Fleet Provisioning birth certificate. You can also associate the Thing Group dynamically using Dynamic Thing Groups.

Finally, you could also associate the thing to a thing group by triggering a lambda function via an IoT Rule listening on registry events

AWS
专家
已回答 1 年前
0

For us, the right answer was for the PreProvisioning hook to set a variable (deviceType in the below) that the template can use to set the Thing Type. We wanted to use Thing Type in our MQTT Allow directives

    Map<String, String> parameters = new HashMap<>();
    // the provisioningTemplateBody.json uses this parameter to assign the new thing to a Thing Type
    parameters.put("DeviceType", thingType);

    return Map.of("allowProvisioning", allowProvisioning,
    			  "parameterOverrides", parameters);
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则