@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.
41 lines (40 loc) • 1.14 kB
text/typescript
import {
CreateThingTypeCommand,
CreateThingTypeCommandInput,
IoTClient,
} 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();
const validated = request.validate(joi => {
return {
thingTypeName: joi.string().required(),
searchableAttributes: joi.array().items(joi.string()).max(3).required(),
};
});
if (validated.error) {
return response.error(validated.details, 422);
}
try {
const parameters: CreateThingTypeCommandInput = {
thingTypeName: request.input('thingTypeName'),
};
if (request.has('searchableAttributes')) {
parameters.thingTypeProperties= {};
parameters.thingTypeProperties.searchableAttributes = request.input('searchableAttributes');
}
const iotClient = new IoTClient({});
await iotClient.send(
new CreateThingTypeCommand(parameters),
);
return response.json({
created: true,
});
} catch (error) {
return response.error(error);
}
}