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.

37 lines (35 loc) 937 B
import { IoTClient, ListJobsCommand, ListJobsCommandInput, } from '@aws-sdk/client-iot'; import { Request, Response, } from '@softchef/lambda-events'; export async function handler(event: { [key: string]: any }) { const request = new Request(event); const response = new Response(); try { const parameters: ListJobsCommandInput = {}; if (request.has('nextToken')) { parameters.nextToken = request.get('nextToken'); } if (request.has('status')) { parameters.status = request.get('status'); } if (request.has('targetSelection')) { parameters.targetSelection = request.get('targetSelection'); } const iotClient = new IoTClient({}); const { jobs, nextToken } = await iotClient.send( new ListJobsCommand(parameters), ); return response.json({ jobs: jobs, nextToken: nextToken, }); } catch (error) { return response.error(error); } }