amazon-web-servicesamazon-cognitomqttaws-iotaws-iot-core

How to allow an admin to override user IoT commands in AWS IoT Core (Device Shadow)?


I’m working with AWS IoT Core and using Device Shadows to control an IoT device (ESP32 connected to a relay to turn ON/OFF a motor), Right now, any user can turn the motor ON/OFF by updating the device shadow with:

"state": {
    "desired": {
        "status": "ON",
        "duration": 5,
    }
}

Current architecture

What I Need Help With

I want to introduce an admin role that can:

My Questions:

Would appreciate any guidance or examples!


Solution

  • To override a user command and immediately turn the motor OFF, we can use AWS Step Functions with a conditional check for adminOverride. If adminOverride is true, the Step Function bypasses the usual delay and immediately triggers the motor shutdown via a Lambda function.

    How It Works

    Step Function Definition

    {
      "Comment": "Conditional flow with admin override OR delay",
      "StartAt": "Check Admin Override",
      "States": {
        "Check Admin Override": {
          "Type": "Choice",
          "Choices": [
            {
              "Variable": "$.adminOverride",
              "BooleanEquals": true,
              "Next": "TriggerMotorShutdown"
            }
          ],
          "Default": "Wait"
        },
        "Wait": {
          "Type": "Wait",
          "TimestampPath": "$.delayTimestamp",
          "Next": "TriggerMotorShutdown"
        },
        "TriggerMotorShutdown": {
          "Type": "Task",
          "Resource": "arn:aws:states:::lambda:invoke",
          "OutputPath": "$.Payload",
          "Parameters": {
            "FunctionName": "arn:aws:lambda:us-east-1:xxxxxxxxxx:function:TriggerMotorShutdown:$LATEST",
            "Payload": {
              "input.$": "$"
            }
          },
          "Retry": [
            {
              "ErrorEquals": [
                "Lambda.ServiceException",
                "Lambda.AWSLambdaException",
                "Lambda.SdkClientException",
                "Lambda.TooManyRequestsException"
              ],
              "IntervalSeconds": 1,
              "MaxAttempts": 3,
              "BackoffRate": 2,
              "JitterStrategy": "FULL"
            }
          ],
          "End": true
        }
      }
    }