AWS Security ChangesHomeSearch

AWS healthimaging documentation change

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

File: healthimaging/latest/devguide/example_medical-imaging_GetImageSetMetadata_section.md

Summary

Added SAP ABAP SDK code example for GetImageSetMetadata API with optional version handling

Security assessment

The change adds a metadata retrieval code sample with versioning support. It demonstrates normal API usage patterns but contains no evidence of addressing security vulnerabilities, security enhancements, or security-specific documentation.

Diff

diff --git a/healthimaging/latest/devguide/example_medical-imaging_GetImageSetMetadata_section.md b/healthimaging/latest/devguide/example_medical-imaging_GetImageSetMetadata_section.md
index d243015a0..8610f549d 100644
--- a//healthimaging/latest/devguide/example_medical-imaging_GetImageSetMetadata_section.md
+++ b//healthimaging/latest/devguide/example_medical-imaging_GetImageSetMetadata_section.md
@@ -383,0 +384,48 @@ 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'
+            " iv_image_set_id = '1234567890123456789012345678901234567890'
+            " iv_version_id = '1' (optional)
+            IF iv_version_id IS NOT INITIAL.
+              oo_result = lo_mig->getimagesetmetadata(
+                iv_datastoreid = iv_datastore_id
+                iv_imagesetid = iv_image_set_id
+                iv_versionid = iv_version_id ).
+            ELSE.
+              oo_result = lo_mig->getimagesetmetadata(
+                iv_datastoreid = iv_datastore_id
+                iv_imagesetid = iv_image_set_id ).
+            ENDIF.
+            DATA(lv_metadata_blob) = oo_result->get_imagesetmetadatablob( ).
+            MESSAGE 'Image set metadata retrieved.' TYPE 'I'.
+          CATCH /aws1/cx_migaccessdeniedex.
+            MESSAGE 'Access denied.' TYPE 'I'.
+          CATCH /aws1/cx_migconflictexception.
+            MESSAGE 'Conflict error.' TYPE 'I'.
+          CATCH /aws1/cx_miginternalserverex.
+            MESSAGE 'Internal server error.' TYPE 'I'.
+          CATCH /aws1/cx_migresourcenotfoundex.
+            MESSAGE 'Image set 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 [GetImageSetMetadata](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). 
+