scireum / s3ninja

S3 ninja emulates the Amazon S3 API for developement and test purposes
MIT License
493 stars 91 forks source link

Creation of Public Buckets #222

Closed jakobvogel closed 1 year ago

jakobvogel commented 1 year ago

Enables creation of public buckets via canned ACL public-read-write.

client.createBucket(new CreateBucketRequest(bucketName).withCannedAcl(CannedAccessControlList.PublicReadWrite));

Closes #196. Closes #189.