Skip to content

Commit 375640c

Browse files
docs(navigation): make Key Feature the first section (#2517)
1 parent 039e196 commit 375640c

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

docs/utilities/batch.md

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

66
The batch processing utility handles partial failures when processing batches from Amazon SQS, Amazon Kinesis Data Streams, and Amazon DynamoDB Streams.
77

8-
## Key Features
8+
## Key features
99

1010
* Reports batch item failures to reduce number of retries for a record upon errors
1111
* Simple interface to process each batch record

docs/utilities/data_classes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Utility
77

88
Event Source Data Classes utility provides classes self-describing Lambda event sources.
99

10-
## Key Features
10+
## Key features
1111

1212
* Type hinting and code completion for common event types
1313
* Helper functions for decoding/deserializing nested fields

docs/utilities/feature_flags.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ The feature flags utility provides a simple rule engine to define when one or mu
88
???+ info
99
When using `AppConfigStore`, we currently only support AppConfig using [freeform configuration profile](https://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html#appconfig-creating-configuration-and-profile-free-form-configurations){target="_blank"} .
1010

11+
## Key features
12+
13+
* Define simple feature flags to dynamically decide when to enable a feature
14+
* Fetch one or all feature flags enabled for a given application context
15+
* Support for static feature flags to simply turn on/off a feature without rules
16+
* Support for time based feature flags
17+
* Bring your own Feature Flags Store Provider
18+
1119
## Terminology
1220

1321
Feature flags are used to modify behaviour without changing the application's code. These flags can be **static** or **dynamic**.
@@ -31,14 +39,6 @@ If you want to learn more about feature flags, their variations and trade-offs,
3139
???+ note
3240
AWS AppConfig requires two API calls to fetch configuration for the first time. You can improve latency by consolidating your feature settings in a single [Configuration](https://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html){target="_blank"}.
3341

34-
## Key features
35-
36-
* Define simple feature flags to dynamically decide when to enable a feature
37-
* Fetch one or all feature flags enabled for a given application context
38-
* Support for static feature flags to simply turn on/off a feature without rules
39-
* Support for time based feature flags
40-
* Bring your own Feature Flags Store Provider
41-
4242
## Getting started
4343

4444
### IAM Permissions

docs/utilities/idempotency.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ description: Utility
88
The idempotency utility provides a simple solution to convert your Lambda functions into idempotent operations which
99
are safe to retry.
1010

11+
## Key features
12+
13+
* Prevent Lambda handler from executing more than once on the same event payload during a time window
14+
* Ensure Lambda handler returns the same result when called with the same payload
15+
* Select a subset of the event as the idempotency key using JMESPath expressions
16+
* Set a time window in which records with the same payload should be considered duplicates
17+
* Expires in-progress executions if the Lambda function times out halfway through
18+
1119
## Terminology
1220

1321
The property of idempotency means that an operation does not cause additional side effects if it is called more than
@@ -44,14 +52,6 @@ classDiagram
4452
<i>Idempotency record representation</i>
4553
</center>
4654

47-
## Key features
48-
49-
* Prevent Lambda handler from executing more than once on the same event payload during a time window
50-
* Ensure Lambda handler returns the same result when called with the same payload
51-
* Select a subset of the event as the idempotency key using JMESPath expressions
52-
* Set a time window in which records with the same payload should be considered duplicates
53-
* Expires in-progress executions if the Lambda function times out halfway through
54-
5555
## Getting started
5656

5757
### IAM Permissions

docs/utilities/streaming.md

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

66
The streaming utility handles datasets larger than the available memory as streaming data.
77

8-
## Key Features
8+
## Key features
99

1010
* Stream Amazon S3 objects with a file-like interface with minimal memory consumption
1111
* Built-in popular data transformations to decompress and deserialize (gzip, CSV, and ZIP)

0 commit comments

Comments
 (0)