AWS Security ChangesHomeSearch

AWS code-library documentation change

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

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

Summary

Added SAP ABAP code example for ResendValidationEmail API

Security assessment

The change demonstrates domain validation email functionality, which relates to certificate security. No vulnerabilities are addressed; it's standard feature documentation.

Diff

diff --git a/code-library/latest/ug/acm_example_acm_ResendValidationEmail_section.md b/code-library/latest/ug/acm_example_acm_ResendValidationEmail_section.md
index 0bcf5e194..e632e19f9 100644
--- a//code-library/latest/ug/acm_example_acm_ResendValidationEmail_section.md
+++ b//code-library/latest/ug/acm_example_acm_ResendValidationEmail_section.md
@@ -189,0 +190,38 @@ 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/acm#code-examples). 
+    
+    
+        TRY.
+            " iv_certificate_arn = 'arn:aws:acm:region:123456789012:certificate/certificate-id'
+            " iv_domain = 'example.com'
+            " iv_validation_domain = 'example.com'
+            lo_acm->resendvalidationemail(
+              iv_certificatearn = iv_certificate_arn
+              iv_domain = iv_domain
+              iv_validationdomain = iv_validation_domain
+            ).
+            MESSAGE 'Validation email resent successfully.' TYPE 'I'.
+          CATCH /aws1/cx_acminvalidarnex.
+            MESSAGE 'The certificate ARN is not valid.' TYPE 'I'.
+          CATCH /aws1/cx_acmresourcenotfoundex.
+            MESSAGE 'Certificate not found.' TYPE 'I'.
+          CATCH /aws1/cx_acminvalidstateex.
+            MESSAGE 'Certificate is not in a valid state.' TYPE 'I'.
+          CATCH /aws1/cx_acminvdomvationoptsex.
+            MESSAGE 'Invalid domain validation options.' TYPE 'I'.
+        ENDTRY.
+    
+    
+
+  * For API details, see [ResendValidationEmail](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. 
+
+
+
+