AWS Security ChangesHomeSearch

AWS code-library documentation change

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

File: code-library/latest/ug/elastic-load-balancing-v2_example_elastic-load-balancing-v2_ModifyTargetGroupAttributes_section.md

Summary

Added PowerShell V5 example for modifying target group deregistration delay

Security assessment

Demonstrates configuration of operational parameters without direct security impact. No evidence of security feature documentation or vulnerability mitigation.

Diff

diff --git a/code-library/latest/ug/elastic-load-balancing-v2_example_elastic-load-balancing-v2_ModifyTargetGroupAttributes_section.md b/code-library/latest/ug/elastic-load-balancing-v2_example_elastic-load-balancing-v2_ModifyTargetGroupAttributes_section.md
index cc960d813..0048e1fe2 100644
--- a//code-library/latest/ug/elastic-load-balancing-v2_example_elastic-load-balancing-v2_ModifyTargetGroupAttributes_section.md
+++ b//code-library/latest/ug/elastic-load-balancing-v2_example_elastic-load-balancing-v2_ModifyTargetGroupAttributes_section.md
@@ -84,0 +85,26 @@ PowerShell
+**Tools for PowerShell V5**
+    
+
+**Example 1: This example modifies the deregistration_delay attribute of the specified Target Group.**
+    
+    
+    Edit-ELB2TargetGroupAttribute -TargetGroupArn 'arn:aws:elasticloadbalancing:us-east-1:123456789012:targetgroup/test-tg/a4e04b3688be1970' -Attribute @{Key = 'deregistration_delay.timeout_seconds'; Value = 600}
+    
+
+**Output:**
+    
+    
+    Key                                   Value
+    ---                                   -----
+    stickiness.enabled                    false
+    deregistration_delay.timeout_seconds  600
+    stickiness.type                       lb_cookie
+    stickiness.lb_cookie.duration_seconds 86400
+    slow_start.duration_seconds           0
+    load_balancing.algorithm.type         round_robin
+
+  * For API details, see [ModifyTargetGroupAttributes](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. 
+
+
+
+