Class S3ConditionFactory
- java.lang.Object
-
- com.amazonaws.auth.policy.conditions.S3ConditionFactory
-
public class S3ConditionFactory extends Object
Factory for creating access control policy conditions specific to Amazon S3. This class provides access to the AWS access control policy condition keys specific to Amazon S3, as well as methods for quickly creating common S3 specific policy conditions such asnewCannedACLCondition(CannedAccessControlList)
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
CANNED_ACL_CONDITION_KEY
Condition key for the canned ACL specified by a request.static String
COPY_SOURCE_CONDITION_KEY
Condition key for the source object specified by a request to copy an object.static String
DELIMITER_CONDITION_KEY
Condition key for the delimiter specified by a request.static String
LOCATION_CONSTRAINT_CONDITION_KEY
Condition key for the location constraint specified by a request.static String
MAX_KEYS_CONDITION_KEY
Condition key for the max keys specified by a request.static String
METADATA_DIRECTIVE_CONDITION_KEY
Condition key for the metadata directive specified by a request to copy an object.static String
PREFIX_CONDITION_KEY
Condition key for the prefix specified by a request.static String
VERSION_ID_CONDITION_KEY
Condition key for the version ID of an object version specified by a request.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Condition
newCannedACLCondition(CannedAccessControlList cannedAcl)
Constructs a new access policy condition that compares an Amazon S3 canned ACL with the canned ACL specified by an incoming request.
-
-
-
Field Detail
-
CANNED_ACL_CONDITION_KEY
public static final String CANNED_ACL_CONDITION_KEY
Condition key for the canned ACL specified by a request.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
LOCATION_CONSTRAINT_CONDITION_KEY
public static final String LOCATION_CONSTRAINT_CONDITION_KEY
Condition key for the location constraint specified by a request.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
PREFIX_CONDITION_KEY
public static final String PREFIX_CONDITION_KEY
Condition key for the prefix specified by a request.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
DELIMITER_CONDITION_KEY
public static final String DELIMITER_CONDITION_KEY
Condition key for the delimiter specified by a request.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
MAX_KEYS_CONDITION_KEY
public static final String MAX_KEYS_CONDITION_KEY
Condition key for the max keys specified by a request.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
COPY_SOURCE_CONDITION_KEY
public static final String COPY_SOURCE_CONDITION_KEY
Condition key for the source object specified by a request to copy an object.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
METADATA_DIRECTIVE_CONDITION_KEY
public static final String METADATA_DIRECTIVE_CONDITION_KEY
Condition key for the metadata directive specified by a request to copy an object.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
VERSION_ID_CONDITION_KEY
public static final String VERSION_ID_CONDITION_KEY
Condition key for the version ID of an object version specified by a request.This condition key may only be used with
StringCondition
objects.- See Also:
- Constant Field Values
-
-
Method Detail
-
newCannedACLCondition
public static Condition newCannedACLCondition(CannedAccessControlList cannedAcl)
Constructs a new access policy condition that compares an Amazon S3 canned ACL with the canned ACL specified by an incoming request.You can use this condition to ensure that any objects uploaded to an Amazon S3 bucket have a specific canned ACL set.
- Parameters:
cannedAcl
- The Amazon S3 canned ACL to compare against.- Returns:
- A new access control policy condition that compares the Amazon S3 canned ACL specified in incoming requests against the value specified.
-
-