node-red-contrib-aws-cloudsearch 1.1.0

node for aws cloudsearch

npm install node-red-contrib-aws-cloudsearch

Check it out! Now you can access your AWS Cloudsearch data with Node-RED! This allows you to fetch AWS Cloudsearch data using node-red nodes.

Installing node-red-contrib-aws-cloudsearch

cd ~/.node-red  #or wherever node-red is installed
npm i node-red-contrib-aws-cloudsearch

Usage

The params passed to searchdomain are picked from the msg payload. There are 2 options to pass the params

  1. Add a key 'params' to msg object and pass along all the parameters.
    msg.params = {
        query : "(and gender:'Men')",
        queryParser: "structured",
        size : 10
    }
    
  2. Add individual parameters directly to msg object.
      msg.query = "(and gender:'Men')";
      msg.query = "structured";
      msg.size  = 10;
    

Refer CloudSearchDomain SDK for supported params

TODO

Only search is supported now. Suggest and Upload documents needs to be added.

Have questions? Found a bug?

Please submit issues to the Github issue tracker

Node Info

Version: 1.1.0
Updated 6 years, 9 months ago
License: MIT
Rating: not yet rated

Actions

Rate:

Downloads

0 in the last week

Nodes

  • aws-cloudsearch
  • aws-cloudsearch-suggest
  • aws-config
  • aws-cloudsearch-config

Keywords

  • node
  • node-red
  • aws
  • cloudsearch

Maintainers