0.3.0 • Published 8 years ago

aws-lambda-elasticsearch v0.3.0

Weekly downloads
21
License
MIT
Repository
-
Last release
8 years ago

HttpAmazonESConnector

A Connection handler for Amazon ES.

Uses the aws-sdk to make signed requests to an Amazon ES endpoint. Define the Amazon ES config and the connection handler in the client configuration.

Ported from: https://www.npmjs.com/package/http-aws-es

ParamTypeDescription
clientObjectThe options object passed to the Client class
client.connectionClassClassThe new connection class aws-lambda-elasticsearch
client.amazonConfigObjectSpecify Amazon specific configuration
client.amazonConfig.regionStringThe region of the search cluster. Falls back to process.env.AWS_REGION or 'us-east-1'

Example

var es = require('elasticsearch').Client({
 hosts: 'https://amazon-es-host.us-east-1.es.amazonaws.com',
 connectionClass: require('aws-lambda-elasticsearch'),
 amazonConfig: {
   region: 'us-east-1'
 }
});