我已经创建了一个想法,即不是为每个创建的新事物创建策略,我们可以创建一个事物组并为该组创建一个策略并将其添加到该组中然后将该组策略分享给我们创建的每件新事物。
我对如何实现我的想法没有任何想法,我一直在寻找这样的参考,但我还没有找到任何有用的链接或指南。如果你知道任何事情发布
答案 0 :(得分:0)
大家经过长时间的搜索后,我找到了解决方案。
def add_thing_to_thing_group():
client = boto3.client('iot')
thing_group_name ='your thing group name'
thing_group_arn ='your thing group arn'
thing_name ='your thing name'
thing_arn ='your thing arn'
client.add_thing_to_thing_group(
thingGroupName= thing_group_name,
thingGroupArn= thing_group_arn,
thingName= thing_name,
thingArn= thing_arn
)