Skip to content

Commit 8379a54

Browse files
committed
fix: duplicate features content
1 parent c5a0499 commit 8379a54

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

docs/content/index.mdx

+9-13
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,6 @@ Powertools is available in PyPi. You can use your favourite dependency managemen
2424
```bash:title=hello_world.sh
2525
sam init --location https://github.com/aws-samples/cookiecutter-aws-sam-python
2626
```
27-
* [Tracing](./core/tracer) - Decorators and utilities to trace Lambda function handlers, and both synchronous and asynchronous functions
28-
* [Logging](./core/logger) - Structured logging made easier, and decorator to enrich structured logging with key Lambda context details
29-
* [Metrics](./core/metrics) - Custom Metrics created asynchronously via CloudWatch Embedded Metric Format (EMF)
30-
* [Bring your own middleware](./utilities/middleware_factory) - Decorator factory to create your own middleware to run logic before, and after each Lambda invocation
31-
* [Parameters utility](./utilities/parameters) - Retrieve parameter values from AWS Systems Manager Parameter Store, AWS Secrets Manager, or Amazon DynamoDB, and cache them for a specific amount of time
32-
* [Batch utility](./utilities/batch) - Batch processing for AWS SQS, handles partial failure.
33-
* [Event source data classes utility](./utilities/data_classes) - Data classes describing the schema of common Lambda event triggers.
3427

3528
### Lambda Layer
3629

@@ -60,9 +53,9 @@ This will add a nested app stack with an output parameter `LayerVersionArn`, tha
6053

6154
You can fetch the available versions via the API with:
6255

63-
```bash
64-
aws serverlessrepo list-application-versions --application-id arn:aws:serverlessrepo:eu-west-1:057560766410:applications/aws-lambda-powertools-python-layer
65-
```
56+
```bash
57+
aws serverlessrepo list-application-versions --application-id arn:aws:serverlessrepo:eu-west-1:057560766410:applications/aws-lambda-powertools-python-layer
58+
```
6659

6760
## Features
6861

@@ -72,9 +65,12 @@ Utility | Description
7265
[Logging](./core/logger) | Structured logging made easier, and decorator to enrich structured logging with key Lambda context details
7366
[Metrics](./core/metrics) | Custom Metrics created asynchronously via CloudWatch Embedded Metric Format (EMF)
7467
[Bring your own middleware](.//utilities/middleware_factory) | Decorator factory to create your own middleware to run logic before, and after each Lambda invocation
75-
[Parameters utility](./utilities/parameters) | Retrieve parameter values from AWS Systems Manager Parameter Store, AWS Secrets Manager, or Amazon DynamoDB, and cache them for a specific amount of time
76-
[Typing utility](./utilities/typing) | Static typing classes to speedup development in your IDE
77-
[Event source data classes](./utilities/data_classes) - Batch processing for AWS SQS, handles partial failure.
68+
[Parameters](./utilities/parameters) | Retrieve parameter values from AWS Systems Manager Parameter Store, AWS Secrets Manager, or Amazon DynamoDB, and cache them for a specific amount of time
69+
[Typing](./utilities/typing) | Static typing classes to speedup development in your IDE
70+
[Batch](./utilities/batch) | Handle partial failures for AWS SQS batch processing
71+
[Validation](./utilities/validation) | JSON Schema validator for inbound events and responses
72+
[Event source data classes](./utilities/data_classes) | Data classes describing the schema of common Lambda event triggers
73+
7874

7975
## Environment variables
8076

0 commit comments

Comments
 (0)