aws / aws-sdk-js-v3

Modularized AWS SDK for JavaScript.
Apache License 2.0
2.96k stars 557 forks source link

Add Paginators that are missing for several S3 Operations #6226

Open X-Guardian opened 6 days ago

X-Guardian commented 6 days ago

Describe the feature

The following S3 operations are missing paginators:

These were referenced previously in this stale feature request: https://github.com/aws/aws-sdk-js-v3/issues/1555 by @alexforsyth.

Use Case

Using these operations means manually dealing with pagination each time.

Proposed Solution

No response

Other Information

No response

Acknowledgements

SDK version used

3.600.0

Environment details (OS name and version, etc.)

All

RanVaknin commented 6 days ago

Hi @X-Guardian ,

Thanks for reaching out. The paginators of the SDK are code generated from the model files of every AWS service. With the case of these 3 paginators, the SDK did not generate paginators for these 3 operations since they use multi value pagination token which does not conform to the smithy API standard for pagination.

I'll add it to our backlog for further consideration.

Thanks again, Ran~