I want to do a scan on a table on dynamodb using boto, my problem is I want to paginate using the max_results
and exclusive_start_key
Actually it looks like the only way to access the LastEvaluatedKey
to pass it as exclusive_start_key
is to manually keep track of primary keys and pass the last one as exclusive_start_key
But that is not my problem, my problem is I don't know what format (what object type) I should pass to exclusive_start_key
it does not accept an int even when the table has an integer hash_key?