kettle
kettle copied to clipboard
Is it possible to add page-size ?
In dynamodb we can use page size, so with this package can I sent page size?
aws dynamodb query --table-name Movies \
--projection-expression "title" \
--key-condition-expression "#y = :yyyy" \
--expression-attribute-names '{"#y":"year"}' \
--expression-attribute-values '{":yyyy":{"N":"1993"}}' \
--page-size 5 \
--debug