An Enumeration of all possible CannedACLs that can be used for S3 Buckets or S3 Objects. For more information about CannedACLs, refer: http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html#RESTCannedAccessPolicies

Namespace: Amazon.S3.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public enum S3CannedACL
Public Enumeration S3CannedACL
public enum class S3CannedACL

Members

MemberValueDescription
NoACL0
No Canned ACL is used.
Private1
Owner gets FULL_CONTROL. No one else has access rights (default).
PublicRead2
Owner gets FULL_CONTROL and the anonymous principal is granted READ access. If this policy is used on an object, it can be read from a browser with no authentication.
PublicReadWrite3
Owner gets FULL_CONTROL, the anonymous principal is granted READ and WRITE access. This can be a useful policy to apply to a bucket, but is generally not recommended.
AuthenticatedRead4
Owner gets FULL_CONTROL, and any principal authenticated as a registered Amazon S3 user is granted READ access.
BucketOwnerRead5
Object Owner gets FULL_CONTROL, Bucket Owner gets READ This ACL applies only to objects and is equivalent to private when used with PUT Bucket. You use this ACL to let someone other than the bucket owner write content (get full control) in the bucket but still grant the bucket owner read access to the objects.
BucketOwnerFullControl6
Object Owner gets FULL_CONTROL, Bucket Owner gets FULL_CONTROL. This ACL applies only to objects and is equivalent to private when used with PUT Bucket. You use this ACL to let someone other than the bucket owner write content (get full control) in the bucket but still grant the bucket owner full rights over the objects.

See Also