Package com.amazonaws.services.s3.model
Class Filter
- java.lang.Object
-
- com.amazonaws.services.s3.model.Filter
-
- All Implemented Interfaces:
Serializable
public class Filter extends Object implements Serializable
Defines a set of filter criteria that limits the objects that can trigger event notifications- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Filter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description S3KeyFilter
getS3KeyFilter()
Filter criteria that limits the objects that can trigger event notifications based on their S3 Key namevoid
setS3KeyFilter(S3KeyFilter s3KeyFilter)
Sets theS3KeyFilter
for thisFilter
Filter
withS3KeyFilter(S3KeyFilter s3KeyFilter)
Sets theS3KeyFilter
for thisFilter
and returns this object for method chaining
-
-
-
Method Detail
-
getS3KeyFilter
public S3KeyFilter getS3KeyFilter()
Filter criteria that limits the objects that can trigger event notifications based on their S3 Key name- Returns:
- The
S3KeyFilter
object associated with thisFilter
-
setS3KeyFilter
public void setS3KeyFilter(S3KeyFilter s3KeyFilter)
Sets theS3KeyFilter
for thisFilter
- Parameters:
s3KeyFilter
- NewS3KeyFilter
-
withS3KeyFilter
public Filter withS3KeyFilter(S3KeyFilter s3KeyFilter)
Sets theS3KeyFilter
for thisFilter
and returns this object for method chaining- Parameters:
s3KeyFilter
- NewS3KeyFilter
- Returns:
- This object for method chaining
-
-