Skip to content

Commit e127a34

Browse files
author
AWS
committed
Amazon Elastic Compute Cloud Update: This release adds a new optional parameter "privateIpAddress" for the CreateNatGateway API. PrivateIPAddress will allow customers to select a custom Private IPv4 address instead of having it be auto-assigned.
1 parent 0acab63 commit e127a34

File tree

3 files changed

+65
-7
lines changed

3 files changed

+65
-7
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Elastic Compute Cloud",
4+
"contributor": "",
5+
"description": "This release adds a new optional parameter \"privateIpAddress\" for the CreateNatGateway API. PrivateIPAddress will allow customers to select a custom Private IPv4 address instead of having it be auto-assigned."
6+
}

services/ec2/src/main/resources/codegen-resources/endpoint-tests.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,54 @@
620620
"UseDualStack": false
621621
}
622622
},
623+
{
624+
"documentation": "For region us-isob-west-1 with FIPS enabled and DualStack enabled",
625+
"expect": {
626+
"error": "FIPS and DualStack are enabled, but this partition does not support one or both"
627+
},
628+
"params": {
629+
"UseFIPS": true,
630+
"Region": "us-isob-west-1",
631+
"UseDualStack": true
632+
}
633+
},
634+
{
635+
"documentation": "For region us-isob-west-1 with FIPS enabled and DualStack disabled",
636+
"expect": {
637+
"endpoint": {
638+
"url": "https://ec2-fips.us-isob-west-1.sc2s.sgov.gov"
639+
}
640+
},
641+
"params": {
642+
"UseFIPS": true,
643+
"Region": "us-isob-west-1",
644+
"UseDualStack": false
645+
}
646+
},
647+
{
648+
"documentation": "For region us-isob-west-1 with FIPS disabled and DualStack enabled",
649+
"expect": {
650+
"error": "DualStack is enabled but this partition does not support DualStack"
651+
},
652+
"params": {
653+
"UseFIPS": false,
654+
"Region": "us-isob-west-1",
655+
"UseDualStack": true
656+
}
657+
},
658+
{
659+
"documentation": "For region us-isob-west-1 with FIPS disabled and DualStack disabled",
660+
"expect": {
661+
"endpoint": {
662+
"url": "https://ec2.us-isob-west-1.sc2s.sgov.gov"
663+
}
664+
},
665+
"params": {
666+
"UseFIPS": false,
667+
"Region": "us-isob-west-1",
668+
"UseDualStack": false
669+
}
670+
},
623671
{
624672
"documentation": "For region af-south-1 with FIPS enabled and DualStack enabled",
625673
"expect": {

0 commit comments

Comments
 (0)