How to use CloudFormaiton to create IOT Thing Group

0

I cannot find in the documentation on how to use cloudformation to create-thing-group. Is this possible?

3回答
1

I couldn't find any update to the CDK spec on this or on adding things to thing groups. I had to go with custom resources, like below:

   const myThingGroup = new cr.AwsCustomResource(this, 'my-thing-group', {
      onCreate: {
        service: 'Iot',
        action: 'createThingGroup',
        parameters: {
          thingGroupName: 'my-tg-name'
        },
        physicalResourceId: cr.PhysicalResourceId.of(Date.now().toString()),
      },
      onDelete: {
        service: 'Iot',
        action: 'deleteThingGroup',
        parameters: {
          thingGroupName: 'my-tg-name'
        },
      },
      policy: cr.AwsCustomResourcePolicy.fromSdkCalls({
        resources: cr.AwsCustomResourcePolicy.ANY_RESOURCE,
      }),
    });

When I added and removed things to/from thing groups, I needed to use addDependency otherwise cdk destroy failed, like this:

    myThingThingGroupDetachment.node.addDependency(myThing)
    myThingThingGroupDetachment.node.addDependency(myThingGroup)

Hope this saves some time for someone.

gary
回答済み 1年前
0

At this moment, we have to either create custom resources or use the APIs.

profile pictureAWS
エキスパート
回答済み 2年前
0

Meanwhile, a CfnThingGroup resource is available.

AWS
robhan
回答済み 3ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ