[docs] added info about the http-aws-es extension

This commit is contained in:
spalger
2015-10-19 08:04:14 -07:00
parent 658c3af0cf
commit 3aefbbd0e5
3 changed files with 15 additions and 0 deletions

View File

@ -2,6 +2,8 @@
== Extending
We decided to make this client low-level, and as such we probably have not implemented all the features you are looking for. For this reason, we made extending or even replacing the core components simple.
Check out the <<extensions>> page for a list of known extensions.
=== Connection
Extending a connection provides the powerful ability to change requests as they go out to the ElasticSearch REST API.

11
docs/extensions.asciidoc Normal file
View File

@ -0,0 +1,11 @@
[[extensions]]
== Extensions
This page aims to list useful extensions for the elasticsearch.js client provided by the elasticsearch community. If you would like to list your extension here please submit a pull request against https://github.com/elastic/elasticsearch-js/blob/master/docs/extending_core_components.asciidoc[the source code for this page].
For information about writing extensions, check out the <<extending_core_components>> page.
=== http-aws-es
Makes elasticsearch-js compatible with https://aws.amazon.com/elasticsearch-service/[Amazon ES]. It uses the https://www.npmjs.com/package/aws-sdk[aws-sdk] to make signed requests to an Amazon ES endpoint.
http-aws-es is available on https://www.npmjs.com/package/http-aws-es[npm].

View File

@ -14,6 +14,8 @@ include::ssl_authentication.asciidoc[]
include::extending_core_components.asciidoc[]
include::extensions.asciidoc[]
include::logging.asciidoc[]
include::development.asciidoc[]