You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -281,11 +281,12 @@ If instead you want to see Powertools for TypeScript in a slightly more complex
281
281
282
282
Core utilities such as Tracing, Logging, and Metrics will be available across all Lambda Powertools languages. Additional utilities are subjective to each language ecosystem and customer demand.
|[Tracer](./core/tracer.md)| Decorators and utilities to trace Lambda function handlers, and both synchronous and asynchronous functions |
287
+
|[Logger](./core/logger.md)| Structured logging made easier, and a middleware to enrich structured logging with key Lambda context details |
288
+
|[Metrics](./core/metrics.md)| Custom Metrics created asynchronously via CloudWatch Embedded Metric Format (EMF) |
289
+
|[Parameters (beta)](./utilities/parameters.md)| High-level functions to retrieve one or more parameters from AWS SSM Parameter Store, AWS Secrets Manager, AWS AppConfig, and Amazon DynamoDB |
Copy file name to clipboardExpand all lines: docs/utilities/parameters.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@ description: Utility
4
4
---
5
5
6
6
???+ warning
7
-
This page refers to an **unreleased and upcoming utility**. Please refer to this [GitHub milestone](https://github.com/awslabs/aws-lambda-powertools-typescript/milestone/8) for the latest updates.
7
+
**This utility is currently released as beta developer preview** and is intended strictly for feedback and testing purposes **and not for production workloads**.. The version and all future versions tagged with the `-beta` suffix should be treated as not stable. Up until before the [General Availability release](https://github.com/awslabs/aws-lambda-powertools-typescript/milestone/10) we might introduce significant breaking changes and improvements in response to customers feedback.
8
8
9
9
The Parameters utility provides high-level functions to retrieve one or multiple parameter values from [AWS Systems Manager Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html){target="_blank"}, [AWS Secrets Manager](https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html){target="_blank"}, [AWS AppConfig](https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html){target="_blank"}, [Amazon DynamoDB](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Introduction.html){target="_blank"}, or your own parameter store.
10
10
11
11
## Key features
12
12
13
13
* Retrieve one or multiple parameters from the underlying provider
14
14
* Cache parameter values for a given amount of time (defaults to 5 seconds)
15
-
* Transform parameter values from JSON or base 64 encoded strings
15
+
* Transform parameter values from JSON or base64 encoded strings
16
16
* Bring Your Own Parameter Store Provider
17
17
18
18
## Getting started
@@ -22,7 +22,7 @@ The Parameters Utility helps to retrieve parameters from the System Manager Para
22
22
### Installation
23
23
24
24
???+ note
25
-
This utility supports **[AWS SDK v3 for JavaScript](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/) only**. This allows the utility to be modular, and you to install only the SDK packages you need and keep your bundle size small.
25
+
This utility supports **[AWS SDK for JavaScript v3](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/) only**. This allows the utility to be modular, and you to install only the SDK packages you need and keep your bundle size small.
26
26
27
27
Depending on the provider you want to use, install the library and the corresponding AWS SDK package:
| This AWS Lambda Powertools for TypeScript utility is currently released as beta developer preview and is intended strictly for feedback and testing purposes only. <br/>This version is not stable, and significant breaking changes might incur before going [before the GA release](https://github.com/awslabs/aws-lambda-powertools-typescript/milestone/10). |_|
3
+
| ⚠️ **WARNING: Do not use this utility in production just yet!** ⚠️ |
|**This utility is currently released as beta developer preview** and is intended strictly for feedback and testing purposes **and not for production workloads**.. The version and all future versions tagged with the `-beta` suffix should be treated as not stable. Up until before the [General Availability release](https://github.com/awslabs/aws-lambda-powertools-typescript/milestone/10) we might introduce significant breaking changes and improvements in response to customers feedback. |_|
6
6
7
7
Powertools is a developer toolkit to implement Serverless [best practices and increase developer velocity](https://awslabs.github.io/aws-lambda-powertools-typescript/latest/#features).
0 commit comments