AWS Security ChangesHomeSearch

AWS apigateway documentation change

Service: apigateway · 2025-03-30 · Documentation low

File: apigateway/latest/developerguide/apigateway-private-api-create.md

Summary

Added Dualstack IP address type configuration requirement when creating private APIs

Security assessment

Documents configuration requirements for IP addressing but does not address security vulnerabilities

Diff

diff --git a/apigateway/latest/developerguide/apigateway-private-api-create.md b/apigateway/latest/developerguide/apigateway-private-api-create.md
index 09200824e..f0010e96e 100644
--- a/apigateway/latest/developerguide/apigateway-private-api-create.md
+++ b/apigateway/latest/developerguide/apigateway-private-api-create.md
@@ -107 +107,3 @@ If you associate a VPC endpoint ID with your private API, you can invoke your AP
-  8. Choose **Create API**.
+  8. For **IP address type** , choose **Dualstack**.
+
+  9. Choose **Create API**.
@@ -124 +126 @@ The following [create-rest-api](https://docs.aws.amazon.com/cli/latest/reference
-            --endpoint-configuration '{ "types": ["PRIVATE"] }'
+            --endpoint-configuration '{ "types": ["PRIVATE"], "ipAddressType": "dualstack" }'
@@ -133 +135,4 @@ A successful call returns output similar to the following:
-            "types": "PRIVATE"
+            "types": [
+                "PRIVATE"
+            ],
+            "ipAddressType": "dualstack"