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 réponses
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
répondu il y a un an
0

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

profile pictureAWS
EXPERT
répondu il y a 2 ans
0

Meanwhile, a CfnThingGroup resource is available.

AWS
robhan
répondu il y a 3 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions