Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions,
see Getting Started with Amazon Web Services in China
(PDF).
Change the IP address type of a REST API
You can change the IP address type by updating the API’s configuration. You can update the API's configuration
by using the Amazon Web Services Management Console, the Amazon CLI, Amazon CloudFormation, or an Amazon SDK. If you change the API’s IP address type, you don't redeploy
your API for the changes to take effect. Before you change the IP address type, confirm that any policies
controlling access to your APIs have been updated to account for IPv6 calls.
- Amazon Web Services Management Console
To change the IP address type of a REST API
Sign in to the API Gateway console at https://console.amazonaws.cn/apigateway.
Choose a REST API.
Choose API settings, and then choose
Edit.
For IP address type, select either IPv4 or Dualstack.
Choose Save changes.
The change to your API's configuration will take effect immediately.
- Amazon CLI
-
The following update-rest-api
command updates an API to have an IP address type of dualstack:
aws apigateway update-rest-api \
--rest-api-id abcd1234 \
--patch-operations "op='replace',path='/endpointConfiguration/ipAddressType',value='dualstack'"
The output will look like the following:
{
"id": "abcd1234",
"name": "MyAPI",
"description": "My API with a dualstack IP address type",
"createdDate": "2025-02-04T11:47:06-08:00",
"apiKeySource": "HEADER",
"endpointConfiguration": {
"types": [
"REGIONAL"
],
"ipAddressType": "dualstack"
},
"tags": {},
"disableExecuteApiEndpoint": false,
"rootResourceId": "efg456"
}