Skip to content

Commit f2cd24d

Browse files
authoredMar 4, 2025
chore(s3): backfill missing enums for s3 (#33655)
### Description of changes backfill missing enums for s3 ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent ab368ee commit f2cd24d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎packages/aws-cdk-lib/aws-s3/lib/bucket.ts

+15
Original file line numberDiff line numberDiff line change
@@ -3291,6 +3291,21 @@ export enum EventType {
32913291
* object’s ACL.
32923292
*/
32933293
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:*',
32943309
}
32953310

32963311
export interface NotificationKeyFilter {

0 commit comments

Comments
 (0)
Failed to load comments.