- Setup Thing || 2. Create The Skill || 3. Create The Lambda Function || 4. Connect Skill To Lambda & Add IOT Permissions || 5. Webapp-Thing
It is simple to create a new virtual "Thing" in the AWS IOT Thing Registry.
- Login to AWS Console
- Search for "IOT" and click on the service called "IoT Device Management"
- (Cancel the welcome tour popup)
- Verify your Region on the top right, such as
Ireland
orN. Virginia
- On the left panel, locate and click on the
Manage
link - A sub-menu appears. Click on the
Things
link - Click on the
Create
button on the top right and then clickCreate a single thing
- Give your Thing the name:
thing1
and scroll down past the rest of the options and clickNext
- On the next panel, click the last button
Create thing without certificate
- On the next page, click on your new thing contained in a small box.
- Click the "Interact" item on the left menu.
- Record the HTTPS Rest API Endpoint you see, such as
a2eshrcp6u0000.iot.us-east-1.amazonaws.com
You will need this when you create your Lambda function.
You can stop at this point and begin writing Lambda code to update this device. Continue on to the update-shadow page.
- See the Register Device guide for the full device setup steps, including the process to configure your physical device, if desired.
- You can learn more from the Getting Started with AWS IOT documentation.*
Next, go to the Update Shadow section.
Back to the Home Page