AWS IoT Thing Type
Overview AWS IoT Thing Type helps organize, categorize, and search for IoT Things managed by the AWS IoT Thing Registry.
This article is a continuation of my previous post - AWS IoT Thing Attributes - introduction
All Things associated with a specific Thing Type have common attributes (like: manufacturer, serial number, color).
To manage Thing Types we will use the AWS SDK for Python (Boto3).
1 2 3 4 5 6 7 8 9 import boto3 import json # A session manages state about a particular configuration.