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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Aws.Route53.DomainsClientUtil" Version="4.0.376" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Aws.Route53.DomainsClientUtil" Version="4.0.376" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Aws.Route53.DomainsClientUtil" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Aws.Route53.DomainsClientUtil --version 4.0.376
                    
#r "nuget: Soenneker.Aws.Route53.DomainsClientUtil, 4.0.376"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Aws.Route53.DomainsClientUtil@4.0.376
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Aws.Route53.DomainsClientUtil&version=4.0.376
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Aws.Route53.DomainsClientUtil&version=4.0.376
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
Loading failed

Updated Multiple NuGet packages