DSmartHome: Difference between revisions

From dtype.org
No edit summary
Line 1: Line 1:
* [dSmartHome-api Lambda handler]


== API Gateway ==
== API Gateway ==

Revision as of 21:51, 30 July 2017

  • [dSmartHome-api Lambda handler]

API Gateway

{ 
    "TableName": "dsmarthome",
    "Item": {
        "device": {
            "S": "$input.path('$.device')"
            },
        "time": {
            "N": "$input.path('$.time')"
        },
        "value": {
            "N": "$input.path('$.value')"
        },
        "type": }
            "S": "$input.path('$.type')"
        },
        "description": {
            "S": "$input.path('$.description')"
        }
    }
}

Test values:

{
  "device": "test01",
  "time": "01",
  "value": "02",
  "type": "testtype",
  "description": "testdesc"
}