![]() |
VOOZH | about |
dotnet add package AWS.Lambda.Powertools.Parameters --version 3.2.2
NuGet\Install-Package AWS.Lambda.Powertools.Parameters -Version 3.2.2
<PackageReference Include="AWS.Lambda.Powertools.Parameters" Version="3.2.2" />
<PackageVersion Include="AWS.Lambda.Powertools.Parameters" Version="3.2.2" />Directory.Packages.props
<PackageReference Include="AWS.Lambda.Powertools.Parameters" />Project file
paket add AWS.Lambda.Powertools.Parameters --version 3.2.2
#r "nuget: AWS.Lambda.Powertools.Parameters, 3.2.2"
#:package AWS.Lambda.Powertools.Parameters@3.2.2
#addin nuget:?package=AWS.Lambda.Powertools.Parameters&version=3.2.2Install as a Cake Addin
#tool nuget:?package=AWS.Lambda.Powertools.Parameters&version=3.2.2Install as a Cake Tool
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.
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/
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. |
This package is not used by any NuGet packages.
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 |