1 Answer
- Newest
- Most votes
- Most comments
0
The error message indicates that the NextToken must have a length less than or equal to 656 characters. After the 10th export, the NextToken exceeds this limit (with a length of 848) and fails validation. Review your pagination strategy and ensure it correctly handles the NextToken.
There is no issue from a code perspective. The
NextToken
being return is of length 848. I do not control that. I believe this may be an issue on AWS's end. If the pagination strategy is correct what other issues could it be?
Please share reproducible code.