An enumeration of all ACL permissions. For more information, refer:
http://docs.amazonwebservices.com/AmazonS3/latest/S3_ACLs.html#S3_ACLs_Permissions
Namespace: Amazon.S3.ModelAssembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)
Syntax
| C# | Visual Basic | Visual C++ |
public enum S3Permission
Public Enumeration S3Permission
public enum class S3Permission
Members
| Member | Value | Description |
|---|---|---|
| INVALID | 0 |
An invalid permission that will not make the request invalid.
|
| READ | 1 |
When applied to a bucket, grants permission to list the bucket.
When applied to an object, this grants permission to read the
object data and/or metadata.
|
| WRITE | 2 |
When applied to a bucket, grants permission to create, overwrite,
and delete any object in the bucket. This permission is not
supported for objects.
|
| READ_ACP | 3 |
Grants permission to read the ACL for the applicable bucket or object.
The owner of a bucket or object always has this permission implicitly.
|
| WRITE_ACP | 4 |
Gives permission to overwrite the ACP for the applicable bucket or object.
The owner of a bucket or object always has this permission implicitly.
Granting this permission is equivalent to granting FULL_CONTROL because
the grant recipient can make any changes to the ACP.
|
| FULL_CONTROL | 5 |
Provides READ, WRITE, READ_ACP, and WRITE_ACP permissions.
It does not convey additional rights and is provided only for convenience.
|