Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A suite of Python utilities for AWS Lambda functions to ease adopting best pract
* **[Event source data classes](https://awslabs.github.io/aws-lambda-powertools-python/latest/utilities/data_classes/)** - Data classes describing the schema of common Lambda event triggers
* **[Parser](https://awslabs.github.io/aws-lambda-powertools-python/latest/utilities/parser/)** - Data parsing and deep validation using Pydantic
* **[Idempotency](https://awslabs.github.io/aws-lambda-powertools-python/latest/utilities/idempotency/)** - Convert your Lambda functions into idempotent operations which are safe to retry
* **[Feature Flags](./utilities/feature_flags.md)** - A simple rule engine to evaluate when one or multiple features should be enabled depending on the input
* **[Feature Flags](https://awslabs.github.io/aws-lambda-powertools-python/latest/utilities/feature_flags/)** - A simple rule engine to evaluate when one or multiple features should be enabled depending on the input

### Installation

Expand Down
4 changes: 2 additions & 2 deletions docs/utilities/feature_flags.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ You can use `get_enabled_features` method for scenarios where you need a list of

```json hl_lines="2 8"
{
"body": '{"username": "lessa", "tier": "premium", "basked_id": "random_id"}',
"body": "{\"username\": \"lessa\", \"tier\": \"premium\", \"basked_id\": \"random_id\"}",
"resource": "/products",
"path": "/products",
"httpMethod": "GET",
Expand Down Expand Up @@ -370,7 +370,7 @@ You can use `get_enabled_features` method for scenarios where you need a list of
{
"action": "IN",
"key": "CloudFront-Viewer-Country",
"value": ["NL", "IE", "UK", "PL", "PT"},
"value": ["NL", "IE", "UK", "PL", "PT"],
}
]
}
Expand Down