We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab368ee commit f2cd24dCopy full SHA for f2cd24d
packages/aws-cdk-lib/aws-s3/lib/bucket.ts
@@ -3291,6 +3291,21 @@ export enum EventType {
3291
* object’s ACL.
3292
*/
3293
OBJECT_ACL_PUT = 's3:ObjectAcl:Put',
3294
+
3295
+ /**
3296
+ * Using restore object event types you can receive notifications for
3297
+ * initiation and completion when restoring objects from the S3 Glacier
3298
+ * storage class.
3299
+ *
3300
+ * You use s3:ObjectRestore:* to request notification of
3301
+ * any restoration event.
3302
+ */
3303
+ OBJECT_RESTORE = 's3:ObjectRestore:*',
3304
3305
3306
+ * You receive this notification event for any object replication event.
3307
3308
+ REPLICATION = 's3:Replication:*',
3309
}
3310
3311
export interface NotificationKeyFilter {
0 commit comments