-
Notifications
You must be signed in to change notification settings - Fork 516
Closed
Description
The EventType enum contains the possible bucket notifications. All s3:Replicate events are missing. See the snippet below
** Amazon AWS S3 event types for notifications. */
@Root(name = "Event")
@Convert(EventType.EventTypeConverter.class)
public enum EventType {
OBJECT_CREATED_ANY("s3:ObjectCreated:*"),
OBJECT_CREATED_PUT("s3:ObjectCreated:Put"),
OBJECT_CREATED_POST("s3:ObjectCreated:Post"),
OBJECT_CREATED_COPY("s3:ObjectCreated:Copy"),
OBJECT_CREATED_COMPLETE_MULTIPART_UPLOAD("s3:ObjectCreated:CompleteMultipartUpload"),
OBJECT_ACCESSED_GET("s3:ObjectAccessed:Get"),
OBJECT_ACCESSED_HEAD("s3:ObjectAccessed:Head"),
OBJECT_ACCESSED_ANY("s3:ObjectAccessed:*"),
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"),
BUCKET_CREATED("s3:BucketCreated"),
BUCKET_REMOVED("s3:BucketRemoved");The minio-go client does contain these events: https://github.com/minio/minio/blob/master/internal/event/name.go, so I expect it is simply out of sync and should be added.
Metadata
Metadata
Assignees
Labels
No labels