AWS Security ChangesHomeSearch

AWS code-library documentation change

Service: code-library · 2026-01-25 · Documentation low

File: code-library/latest/ug/ses_example_ses_DeleteIdentity_section.md

Summary

Added SAP ABAP code example for DeleteIdentity operation

Security assessment

Demonstrates identity management without security-specific context. No evidence of security vulnerability remediation or security feature documentation.

Diff

diff --git a/code-library/latest/ug/ses_example_ses_DeleteIdentity_section.md b/code-library/latest/ug/ses_example_ses_DeleteIdentity_section.md
index 7eb57d580..047e6b638 100644
--- a//code-library/latest/ug/ses_example_ses_DeleteIdentity_section.md
+++ b//code-library/latest/ug/ses_example_ses_DeleteIdentity_section.md
@@ -211,0 +212,27 @@ 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/ses#code-examples). 
+    
+    
+        TRY.
+            lo_ses->deleteidentity( iv_identity = iv_identity ).
+            MESSAGE 'Identity deleted successfully' TYPE 'I'.
+          CATCH /aws1/cx_rt_generic INTO DATA(lo_ex).
+            DATA(lv_error) = |An error occurred: { lo_ex->get_text( ) }|.
+            MESSAGE lv_error TYPE 'I'.
+            RAISE EXCEPTION lo_ex.
+        ENDTRY.
+    
+    
+
+  * For API details, see [DeleteIdentity](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. 
+
+
+
+