UNPKG

@softchef/cdk-iot-device-management

Version:

IoT device management is composed of things, thing types, thing groups, jobs, files API services. The constructs can be used independently, that are based on full-managed service to create an API Gateway & Lambda function.

15 lines (9 loc) 311 B
"use strict"; var Event = require("./event"); function CustomEvent(type, customData, target) { this.initEvent(type, false, false, target); this.detail = customData.detail || null; } CustomEvent.prototype = new Event(); CustomEvent.prototype.constructor = CustomEvent; module.exports = CustomEvent;