NetEvolve.HealthChecks.AWS.DynamoDB
5.13.51
Prefix Reserved
dotnet add package NetEvolve.HealthChecks.AWS.DynamoDB --version 5.13.51
NuGet\Install-Package NetEvolve.HealthChecks.AWS.DynamoDB -Version 5.13.51
<PackageReference Include="NetEvolve.HealthChecks.AWS.DynamoDB" Version="5.13.51" />
<PackageVersion Include="NetEvolve.HealthChecks.AWS.DynamoDB" Version="5.13.51" />
<PackageReference Include="NetEvolve.HealthChecks.AWS.DynamoDB" />
paket add NetEvolve.HealthChecks.AWS.DynamoDB --version 5.13.51
#r "nuget: NetEvolve.HealthChecks.AWS.DynamoDB, 5.13.51"
#:package NetEvolve.HealthChecks.AWS.DynamoDB@5.13.51
#addin nuget:?package=NetEvolve.HealthChecks.AWS.DynamoDB&version=5.13.51
#tool nuget:?package=NetEvolve.HealthChecks.AWS.DynamoDB&version=5.13.51
NetEvolve.HealthChecks.AWS.DynamoDB
This package provides a health check for AWS DynamoDB, based on the AWS SDK for .NET package. The main purpose is to check that the DynamoDB service is reachable and that the client can connect to it.
💡 This package is available for .NET 8.0 and later.
Installation
To use this package, you need to install the NetEvolve.HealthChecks.AWS.DynamoDB NuGet package. You can do this by running the following command:
dotnet add package NetEvolve.HealthChecks.AWS.DynamoDB
Health Check - AWS DynamoDB Liveness
The health check verifies that a specified DynamoDB table exists and is accessible by performing a DescribeTable operation.
Usage
After adding the package, you need to import the namespace NetEvolve.HealthChecks.AWS.DynamoDB and add the health check to the service collection.
using NetEvolve.HealthChecks.AWS.DynamoDB;
Therefore, you can use two different approaches. In both approaches you have to provide a name for the health check.
Parameters
name: The name of the health check. The name is used to identify the configuration object. It is required and must be unique within the application.options: The configuration options for the health check. If you don't provide any options, the health check will use the configuration based approach.tags: The tags for the health check. The tagsaws,dynamodbanddatabaseare always used as default and combined with the user input. You can provide additional tags to group or filter the health checks.
Variant 1: Configuration based
The first one is to use the configuration based approach. Therefore, you have to add the configuration section HealthChecks:AWSDynamoDB to your appsettings.json file.
var builder = services.AddHealthChecks();
builder.AddAWSDynamoDB("<name>");
The configuration looks like this:
{
..., // other configuration
"HealthChecks": {
"AWSDynamoDB": {
"<name>": {
"Region": "<aws-region>", // optional, uses default AWS region if not specified
"AccessKey": "<access-key>", // optional, uses default AWS credentials if not specified
"SecretKey": "<secret-key>", // optional, uses default AWS credentials if not specified
"TableName": "<table-name>", // required
"Timeout": "<timeout>" // optional, default is 100 milliseconds
}
}
}
}
Variant 2: Builder based
The second approach is to use the builder based approach. This approach is recommended if you only have one DynamoDB table to check or dynamic programmatic values.
var builder = services.AddHealthChecks();
builder.AddAWSDynamoDB("<name>", options =>
{
options.TableName = "<table-name>"; // required
options.Region = "<aws-region>"; // optional, uses default AWS region if not specified
options.AccessKey = "<access-key>"; // optional, uses default AWS credentials if not specified
options.SecretKey = "<secret-key>"; // optional, uses default AWS credentials if not specified
options.Timeout = "<timeout>"; // optional, default is 100 milliseconds
... // other configuration
});
💡 You can always provide tags to all health checks, for grouping or filtering.
var builder = services.AddHealthChecks();
builder.AddAWSDynamoDB("<name>", options => ..., "dynamodb");
License
This project is licensed under the MIT License - see the LICENSE file for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- AWSSDK.Core (>= 4.0.3.17)
- AWSSDK.DynamoDBv2 (>= 4.0.15.2)
- NetEvolve.Extensions.Tasks (>= 2.1.0)
-
net8.0
- AWSSDK.Core (>= 4.0.3.17)
- AWSSDK.DynamoDBv2 (>= 4.0.15.2)
- NetEvolve.Extensions.Tasks (>= 2.1.0)
-
net9.0
- AWSSDK.Core (>= 4.0.3.17)
- AWSSDK.DynamoDBv2 (>= 4.0.15.2)
- NetEvolve.Extensions.Tasks (>= 2.1.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NetEvolve.HealthChecks.AWS.DynamoDB:
| Package | Downloads |
|---|---|
|
NetEvolve.HealthChecks.AWS
Contains HealthChecks for various AWS services. |
GitHub repositories
This package is not used by any popular GitHub repositories.