Open coord-e opened 2 years ago
Thanks for pointing this out. I've forwarded this request to the AWS team that maintains that model and will follow up here with any updates. By the way, that's a super clever way of implementing a paginator, I never considered chaining streams together like that!
A note for the community
Community Note
Tell us about your request
Paginator for
DescribeRules
in aws-sdk-elasticloadbalancingv2.Tell us about the problem you're trying to solve.
I want to describe all rules for a listener by listener's ARN.
DescribeRules
operation has an interface for pagination (marker
,next_marker
, etc.) and I have to use them to list up all rules for a listener. Some operations in aws-sdk-elasticloadbalancingv2 has paginator implementations so they can be paginated easily, butDescribeRules
does not. Having paginator forDescribeRules
would be nice.Are you currently working around this issue?
Implements pagination manually. Note that the following code is for v0.3.0.
Additional context
No response