Skip to content

Commit e87ac0b

Browse files
author
Michael Brewer
committed
docs: Fix doc links and line highlights
Changes: - docs(batch): Remove archors for `sqs_batch_processor` and `PartialSQSProcessor` - docs(idempotency): Fix link for `IdempotencyConfig` - docs(paramters): Fix link for `AWS AppConfig` - docs(tracer): Fix link highlight for `capture_lambda_handler`
1 parent b558b18 commit e87ac0b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/core/tracer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Before your use this utility, your AWS Lambda function [must have permissions](h
4141
You can quickly start by importing the `Tracer` class, initialize it outside the Lambda handler, and use `capture_lambda_handler` decorator.
4242

4343
=== "app.py"
44-
```python hl_lines="1 3 7"
44+
```python hl_lines="1 3 6"
4545
from aws_lambda_powertools import Tracer
4646

4747
tracer = Tracer() # Sets service via env var

docs/utilities/batch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Before your use this utility, your AWS Lambda function must have `sqs:DeleteMess
5454

5555
### Processing messages from SQS
5656

57-
You can use either **[sqs_batch_processor](#sqs_batch_processor-decorator)** decorator, or **[PartialSQSProcessor](#partialsqsprocessor-context-manager)** as a context manager if you'd like access to the processed results.
57+
You can use either `sqs_batch_processor` decorator, or `PartialSQSProcessor` as a context manager if you'd like access to the processed results.
5858

5959
You need to create a function to handle each record from the batch - We call it `record_handler` from here on.
6060

docs/utilities/idempotency.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ You can quickly start by initializing the `DynamoDBPersistenceLayer` class and u
124124
!!! tip "Dealing with always changing payloads"
125125
When dealing with a more elaborate payload, where parts of the payload always change, you should use **`event_key_jmespath`** parameter.
126126

127-
Use [`IdempotencyConfig`](#customizing-the-default-behaviour) to instruct the idempotent decorator to only use a portion of your payload to verify whether a request is idempotent, and therefore it should not be retried.
127+
Use [`IdempotencyConfig`](#customizing-the-default-behavior) to instruct the idempotent decorator to only use a portion of your payload to verify whether a request is idempotent, and therefore it should not be retried.
128128

129129
> **Payment scenario**
130130

docs/utilities/parameters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Utility
44
---
55

66

7-
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://aws.amazon.com/secrets-manager/), [AWS AppConfig](https://aws.amazon.com/appconfig/){target="_blank"}, [Amazon DynamoDB](https://aws.amazon.com/dynamodb/){target="_blank"}, or bring your own.
7+
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://aws.amazon.com/secrets-manager/){target="_blank"}, [AWS AppConfig](https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html){target="_blank"}, [Amazon DynamoDB](https://aws.amazon.com/dynamodb/){target="_blank"}, or bring your own.
88

99
## Key features
1010

0 commit comments

Comments
 (0)