AWS Security ChangesHomeSearch

AWS amazondynamodb documentation change

Service: amazondynamodb · 2026-02-19 · Documentation low

File: amazondynamodb/latest/developerguide/ql-operators.md

Summary

Added clarification about pagination behavior for IN operator queries

Security assessment

Change documents technical limitation of result pagination (10 items per page). No security context or implications mentioned.

Diff

diff --git a/amazondynamodb/latest/developerguide/ql-operators.md b/amazondynamodb/latest/developerguide/ql-operators.md
index 89767b85e..b762b2dbc 100644
--- a//amazondynamodb/latest/developerguide/ql-operators.md
+++ b//amazondynamodb/latest/developerguide/ql-operators.md
@@ -40 +40 @@ Operator | Description
-`IN` | `TRUE` if the operand is equal to one of a list of expressions (at max 50 hash attribute values or at max 100 non-key attribute values)  
+`IN` | `TRUE` if the operand is equal to one of a list of expressions (at max 50 hash attribute values or at max 100 non-key attribute values). Results are returned in pages of up to 10 items. If the `IN` list contains more values, you must use the `NextToken` returned in the response to retrieve subsequent pages.