My application is integrated with LDAP and AWS cloud. We login to our application using LDAP credentials.
When I provide a link to a file on a bucket in my UI(https:<bucketname>.s3.amazonaws.com/<file_name>
), the user is just able to click the link to download the file
So, I don't do a s3.get_object
to download that file; just using the full URL works
Similarly I believe I should be able to create a file on the bucket without using s3.put_object
as well. How can I achieve that?