AWS Security ChangesHomeSearch

AWS kms documentation change

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

File: kms/latest/developerguide/example_kms_ListGrants_section.md

Summary

Added SAP ABAP code example for ListGrants operation

Security assessment

Addition of new code sample without security implications. Error handling for KeyNotFound is standard practice, not evidence of security fix.

Diff

diff --git a/kms/latest/developerguide/example_kms_ListGrants_section.md b/kms/latest/developerguide/example_kms_ListGrants_section.md
index 526dd8a6f..35c44cf84 100644
--- a//kms/latest/developerguide/example_kms_ListGrants_section.md
+++ b//kms/latest/developerguide/example_kms_ListGrants_section.md
@@ -306,0 +307,28 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+SAP ABAP
+    
+
+**SDK for SAP ABAP**
+    
+
+###### 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/kms#code-examples). 
+    
+    
+        TRY.
+            " iv_key_id = 'arn:aws:kms:us-east-1:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab'
+            oo_result = lo_kms->listgrants( iv_keyid = iv_key_id ).
+            MESSAGE 'Retrieved grants list.' TYPE 'I'.
+          CATCH /aws1/cx_kmsnotfoundexception.
+            MESSAGE 'Key not found.' TYPE 'E'.
+          CATCH /aws1/cx_kmskmsinternalex.
+            MESSAGE 'An internal error occurred.' TYPE 'E'.
+        ENDTRY.
+    
+    
+
+  * For API details, see [ListGrants](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. 
+
+
+
+