Skip to content

Commit af240bd

Browse files
author
awstools
committed
feat(client-ec2): AWS Site-to-Site VPN now supports IPv6 addresses on outer tunnel IPs, making it easier for customers to build or transition to IPv6-only networks.
1 parent b293971 commit af240bd

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

clients/client-ec2/src/models/models_1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3312,11 +3312,10 @@ export interface CreateCustomerGatewayRequest {
33123312
DeviceName?: string | undefined;
33133313

33143314
/**
3315-
* <p>IPv4 address for the customer gateway device's outside interface. The address must be
3315+
* <p>The IP address for the customer gateway device's outside interface. The address must be
33163316
* static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to
33173317
* <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If
3318-
* <code>OutsideIpAddressType</code> is set to <code>PublicIpv4</code>, you can use a
3319-
* public IPv4 address. </p>
3318+
* <code>OutsideIpAddressType</code> is set to <code>Ipv6</code>, you can use an IPv6 address. </p>
33203319
* @public
33213320
*/
33223321
IpAddress?: string | undefined;
@@ -3393,7 +3392,8 @@ export interface CustomerGateway {
33933392

33943393
/**
33953394
* <p>
3396-
* IPv4 address for the customer gateway device's outside interface. The address must be static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If <code>OutsideIpAddressType</code> is set to <code>PublicIpv4</code>, you can use a public IPv4 address.
3395+
* The IP address for the customer gateway device's outside interface. The address must be static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If
3396+
* <code>OutsideIpAddressType</code> is set to <code>PublicIpv4</code>, you can use a public IPv4 address. If <code>OutsideIpAddressType</code> is set to <code>Ipv6</code>, you can use a public IPv6 address.
33973397
* </p>
33983398
* @public
33993399
*/

clients/client-ec2/src/models/models_3.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,8 +1071,8 @@ export interface VpnConnectionOptionsSpecification {
10711071
RemoteIpv6NetworkCidr?: string | undefined;
10721072

10731073
/**
1074-
* <p>The type of IPv4 address assigned to the outside interface of the customer gateway device.</p>
1075-
* <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code>
1074+
* <p>The type of IP address assigned to the outside interface of the customer gateway device.</p>
1075+
* <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code> | <code>Ipv6</code>
10761076
* </p>
10771077
* <p>Default: <code>PublicIpv4</code>
10781078
* </p>
@@ -1482,7 +1482,7 @@ export interface VpnConnectionOptions {
14821482

14831483
/**
14841484
* <p>The type of IPv4 address assigned to the outside interface of the customer gateway.</p>
1485-
* <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code>
1485+
* <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code> | <code>Ipv6</code>
14861486
* </p>
14871487
* <p>Default: <code>PublicIpv4</code>
14881488
* </p>

codegen/sdk-codegen/aws-models/ec2.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16349,7 +16349,7 @@
1634916349
"IpAddress": {
1635016350
"target": "com.amazonaws.ec2#String",
1635116351
"traits": {
16352-
"smithy.api#documentation": "<p>IPv4 address for the customer gateway device's outside interface. The address must be\n static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to\n <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If\n <code>OutsideIpAddressType</code> is set to <code>PublicIpv4</code>, you can use a\n public IPv4 address. </p>"
16352+
"smithy.api#documentation": "<p>The IP address for the customer gateway device's outside interface. The address must be\n static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to\n <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If\n <code>OutsideIpAddressType</code> is set to <code>Ipv6</code>, you can use an IPv6 address. </p>"
1635316353
}
1635416354
},
1635516355
"BgpAsnExtended": {
@@ -24511,7 +24511,7 @@
2451124511
"target": "com.amazonaws.ec2#String",
2451224512
"traits": {
2451324513
"aws.protocols#ec2QueryName": "IpAddress",
24514-
"smithy.api#documentation": "<p>\n IPv4 address for the customer gateway device's outside interface. The address must be static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If <code>OutsideIpAddressType</code> is set to <code>PublicIpv4</code>, you can use a public IPv4 address.\n </p>",
24514+
"smithy.api#documentation": "<p>\n The IP address for the customer gateway device's outside interface. The address must be static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If \n <code>OutsideIpAddressType</code> is set to <code>PublicIpv4</code>, you can use a public IPv4 address. If <code>OutsideIpAddressType</code> is set to <code>Ipv6</code>, you can use a public IPv6 address.\n </p>",
2451524515
"smithy.api#xmlName": "ipAddress"
2451624516
}
2451724517
},
@@ -119784,7 +119784,7 @@
119784119784
"target": "com.amazonaws.ec2#String",
119785119785
"traits": {
119786119786
"aws.protocols#ec2QueryName": "OutsideIpAddressType",
119787-
"smithy.api#documentation": "<p>The type of IPv4 address assigned to the outside interface of the customer gateway.</p>\n <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code>\n </p>\n <p>Default: <code>PublicIpv4</code>\n </p>",
119787+
"smithy.api#documentation": "<p>The type of IPv4 address assigned to the outside interface of the customer gateway.</p>\n <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code> | <code>Ipv6</code>\n </p>\n <p>Default: <code>PublicIpv4</code>\n </p>",
119788119788
"smithy.api#xmlName": "outsideIpAddressType"
119789119789
}
119790119790
},
@@ -119865,7 +119865,7 @@
119865119865
"OutsideIpAddressType": {
119866119866
"target": "com.amazonaws.ec2#String",
119867119867
"traits": {
119868-
"smithy.api#documentation": "<p>The type of IPv4 address assigned to the outside interface of the customer gateway device.</p>\n <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code>\n </p>\n <p>Default: <code>PublicIpv4</code>\n </p>"
119868+
"smithy.api#documentation": "<p>The type of IP address assigned to the outside interface of the customer gateway device.</p>\n <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code> | <code>Ipv6</code>\n </p>\n <p>Default: <code>PublicIpv4</code>\n </p>"
119869119869
}
119870119870
},
119871119871
"TransportTransitGatewayAttachmentId": {

0 commit comments

Comments
 (0)