@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ObjectACL extends Enum<ObjectACL>
A value that sets the access control list (ACL) permission for objects in the S3 bucket that a file gateway puts
objects into. The default value is private
.
Enum Constant and Description |
---|
AuthenticatedRead |
AwsExecRead |
BucketOwnerFullControl |
BucketOwnerRead |
Private |
PublicRead |
PublicReadWrite |
Modifier and Type | Method and Description |
---|---|
static ObjectACL |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ObjectACL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectACL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectACL Private
public static final ObjectACL PublicRead
public static final ObjectACL PublicReadWrite
public static final ObjectACL AuthenticatedRead
public static final ObjectACL BucketOwnerRead
public static final ObjectACL BucketOwnerFullControl
public static final ObjectACL AwsExecRead
public static ObjectACL[] values()
for (ObjectACL c : ObjectACL.values()) System.out.println(c);
public static ObjectACL valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ObjectACL fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.