Skip to content

Commit

Permalink
Add bucket 'created' and 'removed' event (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreBarde committed Nov 20, 2022
1 parent 03bd9c3 commit d0f789d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/src/main/java/io/minio/messages/EventType.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ public enum EventType {
OBJECT_REMOVED_ANY("s3:ObjectRemoved:*"),
OBJECT_REMOVED_DELETE("s3:ObjectRemoved:Delete"),
OBJECT_REMOVED_DELETED_MARKER_CREATED("s3:ObjectRemoved:DeleteMarkerCreated"),
REDUCED_REDUNDANCY_LOST_OBJECT("s3:ReducedRedundancyLostObject");
REDUCED_REDUNDANCY_LOST_OBJECT("s3:ReducedRedundancyLostObject"),
BUCKET_CREATED("s3:BucketCreated"),
BUCKET_REMOVED("s3:BucketRemoved");

private final String value;

Expand Down

0 comments on commit d0f789d

Please sign in to comment.