I have an application that stores images in AWS S3. It is like a profile picture upload case. After uploading the profile picture, the image will be stored in AWS S3 and the S3 link will be stored in a database. The application will then show the profile picture using that link in the database.
Right now, as the bucket is private the profile picture is not visible in my application. How can I use this link to show the image without making the bucket public?
I don't think, I can use AWS's signed URL because this link can't be time-limited. The link need to be available all the time for showing the image on the application.
Is there any method to do so? Or is there any other industry-standard method for making this feature possible?