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.

13 lines (12 loc) 357 B
import { Key } from "./Key"; /** * Represents the return of a key-related operation that may or may not have * been completed. * * @see https://msdn.microsoft.com/en-us/library/dn302314(v=vs.85).aspx */ export interface KeyOperation { oncomplete: (event: Event) => void; onerror: (event: Event) => void; readonly result: Key | undefined; }