@Generated(value="software.amazon.awssdk:codegen") public enum ObjectACL extends Enum<ObjectACL>
A value that sets the access control list permission for objects in the S3 bucket that a file gateway puts objects into. The default value is "private".
Enum Constant and Description |
---|
AUTHENTICATED_READ |
AWS_EXEC_READ |
BUCKET_OWNER_FULL_CONTROL |
BUCKET_OWNER_READ |
PRIVATE |
PUBLIC_READ |
PUBLIC_READ_WRITE |
UNKNOWN_TO_SDK_VERSION |
Modifier and Type | Method and Description |
---|---|
static ObjectACL |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<ObjectACL> |
knownValues()
|
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 PUBLIC_READ
public static final ObjectACL PUBLIC_READ_WRITE
public static final ObjectACL AUTHENTICATED_READ
public static final ObjectACL BUCKET_OWNER_READ
public static final ObjectACL BUCKET_OWNER_FULL_CONTROL
public static final ObjectACL AWS_EXEC_READ
public static final ObjectACL UNKNOWN_TO_SDK_VERSION
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 valueCopyright © 2017 Amazon Web Services, Inc. All Rights Reserved.