kettle icon indicating copy to clipboard operation
kettle copied to clipboard

Is it possible to add page-size ?

Open shabeer-ali-m opened this issue 3 years ago • 0 comments

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

shabeer-ali-m avatar May 03 '21 20:05 shabeer-ali-m