AWS Security ChangesHomeSearch

AWS code-library documentation change

Service: code-library · 2025-06-28 · Documentation low

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

Summary

Added PowerShell V5 example for ResendValidationEmail operation

Security assessment

Supports domain validation workflows (security process) but does not fix a security issue.

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 58d61e600..0bcf5e194 100644
--- a//code-library/latest/ug/acm_example_acm_ResendValidationEmail_section.md
+++ b//code-library/latest/ug/acm_example_acm_ResendValidationEmail_section.md
@@ -113,0 +114,19 @@ PowerShell
+**Tools for PowerShell V5**
+    
+
+**Example 1: Requests that the email to validate domain ownership for 'www.example.com' be sent. If your shell's $ConfirmPreference is set to 'Medium' or lower, the cmdlet will prompt for confirmation before proceeeding. Add the -Force switch to suppress confirmation prompts.**
+    
+    
+    $params = @{
+        CertificateArn="arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012"
+        Domain="www.example.com"
+        ValidationDomain="example.com"    
+    }        
+    Send-ACMValidationEmail @params
+    
+
+  * For API details, see [ResendValidationEmail](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. 
+
+
+
+