Skip to content

Commit e0f863a

Browse files
authored
feat(s3): add s3:ObjectRestore:Delete to EventType for notification (#19250)
closes #19223 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent f109720 commit e0f863a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

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

+10
Original file line numberDiff line numberDiff line change
@@ -2297,6 +2297,16 @@ export enum EventType {
22972297
*/
22982298
OBJECT_RESTORE_COMPLETED = 's3:ObjectRestore:Completed',
22992299

2300+
/**
2301+
* Using restore object event types you can receive notifications for
2302+
* initiation and completion when restoring objects from the S3 Glacier
2303+
* storage class.
2304+
*
2305+
* You use s3:ObjectRestore:Delete to request notification of
2306+
* restoration completion.
2307+
*/
2308+
OBJECT_RESTORE_DELETE = 's3:ObjectRestore:Delete',
2309+
23002310
/**
23012311
* You can use this event type to request Amazon S3 to send a notification
23022312
* message when Amazon S3 detects that an object of the RRS storage class is

0 commit comments

Comments
 (0)