8000 fix missing support for eventbridge notifications in AWS::S3::Bucket … · codeperl/localstack@b569aa4 · GitHub
[go: up one dir, main page]

Skip to content

Commit b569aa4

Browse files
fix missing support for eventbridge notifications in AWS::S3::Bucket (localstack#9338)
1 parent 3e6da2a commit b569aa4

File tree

1 file changed

+3
-0
lines changed
  • localstack/services/cloudformation/models

1 file changed

+3
-0
lines changed

localstack/services/cloudformation/models/s3.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ def s3_bucket_notification_config(
180180
"TopicConfigurations": topic_configs,
181181
},
182182
}
183+
if notif_config.get("EventBridgeConfiguration", {}).get("EventBridgeEnabled"):
184+
result["NotificationConfiguration"]["EventBridgeConfiguration"] = {}
185+
183186
return result
184187

185188
def _handle_result(

0 commit comments

Comments
 (0)
0