Interface NotificationKeyFilter

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.710Z") @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());