AWS Security ChangesHomeSearch

AWS AmazonECR documentation change

Service: AmazonECR · 2025-10-16 · Documentation low

File: AmazonECR/latest/userguide/ecr-eventbridge.md

Summary

Added documentation for a new EventBridge event type (failed image replication)

Security assessment

Documents operational monitoring capabilities for replication failures but does not introduce security features or address vulnerabilities. Improves visibility but lacks explicit security context.

Diff

diff --git a/AmazonECR/latest/userguide/ecr-eventbridge.md b/AmazonECR/latest/userguide/ecr-eventbridge.md
index 496aec04f..b06af9c15 100644
--- a//AmazonECR/latest/userguide/ecr-eventbridge.md
+++ b//AmazonECR/latest/userguide/ecr-eventbridge.md
@@ -203,0 +204,27 @@ The following event is sent when each image replication is completed. For more i
+**Event for a failed image replication**
+
+The following event is sent when an image replication fails. The `result` field will contain `FAILED` and additional error information may be included in the event details.
+    
+    
+    {
+      "version": "0",
+      "id": "d9c244c2-7130-ff84-f3b2-5g577c9cb000",
+      "detail-type": "ECR Replication Action",
+      "source": "aws.ecr",
+      "account": "123456789012",
+      "time": "2024-05-08T20:45:12Z",
+      "region": "us-east-1",
+      "resources": [
+        "arn:aws:ecr:us-east-1:123456789012:repository/my-app"
+      ],
+      "detail": {
+        "result": "FAILED",
+        "repository-name": "my-app",
+        "image-digest": "sha256:8g6c3751gf7gc5g47603ege4511d5a80ead5g90f5893543f1489bde2345",
+        "source-account": "123456789012",
+        "action-type": "REPLICATE",
+        "source-region": "us-west-2",
+        "image-tag": "latest"
+      }
+    }
+