AWS Security ChangesHomeSearch

AWS healthimaging documentation change

Service: healthimaging · 2026-01-25 · Documentation low

File: healthimaging/latest/devguide/delete-data-store.md

Summary

Added SAP ABAP SDK code example for DeleteDatastore API

Security assessment

Added code sample with standard error cases. No security-related changes to access controls or vulnerability mitigations present in the diff.

Diff

diff --git a/healthimaging/latest/devguide/delete-data-store.md b/healthimaging/latest/devguide/delete-data-store.md
index 57dca4cf6..b27165491 100644
--- a//healthimaging/latest/devguide/delete-data-store.md
+++ b//healthimaging/latest/devguide/delete-data-store.md
@@ -272,0 +273,36 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+SAP ABAP
+    
+
+**SDK for SAP ABAP**
+    
+    
+    
+        TRY.
+            " iv_datastore_id = '1234567890123456789012345678901234567890'
+            oo_result = lo_mig->deletedatastore( iv_datastoreid = iv_datastore_id ).
+            MESSAGE 'Data store deleted.' TYPE 'I'.
+          CATCH /aws1/cx_migaccessdeniedex.
+            MESSAGE 'Access denied.' TYPE 'I'.
+          CATCH /aws1/cx_migconflictexception.
+            MESSAGE 'Conflict. Data store may contain resources.' TYPE 'I'.
+          CATCH /aws1/cx_miginternalserverex.
+            MESSAGE 'Internal server error.' TYPE 'I'.
+          CATCH /aws1/cx_migresourcenotfoundex.
+            MESSAGE 'Data store not found.' TYPE 'I'.
+          CATCH /aws1/cx_migthrottlingex.
+            MESSAGE 'Request throttled.' TYPE 'I'.
+          CATCH /aws1/cx_migvalidationex.
+            MESSAGE 'Validation error.' TYPE 'I'.
+        ENDTRY.
+    
+    
+
+  * For API details, see [DeleteDatastore](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. 
+
+
+
+
+###### Note
+
+There's more on GitHub. Find the complete example and learn how to set up and run in the [AWS Code Examples Repository](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/sap-abap/services/mig#code-examples). 
+