I use AWS IoT to manage Things. I have a Dynamic Thing Group with Continuous IoT Job attached, so every Thing eventually (based on conditions) can be added to this Group and a thing will be notified on a Job to be executed. This one works perfect.
Now I need to track Job SUCCEEDED
event for every Thing (Job execution). How can I do this using AWS IoT services?
I was trying to do this using AWS IoT Rules with the following SQL expression:
SELECT * FROM '$aws/events/jobExecution/my-continuous-job-id/succeeded'
but without success, no events were observed. However, at the same time I can see that Job was successfully executed as in Thing as in the AWS IoT Web Console.