RemoveAllBucketNotification - Remove bucket notification clears all previously specified config
(ctx context.Context, bucketName string)
| 74 | |
| 75 | // RemoveAllBucketNotification - Remove bucket notification clears all previously specified config |
| 76 | func (c *Client) RemoveAllBucketNotification(ctx context.Context, bucketName string) error { |
| 77 | return c.SetBucketNotification(ctx, bucketName, notification.Configuration{}) |
| 78 | } |
| 79 | |
| 80 | // GetBucketNotification returns current bucket notification configuration |
| 81 | func (c *Client) GetBucketNotification(ctx context.Context, bucketName string) (bucketNotification notification.Configuration, err error) { |
no test coverage detected