关闭事件通知
更新时间: 2019-03-14 10:05
关闭桶事件通知实际上就是调用ObsClient.SetBucketNotification将事件通知配置清空,以下代码展示了如何清除桶的事件通知:
- // 引入依赖包
- import (
- "fmt"
- "obs"
- )
- var ak = "*** Provide your Access Key ***"
- var sk = "*** Provide your Secret Key ***"
- var endpoint = "https://your-endpoint"
- // 创建ObsClient结构体
- var obsClient, _ = obs.New(ak, sk, endpoint)
- func main() {
- input := &obs.SetBucketNotificationInput{}
- input.Bucket = "bucketname"
- output, err := obsClient.SetBucketNotification(input)
- if err == nil {
- fmt.Printf("RequestId:%s\n", output.RequestId)
- } else if obsError, ok := err.(obs.ObsError); ok {
- fmt.Printf("Code:%s\n", obsError.Code)
- fmt.Printf("Message:%s\n", obsError.Message)
- }
- }
父主题:事件通知