End of support notice: On May 20, 2026, AWS will end support for AWS IoT Events. After May 20, 2026, you will no longer be able to access the AWS IoT Events console or AWS IoT Events resources. For more information, see AWS IoT Events end of support.
AWS IoT Events inputs for crane monitoring
In this example, we demonstrate how to set up inputs for a crane monitoring system using AWS IoT Events. It captures pressure and temperature inputs to illustrate how to structure inputs for complex industrial equipment monitoring.
File: pressureInput.json
{ "inputName": "PressureInput", "inputDescription": "this is a pressure input description", "inputDefinition": { "attributes": [ {"jsonPath": "pressure"} ] } }
File: temperatureInput.json
{ "inputName": "TemperatureInput", "inputDescription": "this is temperature input description", "inputDefinition": { "attributes": [ {"jsonPath": "temperature"} ] } }