Getting a pre-authenticated URL in an S3 bucket

I am trying to use the S3 bucket as a deployment location for internal, automatically updating application files. This will be the place where the new version files will be dumped for the application to pounce on the update. Since this is an internal application, I was hoping the URL would be private, but only be able to access it using the URL. I was hoping to learn about using third-party software for automatic updates, which means that I cannot use the Amazon API to access it.

Does anyone know how to get the url in a private bucket on S3?

+3
source share
1 answer

You will probably want to use one of the available AWS software development kits (SDKs) that all implement the appropriate methods for creating these URLs using the GetPreSignedURL () method (e.g. Java: generatePresignedUrl () , C #: GetPreSignedURL () ):

GetPreSignedURL HTTP-. HTTP , . , , , , HTTP -. URL- PreSigned GET, PUT HEAD , .

, , S3 , , "+" ?, # ( Ragesh, , ).

!

+6

All Articles