node-red-contrib-viseo-aws
Version:
VISEO Bot Maker - AWS Lex and Rekognition
13 lines • 398 B
JavaScript
module.exports = function(RED) {
const register = function (config) {
RED.nodes.createNode(this, config);
this.name = config.name;
}
RED.nodes.registerType("aws-config", register, {
credentials: {
accessKeyId: { type:"text" },
secretAccessKey: { type:"text" },
region: { type:"text" }
}
});
}