AWS Security ChangesHomeSearch

AWS IAM documentation change

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

File: IAM/latest/UserGuide/iam_example_iam_DeleteAccountAlias_section.md

Summary

Added SAP ABAP SDK code example for DeleteAccountAlias API

Security assessment

Adds alias management example without security context. No evidence of security fixes.

Diff

diff --git a/IAM/latest/UserGuide/iam_example_iam_DeleteAccountAlias_section.md b/IAM/latest/UserGuide/iam_example_iam_DeleteAccountAlias_section.md
index 4d855bb9d..bea42ffa7 100644
--- a//IAM/latest/UserGuide/iam_example_iam_DeleteAccountAlias_section.md
+++ b//IAM/latest/UserGuide/iam_example_iam_DeleteAccountAlias_section.md
@@ -378,0 +379,26 @@ List, create, and delete account aliases.
+
+
+
+
+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/iam#code-examples). 
+    
+    
+        TRY.
+            lo_iam->deleteaccountalias(
+              iv_accountalias = iv_account_alias ).
+            MESSAGE 'Account alias deleted successfully.' TYPE 'I'.
+          CATCH /aws1/cx_iamnosuchentityex.
+            MESSAGE 'Account alias does not exist.' TYPE 'E'.
+        ENDTRY.
+    
+    
+
+  * For API details, see [DeleteAccountAlias](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_.