Interface NotificationKeyFilter

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
NotificationKeyFilter.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-06T14:43:26.493Z") @Stability(Stable) public interface NotificationKeyFilter extends software.amazon.jsii.JsiiSerializable
Example:

 Queue myQueue;
 Bucket bucket = new Bucket(this, "MyBucket");
 bucket.addEventNotification(EventType.OBJECT_REMOVED, new SqsDestination(myQueue), NotificationKeyFilter.builder()
         .prefix("foo/")
         .suffix(".jpg")
         .build());