AWS Security ChangesHomeSearch

AWS code-library documentation change

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

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

Summary

Added PowerShell V5 example for DescribeCertificate operation

Security assessment

Provides example for retrieving certificate details, supporting security audits, but no direct security issue remediation.

Diff

diff --git a/code-library/latest/ug/acm_example_acm_DescribeCertificate_section.md b/code-library/latest/ug/acm_example_acm_DescribeCertificate_section.md
index 5a35ab6eb..a11d47e51 100644
--- a//code-library/latest/ug/acm_example_acm_DescribeCertificate_section.md
+++ b//code-library/latest/ug/acm_example_acm_DescribeCertificate_section.md
@@ -823,0 +824,35 @@ PowerShell
+**Tools for PowerShell V5**
+    
+
+**Example 1: Returns details of the specified certificate.**
+    
+    
+    Get-ACMCertificateDetail -CertificateArn "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012"
+    
+
+**Output:**
+    
+    
+    CertificateArn          : arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012
+    CreatedAt               : 1/21/2016 5:55:59 PM
+    DomainName              : www.example.com
+    DomainValidationOptions : {www.example.com}
+    InUseBy                 : {}
+    IssuedAt                : 1/1/0001 12:00:00 AM
+    Issuer                  :
+    KeyAlgorithm            : RSA-2048
+    NotAfter                : 1/1/0001 12:00:00 AM
+    NotBefore               : 1/1/0001 12:00:00 AM
+    RevocationReason        :
+    RevokedAt               : 1/1/0001 12:00:00 AM
+    Serial                  :
+    SignatureAlgorithm      : SHA256WITHRSA
+    Status                  : PENDING_VALIDATION
+    Subject                 : CN=www.example.com
+    SubjectAlternativeNames : {www.example.net}
+
+  * For API details, see [DescribeCertificate](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. 
+
+
+
+