I am new to AWS IoT and am trying to log data from an Arduino sensor to a DynamoDB table as shown here:
https://docs.aws.amazon.com/iot/latest/developerguide/iot-ddb-rule.html
The shadow data is being updated on a Thing called Volume, but the data is not being written to the table. I am not sure if I have correctly defined my topic which I am calling my/Volume because of the thing name. Here is its ARN:
arn:aws:iot:us-west-2:468820349153:thing/Volume
A basic test insert using the IoT test MQTT client was able to insert data into the table. I created a rule called VolumeRule with this query: SELECT * FROM 'my/Volume'.
Thanks for your help,
Steve