Displaying private images from S3

Could someone please explain the steps needed to display a private image from an S3 bucket? The S3 connection is all working but for some reason I can't work out the right configuration to display an image.

For example, this might be a user's profile picture.

  1. Do I use file download or get file from the S3 bucket?
  2. Do I need another step after that to serve the file to the browser? Download file with output enabled?
  3. What is then set as the source of the image?

Thank you

When the files are private you need to use the signed download url action.
The server connect action returns a temporary link that can be used to download the file.

Well that was easy. Thank you!