有人知道如何通过EventBridge API启用s3通知吗?这些文档不是很有用:https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3api/put-bucket-notification-configuration.html。
发布于 2021-12-08 12:51:34
所有事件都被发送到帐户中的默认总线,因此没有什么可配置的。这使得文档和调用结构变得混乱。如果将API调用转换为XML,则更有意义。
await s3Client.putBucketNotificationConfiguration({
Bucket: 'my-bucket-name',
NotificationConfiguration: {
EventBridgeConfiguration: {},
}
}).promise();https://stackoverflow.com/questions/70263754
复制相似问题