-
Notifications
You must be signed in to change notification settings - Fork 638
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
Missing paginator for DynamoDB ListTagsOfResource #2873
Comments
Hi @thieman , Thanks for opening this issue. This paginator is missing because the Dynamo service team did not specify I have created an internal ticket with the Dynamo service team to add this paginator. Im going to transfer this to the cross-sdk repo for further monitoring. Thanks again,
|
Contacted service team for update. Awaiting response. |
Reached out to service team requesting for an update. |
Followed up again with the service team oncall. Awaiting update. |
Service team came back with following response:
Provided them some instances of Awaiting update. |
Followed up with service team, waiting response. |
Describe the feature
DynamoDB's
ListTagsOfResource
is a paginated operation, returning a list and acceptingNextToken
in its input args. However, a Paginator is not provided for it in the SDK. Instead, callers need to call the client'sListTagsOfResource
multiple times. We have the Paginator construct for exactly this use case, not sure why this method doesn't provide one.Use Case
Anyone wanting to get tags from DynamoDB resources will benefit from this, as now they have to paginate manually
Proposed Solution
Implement the same Paginator pattern used throughout the SDK, but for this method
Other Information
No response
Acknowledgements
AWS Go SDK V2 Module Versions Used
N/A
Go version used
N/A
The text was updated successfully, but these errors were encountered: