AWS Security ChangesHomeSearch

AWS ses documentation change

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

File: ses/latest/dg/ses_example_ses_VerifyEmailIdentity_section.md

Summary

Added SAP ABAP SDK code example for VerifyEmailIdentity API

Security assessment

Documents email verification security feature. No vulnerability fixes, but enhances security documentation for identity validation mechanisms.

Diff

diff --git a/ses/latest/dg/ses_example_ses_VerifyEmailIdentity_section.md b/ses/latest/dg/ses_example_ses_VerifyEmailIdentity_section.md
index 9c588b486..9b06e488c 100644
--- a//ses/latest/dg/ses_example_ses_VerifyEmailIdentity_section.md
+++ b//ses/latest/dg/ses_example_ses_VerifyEmailIdentity_section.md
@@ -262,0 +263,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->verifyemailidentity( iv_emailaddress = iv_email_address ).
+            MESSAGE 'Email verification initiated' 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 [VerifyEmailIdentity](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. 
+
+
+
+