Interface NotificationKeyFilter

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:13.260Z") @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());