Elasticsearch.Net.Aws
6.0.0
See the version list below for details.
dotnet add package Elasticsearch.Net.Aws --version 6.0.0
NuGet\Install-Package Elasticsearch.Net.Aws -Version 6.0.0
<PackageReference Include="Elasticsearch.Net.Aws" Version="6.0.0" />
paket add Elasticsearch.Net.Aws --version 6.0.0
#r "nuget: Elasticsearch.Net.Aws, 6.0.0"
// Install Elasticsearch.Net.Aws as a Cake Addin #addin nuget:?package=Elasticsearch.Net.Aws&version=6.0.0 // Install Elasticsearch.Net.Aws as a Cake Tool #tool nuget:?package=Elasticsearch.Net.Aws&version=6.0.0
Elasticsearch Net for Amazon AWS
Add-on to elasticsearch-net / NEST for using AWS's elasticsearch service.
Install Package
# For ElasticSearch.Net >= 2.0.2
Install-Package Elasticsearch.Net.Aws
# For ElasticSearch.Net = 1.7.1
Install-Package Elasticsearch.Net.Aws-v1
Setup
Elasticsearch.Net Version >= 2.0.2
Use Package Elasticsearch.Net.Aws
// for NEST
// if using an access key
var httpConnection = new AwsHttpConnection("us-east-1", new StaticCredentialsProvider(new AwsCredentials
{
AccessKey = "My AWS access key",
SecretKey = "My AWS secret key",
}));
// if using app.config, environment variables, or roles
var httpConnection = new AwsHttpConnection("us-east-1");
var pool = new SingleNodeConnectionPool(new Uri("http://localhost:9200"));
var config = new ConnectionSettings(pool, httpConnection);
var client = new ElasticClient(config);
Elasticsearch.Net Version 1.7.1
Use Package Elasticsearch.Net.Aws-v1
Source for this version is maintained on the version-1 branch
// for NEST
var client = new ElasticClient(settings, connection: new AwsHttpConnection(settings, new AwsSettings
{
AccessKey = "My AWS access key",
SecretKey = "My AWS secret key",
Region = "us-east-1",
}));
The AwsHttpConnection
class is an implemenation of IConnection
that will sign the HTTP requests according to the Version 4 Signing Process.
Serilog Sink Setup
const string esUrl = "https://aws-es-thinger.us-west-1.es.amazonaws.com";
Log.Logger = new LoggerConfiguration()
.WriteTo.Elasticsearch(new ElasticsearchSinkOptions(new Uri(esUrl))
{
ModifyConnectionSettings = conn =>
{
var httpConnection = new AwsHttpConnection("us-east-1");
var pool = new SingleNodeConnectionPool(new Uri(esUrl));
return new ConnectionConfiguration(pool, httpConnection);
}
})
.CreateLogger();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- AWSSDK.Core (>= 3.3.17.9)
- Elasticsearch.Net (>= 6.0.1)
- Newtonsoft.Json (>= 9.0.1)
-
.NETStandard 1.3
- AWSSDK.Core (>= 3.3.17.9)
- Elasticsearch.Net (>= 6.0.1)
- Microsoft.AspNetCore.WebUtilities (>= 1.1.2)
- NETStandard.Library (>= 1.6.1)
- Newtonsoft.Json (>= 9.0.1)
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Elasticsearch.Net.Aws:
Package | Downloads |
---|---|
corest
Package Description |
|
LastContent.Middleware
Package Description |
|
LagoVista.IoT.DataStreamConnectors
Provides services to write data stream records from LagoVista IoT to Azure, AWS and other cloud storage mechanisms |
|
GrandEuropeanTravel.Vacation.DataAccess
Allows for external vacation data access |
|
FloES
FloES is a generic wrapper for common Elasticsearch operations, such as writing, finding, searching, listing and paginating documents. Uses Nest & Elasticsearch.Net.AWS, and includes ILogger support |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.2.2 | 879,646 | 9/27/2022 |
7.2.1 | 1,202,204 | 4/15/2022 |
7.2.0 | 1,768 | 4/13/2022 |
7.1.0 | 1,638,750 | 4/21/2021 |
7.0.6 | 538,206 | 1/29/2021 |
7.0.5 | 883,031 | 8/21/2020 |
7.0.4 | 889,987 | 11/18/2019 |
7.0.3 | 1,553 | 11/13/2019 |
7.0.2 | 79,250 | 10/23/2019 |
7.0.1 | 19,976 | 10/9/2019 |
7.0.0 | 132,384 | 7/1/2019 |
7.0.0-beta1 | 516 | 6/19/2019 |
6.1.2 | 594,127 | 10/28/2019 |
6.1.0 | 1,171,851 | 1/17/2019 |
6.0.0 | 720,059 | 2/28/2018 |
2.4.0 | 362,033 | 11/30/2017 |
2.3.7 | 102,404 | 9/21/2017 |
2.3.6 | 71,965 | 8/11/2017 |
2.3.5 | 1,232 | 8/11/2017 |
2.3.4 | 111,796 | 5/2/2017 |
2.3.3 | 36,924 | 1/10/2017 |
2.3.2 | 1,553 | 1/10/2017 |
2.3.1 | 1,579 | 1/10/2017 |
2.3.0 | 1,124 | 1/9/2017 |
2.2.0 | 5,113 | 12/5/2016 |
2.1.4 | 11,649 | 10/18/2016 |
2.1.3 | 4,111 | 9/13/2016 |
2.1.2 | 3,192 | 8/1/2016 |
2.1.1 | 8,606 | 3/28/2016 |
2.1.0 | 1,480 | 3/10/2016 |
2.0.0 | 1,294 | 2/19/2016 |
1.2.1 | 2,510 | 1/27/2016 |
1.2.0 | 1,434 | 1/8/2016 |
1.1.0 | 1,217 | 1/4/2016 |
1.0.0 | 3,202 | 10/20/2015 |
Support for named instance profiles