@aws-sdk/client-ec2 3.841.0 → 3.842.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3035,11 +3035,10 @@ export interface CreateCustomerGatewayRequest {
3035
3035
  */
3036
3036
  DeviceName?: string | undefined;
3037
3037
  /**
3038
- * <p>IPv4 address for the customer gateway device's outside interface. The address must be
3038
+ * <p>The IP address for the customer gateway device's outside interface. The address must be
3039
3039
  * static. If <code>OutsideIpAddressType</code> in your VPN connection options is set to
3040
3040
  * <code>PrivateIpv4</code>, you can use an RFC6598 or RFC1918 private IPv4 address. If
3041
- * <code>OutsideIpAddressType</code> is set to <code>PublicIpv4</code>, you can use a
3042
- * public IPv4 address. </p>
3041
+ * <code>OutsideIpAddressType</code> is set to <code>Ipv6</code>, you can use an IPv6 address. </p>
3043
3042
  * @public
3044
3043
  */
3045
3044
  IpAddress?: string | undefined;
@@ -3106,7 +3105,8 @@ export interface CustomerGateway {
3106
3105
  Type?: string | undefined;
3107
3106
  /**
3108
3107
  * <p>
3109
- * 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.
3108
+ * 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
3109
+ * <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.
3110
3110
  * </p>
3111
3111
  * @public
3112
3112
  */
@@ -882,8 +882,8 @@ export interface VpnConnectionOptionsSpecification {
882
882
  */
883
883
  RemoteIpv6NetworkCidr?: string | undefined;
884
884
  /**
885
- * <p>The type of IPv4 address assigned to the outside interface of the customer gateway device.</p>
886
- * <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code>
885
+ * <p>The type of IP address assigned to the outside interface of the customer gateway device.</p>
886
+ * <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code> | <code>Ipv6</code>
887
887
  * </p>
888
888
  * <p>Default: <code>PublicIpv4</code>
889
889
  * </p>
@@ -1242,7 +1242,7 @@ export interface VpnConnectionOptions {
1242
1242
  RemoteIpv6NetworkCidr?: string | undefined;
1243
1243
  /**
1244
1244
  * <p>The type of IPv4 address assigned to the outside interface of the customer gateway.</p>
1245
- * <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code>
1245
+ * <p>Valid values: <code>PrivateIpv4</code> | <code>PublicIpv4</code> | <code>Ipv6</code>
1246
1246
  * </p>
1247
1247
  * <p>Default: <code>PublicIpv4</code>
1248
1248
  * </p>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
3
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
4
- "version": "3.841.0",
4
+ "version": "3.842.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ec2",