Closed jlongman closed 5 years ago
(Note, Lambdas may have been something else, but this definitely affected CloudFront).
Thanks for raising. Looks like the SDK pagination is far more...diverse than I originally catered for.
Doing some work at https://github.com/iann0036/aws-pagination-rules to confirm the correct ruleset, then will update here.
Updated in codebase and former2.com , cheers!
When looking for a large number of CloudFront or Lambda resources (>100), the list stops at the first 100 and does not show later resources.
In
js/datatables.js
insdkcall
there is code to handle pagination but the data returned from the AWS SDK was not in a matching scheme. E.g. it was a layer down likedata = {'DistributionList' = [ 'NextMarker'=xxx, 'Lists'= #etc
and not a peer toDistributionList
likedata = {'NextMarker'=xxx, 'DistributionList': # etc
I patched this locally in the browser by changing the function
sdkcall
as follows: