VOOZH about

URL: https://www.nuget.org/packages/AWS.Lambda.Powertools.Parameters/

⇱ NuGet Gallery | AWS.Lambda.Powertools.Parameters 3.2.2




👁 Image
AWS.Lambda.Powertools.Parameters 3.2.2

Prefix Reserved
dotnet add package AWS.Lambda.Powertools.Parameters --version 3.2.2
 
 
NuGet\Install-Package AWS.Lambda.Powertools.Parameters -Version 3.2.2
 
 
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="AWS.Lambda.Powertools.Parameters" Version="3.2.2" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AWS.Lambda.Powertools.Parameters" Version="3.2.2" />
 
Directory.Packages.props
<PackageReference Include="AWS.Lambda.Powertools.Parameters" />
 
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 AWS.Lambda.Powertools.Parameters --version 3.2.2
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AWS.Lambda.Powertools.Parameters, 3.2.2"
 
 
#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 AWS.Lambda.Powertools.Parameters@3.2.2
 
 
#: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=AWS.Lambda.Powertools.Parameters&version=3.2.2
 
Install as a Cake Addin
#tool nuget:?package=AWS.Lambda.Powertools.Parameters&version=3.2.2
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

AWS.Lambda.Powertools.Parameters

The Parameters utility provides high-level functionality to retrieve one or multiple parameter values from AWS Systems Manager Parameter Store, AWS Secrets Manager, or Amazon DynamoDB. Or bring your own providers.

Key features

  • Retrieve one or multiple parameters from the underlying provider
  • Cache parameter values for a given amount of time (defaults to 5 seconds)
  • Transform parameter values from JSON or base 64 encoded strings
  • Bring your own parameter store provider

Read the docs

For a full list of features go to docs.aws.amazon.com/powertools/dotnet/utilities/parameters/

GitHub: https://github.com/aws-powertools/powertools-lambda-dotnet/

Sample Function using AWS Systems Manager Parameter Store

using AWS.Lambda.Powertools.Logging;
using AWS.Lambda.Powertools.Parameters;
using AWS.Lambda.Powertools.Parameters.SimpleSystemsManagement;

namespace HelloWorld;

public class Function
{
 [Logging(LogEvent = true)]
 public async Task<APIGatewayProxyResponse> FunctionHandler(APIGatewayProxyRequest apigwProxyEvent,
 ILambdaContext context)
 { 
 // Get SSM Provider instance
 ISsmProvider ssmProvider = ParametersManager.SsmProvider;

 // Retrieve a single parameter
 string? value = await ssmProvider
 .GetAsync("/my/parameter")
 .ConfigureAwait(false);

 // Retrieve multiple parameters from a path prefix
 // This returns a Dictionary with the parameter name as key
 IDictionary<string, string?> values = await ssmProvider
 .GetMultipleAsync("/my/path/prefix")
 .ConfigureAwait(false);

 ...

 }
}
Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.2.2 810 5/25/2026
3.2.1 11,324 3/19/2026
3.2.0 9,768 3/12/2026
3.1.0 12,435 1/6/2026
3.0.2 7,376 11/5/2025
3.0.1 1,875 10/21/2025
3.0.1-alpha 208 10/15/2025
3.0.0 1,870 10/8/2025
1.3.1 16,329 5/20/2025
1.3.0 385,343 3/10/2024
1.2.0 17,835 2/16/2024
1.1.2 50,251 9/19/2023
1.0.0 418 9/7/2023
0.0.3-preview 381 8/22/2023
0.0.2-preview 1,869 6/21/2023
0.0.1-preview 313 5/12/2023