-
Notifications
You must be signed in to change notification settings - Fork 597
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More async iterator pagination support #1712
Comments
Hi @farski, thank you for creating the issue. The APIs which receive pagination is decided by the Service team. In smithy interface definition language, it is defined by paginated trait. The paginated trait is missing for
The pagination is present in JS SDK v2 for DynamoDB scan and query commands https://github.com/aws/aws-sdk-js/blob/ffcad209c2b2459bb819a27a18bb7b9e83f7e276/apis/dynamodb-2012-08-10.paginators.json#L23-L34 We're tracking this issue internally to populate required pagination trait. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
Is your feature request related to a problem? Please describe.
Based on this recent blog post, it sounded like pagination using async iterators was going to be available for all, or at least most, paginated operations in the SDK. Having spent a little bit of time with the DDB module, the two most common operations that would require pagination (
scan
andquery
) don't seem to offer native async iterator commands.Describe the solution you'd like
It would be ideal if all operations that can produce paginated results supported async iterators.
The text was updated successfully, but these errors were encountered: