Soenneker.Aws.Route53.DomainsClientUtil
4.0.376
Prefix Reserved
dotnet add package Soenneker.Aws.Route53.DomainsClientUtil --version 4.0.376
NuGet\Install-Package Soenneker.Aws.Route53.DomainsClientUtil -Version 4.0.376
<PackageReference Include="Soenneker.Aws.Route53.DomainsClientUtil" Version="4.0.376" />
<PackageVersion Include="Soenneker.Aws.Route53.DomainsClientUtil" Version="4.0.376" />
<PackageReference Include="Soenneker.Aws.Route53.DomainsClientUtil" />
paket add Soenneker.Aws.Route53.DomainsClientUtil --version 4.0.376
#r "nuget: Soenneker.Aws.Route53.DomainsClientUtil, 4.0.376"
#:package Soenneker.Aws.Route53.DomainsClientUtil@4.0.376
#addin nuget:?package=Soenneker.Aws.Route53.DomainsClientUtil&version=4.0.376
#tool nuget:?package=Soenneker.Aws.Route53.DomainsClientUtil&version=4.0.376
Soenneker.Aws.Route53.DomainsClientUtil
Creates and caches an authenticated AWS SDK AmazonRoute53DomainsClient for dependency-injected applications.
Installation
dotnet add package Soenneker.Aws.Route53.DomainsClientUtil
Configuration
{
"Aws": {
"AccessKey": "access-key-id",
"SecretKey": "secret-access-key"
}
}
Keep these values in a secret provider rather than source-controlled configuration.
Registration and use
using Amazon.Route53Domains;
using Amazon.Route53Domains.Model;
using Soenneker.Aws.Route53.DomainsClientUtil.Abstract;
using Soenneker.Aws.Route53.DomainsClientUtil.Registrars;
builder.Services.AddRoute53DomainsClientUtilAsSingleton();
public sealed class DomainLookup(IRoute53DomainsClientUtil clientUtil)
{
public async Task<GetDomainDetailResponse> Get(
string domain,
CancellationToken cancellationToken)
{
AmazonRoute53DomainsClient client =
await clientUtil.Get(cancellationToken);
return await client.GetDomainDetailAsync(
new GetDomainDetailRequest { DomainName = domain },
cancellationToken);
}
}
The registrar includes Soenneker.Aws.BasicCredentials. The client is configured for RegionEndpoint.USEast1, the Route 53 Domains endpoint used by this utility.
Lifecycle
- The AWS client and credentials are initialized once and cached.
GetSync()exposes the same cached client for synchronous construction paths.- Configuration changes do not rotate an already-created client.
- Use the scoped registrar only when the wrapper should be scoped; its credential dependency remains singleton.
- Let DI dispose the utility so the AWS SDK client is released correctly.
For common registration, availability, nameserver, and DNSSEC operations, use the higher-level Soenneker.Aws.Route53.Domains package.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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.Route53Domains (>= 4.0.100.14)
- Soenneker.Aws.BasicCredentials (>= 4.0.329)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Aws.Route53.DomainsClientUtil:
| Package | Downloads |
|---|---|
|
Soenneker.Aws.Route53.Domains
A utility library for AWS Route53 domain related operations |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.376 | 0 | 9/16/2026 |
| 4.0.375 | 0 | 9/16/2026 |
| 4.0.374 | 35 | 9/16/2026 |
| 4.0.373 | 55 | 9/15/2026 |
| 4.0.372 | 74 | 9/15/2026 |
| 4.0.371 | 53 | 9/15/2026 |
| 4.0.370 | 68 | 9/13/2026 |
| 4.0.369 | 70 | 9/13/2026 |
| 4.0.368 | 83 | 9/13/2026 |
| 4.0.367 | 72 | 9/12/2026 |
| 4.0.366 | 89 | 9/12/2026 |
| 4.0.365 | 75 | 9/12/2026 |
| 4.0.364 | 76 | 9/11/2026 |
| 4.0.363 | 93 | 9/10/2026 |
| 4.0.362 | 80 | 9/10/2026 |
| 4.0.361 | 83 | 9/9/2026 |
| 4.0.360 | 101 | 9/9/2026 |
| 4.0.359 | 108 | 9/8/2026 |
| 4.0.358 | 122 | 9/8/2026 |
| 4.0.357 | 112 | 9/8/2026 |
Updated Multiple NuGet packages