1

In the AWS Elasticsearch documentation they recommend submitting Elasticsearch requests using the AWS SDK. However, I don't find any APIs related to indexing and searching in the SDK. Should indexing and searching instead be done through one of the Elasticsearch client libraries?

johnnyodonnell
  • 1,838
  • 3
  • 16
  • 34

1 Answers1

1

The AWS SDK will provide methods to manage the Elasticsearch service (create new domain, list domains, add tags, etc). You will need to interface with Elasticsearch either through a client library or simple HTTPS requests (POST, PUT, GET).

John Veldboom
  • 2,049
  • 26
  • 29