Hi All,
I have a Amazon Bucket List and Inside this list Multiple Image Stored. I want retrive all Image in Particular Bucktet.
I used this S3 Action:
But this Server action Return one Image at a Time but if i used for Loop than every time Connect with server so they will Increase Time and also reduce Efficiency
Can you please suggest and server action where we find all bucket Image once call server action
Hi MD Mansur,
Objects_List is the action you can use for getting all the objects in that bucket. But this will be only a list, not all the objects.
I'm wondering why would you need all binaries at once. Can you use the URLs built for all these objects? Then just pass on those URLs to the client side, and these URLs will allow the client code to access these objects. If you don't need presigned URLs and your objects are publicly accessible, you can build URLs with just using the region, bucket and object key parameters without having to call S3 service. Only one call for listing would do the job, if this fits your scenario.