aws-sdk-ec2 1.182.0 → 1.187.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a802e63d086b733cac2d1cee900fd33891505713aabe3c985d752fcc4f7c4b9
4
- data.tar.gz: e8f409fa42243a7157cb4dc05f4ba85bdaec9401b04da45b6e6121bc77f4b24e
3
+ metadata.gz: d66b5f317cea96a08e25abeef53d9edd4a9f4b433dd2c2935f8181e6dc74fb5b
4
+ data.tar.gz: '09dd9f507b07e49ffffda9e85133c267a02cbb9f0093c0ee011fa93c1e3cf751'
5
5
  SHA512:
6
- metadata.gz: 0ddd8cdd994ed0c55d8a1a98b284f57ca3833c581d1324b0630c925a98fc8cf8d15443d6b2f1e23ade1621bfc65ec54bcc3b9d3f328c9b7a79dfdbb6c3adb077
7
- data.tar.gz: 35c68ced05c81ce13ad9fda9185b26f0926b8a67e499dd11fe4d657fc1f1cf096005f43cbeef466d88e9d5bdd87a4246582211220a02e6601204d2f97cee5f05
6
+ metadata.gz: 8803f7207f4cbddf1731c513534fbacc32697b3752ae350cbdf4dd0b98679904664c2bcec447aac48d2c8a536a552db8df009a73e9d71fa526b685235fa8b380
7
+ data.tar.gz: 61d5e8191ab11e246c76eac3b1ea10be397fe13c73942640713b2f5fd3c20a8f97fca4459a675a8f41e7133163051ce0645ddc7ecf4c65f1aafff997d0d16ff4
@@ -71,6 +71,6 @@ require_relative 'aws-sdk-ec2/customizations'
71
71
  # @service
72
72
  module Aws::EC2
73
73
 
74
- GEM_VERSION = '1.182.0'
74
+ GEM_VERSION = '1.187.0'
75
75
 
76
76
  end
@@ -91,7 +91,8 @@ module Aws::EC2
91
91
  data[:public_ipv_4_pool]
92
92
  end
93
93
 
94
- # The name of the location from which the IP address is advertised.
94
+ # The name of the unique set of Availability Zones, Local Zones, or
95
+ # Wavelength Zones from which AWS advertises IP addresses.
95
96
  # @return [String]
96
97
  def network_border_group
97
98
  data[:network_border_group]
@@ -109,6 +110,14 @@ module Aws::EC2
109
110
  data[:customer_owned_ipv_4_pool]
110
111
  end
111
112
 
113
+ # The carrier IP address associated. This option is only available for
114
+ # network interfaces which reside in a subnet in a Wavelength Zone (for
115
+ # example an EC2 instance).
116
+ # @return [String]
117
+ def carrier_ip
118
+ data[:carrier_ip]
119
+ end
120
+
112
121
  # @!endgroup
113
122
 
114
123
  # @return [Client]
@@ -324,7 +333,8 @@ module Aws::EC2
324
333
  # @option options [String] :allocation_id
325
334
  # \[EC2-VPC\] The allocation ID. Required for EC2-VPC.
326
335
  # @option options [String] :network_border_group
327
- # The location that the IP address is released from.
336
+ # The set of Availability Zones, Local Zones, or Wavelength Zones from
337
+ # which AWS advertises IP addresses.
328
338
  #
329
339
  # If you provide an incorrect network border group, you will receive an
330
340
  # `InvalidAddress.NotFound` error. For more information, see [Error
@@ -659,6 +659,10 @@ module Aws::EC2
659
659
  # For more information, see [Elastic IP Addresses][2] in the *Amazon
660
660
  # Elastic Compute Cloud User Guide*.
661
661
  #
662
+ # You can allocate a carrier IP address which is a public IP address
663
+ # from a telecommunication carrier, to a network interface which resides
664
+ # in a subnet in a Wavelength Zone (for example an EC2 instance).
665
+ #
662
666
  #
663
667
  #
664
668
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html
@@ -682,12 +686,10 @@ module Aws::EC2
682
686
  # instead.
683
687
  #
684
688
  # @option params [String] :network_border_group
685
- # The location from which the IP address is advertised. Use this
686
- # parameter to limit the address to this location.
687
- #
688
- # A network border group is a unique set of Availability Zones or Local
689
- # Zones from where AWS advertises IP addresses and limits the addresses
690
- # to the group. IP addresses cannot move between network border groups.
689
+ # A unique set of Availability Zones, Local Zones, or Wavelength Zones
690
+ # from which AWS advertises IP addresses. Use this parameter to limit
691
+ # the IP address to this location. IP addresses cannot move between
692
+ # network border groups.
691
693
  #
692
694
  # Use [DescribeAvailabilityZones][1] to view the network border groups.
693
695
  #
@@ -723,6 +725,7 @@ module Aws::EC2
723
725
  # * {Types::AllocateAddressResult#domain #domain} => String
724
726
  # * {Types::AllocateAddressResult#customer_owned_ip #customer_owned_ip} => String
725
727
  # * {Types::AllocateAddressResult#customer_owned_ipv_4_pool #customer_owned_ipv_4_pool} => String
728
+ # * {Types::AllocateAddressResult#carrier_ip #carrier_ip} => String
726
729
  #
727
730
  #
728
731
  # @example Example: To allocate an Elastic IP address for EC2-VPC
@@ -773,6 +776,7 @@ module Aws::EC2
773
776
  # resp.domain #=> String, one of "vpc", "standard"
774
777
  # resp.customer_owned_ip #=> String
775
778
  # resp.customer_owned_ipv_4_pool #=> String
779
+ # resp.carrier_ip #=> String
776
780
  #
777
781
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddress AWS API Documentation
778
782
  #
@@ -1099,7 +1103,8 @@ module Aws::EC2
1099
1103
  req.send_request(options)
1100
1104
  end
1101
1105
 
1102
- # Associates an Elastic IP address with an instance or a network
1106
+ # Associates an Elastic IP address, or carrier IP address (for instances
1107
+ # that are in subnets in Wavelength Zones) with an instance or a network
1103
1108
  # interface. Before you can use an Elastic IP address, you must allocate
1104
1109
  # it to your account.
1105
1110
  #
@@ -1123,6 +1128,9 @@ module Aws::EC2
1123
1128
  # an instance or network interface that has an existing Elastic IP
1124
1129
  # address.
1125
1130
  #
1131
+ # \[Subnets in Wavelength Zones\] You can associate an IP address from
1132
+ # the telecommunication carrier to the instance or network interface.
1133
+ #
1126
1134
  # You cannot associate an Elastic IP address with an interface in a
1127
1135
  # different network border group.
1128
1136
  #
@@ -1694,7 +1702,7 @@ module Aws::EC2
1694
1702
  #
1695
1703
  # @option params [String] :ipv_6_cidr_block_network_border_group
1696
1704
  # The name of the location from which we advertise the IPV6 CIDR block.
1697
- # Use this parameter to limit the CiDR block to this location.
1705
+ # Use this parameter to limit the CIDR block to this location.
1698
1706
  #
1699
1707
  # You must set `AmazonProvidedIpv6CidrBlock` to `true` to use this
1700
1708
  # parameter.
@@ -3636,7 +3644,7 @@ module Aws::EC2
3636
3644
  # resp = client.create_capacity_reservation({
3637
3645
  # client_token: "String",
3638
3646
  # instance_type: "String", # required
3639
- # instance_platform: "Linux/UNIX", # required, accepts Linux/UNIX, Red Hat Enterprise Linux, SUSE Linux, Windows, Windows with SQL Server, Windows with SQL Server Enterprise, Windows with SQL Server Standard, Windows with SQL Server Web, Linux with SQL Server Standard, Linux with SQL Server Web, Linux with SQL Server Enterprise, Windows BYOL
3647
+ # instance_platform: "Linux/UNIX", # required, accepts Linux/UNIX, Red Hat Enterprise Linux, SUSE Linux, Windows, Windows with SQL Server, Windows with SQL Server Enterprise, Windows with SQL Server Standard, Windows with SQL Server Web, Linux with SQL Server Standard, Linux with SQL Server Web, Linux with SQL Server Enterprise
3640
3648
  # availability_zone: "String",
3641
3649
  # availability_zone_id: "String",
3642
3650
  # tenancy: "default", # accepts default, dedicated
@@ -3667,7 +3675,7 @@ module Aws::EC2
3667
3675
  # resp.capacity_reservation.capacity_reservation_arn #=> String
3668
3676
  # resp.capacity_reservation.availability_zone_id #=> String
3669
3677
  # resp.capacity_reservation.instance_type #=> String
3670
- # resp.capacity_reservation.instance_platform #=> String, one of "Linux/UNIX", "Red Hat Enterprise Linux", "SUSE Linux", "Windows", "Windows with SQL Server", "Windows with SQL Server Enterprise", "Windows with SQL Server Standard", "Windows with SQL Server Web", "Linux with SQL Server Standard", "Linux with SQL Server Web", "Linux with SQL Server Enterprise", "Windows BYOL"
3678
+ # resp.capacity_reservation.instance_platform #=> String, one of "Linux/UNIX", "Red Hat Enterprise Linux", "SUSE Linux", "Windows", "Windows with SQL Server", "Windows with SQL Server Enterprise", "Windows with SQL Server Standard", "Windows with SQL Server Web", "Linux with SQL Server Standard", "Linux with SQL Server Web", "Linux with SQL Server Enterprise"
3671
3679
  # resp.capacity_reservation.availability_zone #=> String
3672
3680
  # resp.capacity_reservation.tenancy #=> String, one of "default", "dedicated"
3673
3681
  # resp.capacity_reservation.total_instance_count #=> Integer
@@ -3692,6 +3700,80 @@ module Aws::EC2
3692
3700
  req.send_request(options)
3693
3701
  end
3694
3702
 
3703
+ # Creates a carrier gateway. For more information about carrier
3704
+ # gateways, see [Carrier gateways][1] in the *AWS Wavelength Developer
3705
+ # Guide*.
3706
+ #
3707
+ #
3708
+ #
3709
+ # [1]: https://docs.aws.amazon.com/wavelength/latest/developerguide/how-wavelengths-work.html#wavelength-carrier-gateway
3710
+ #
3711
+ # @option params [required, String] :vpc_id
3712
+ # The ID of the VPC to associate with the carrier gateway.
3713
+ #
3714
+ # @option params [Array<Types::TagSpecification>] :tag_specifications
3715
+ # The tags to associate with the carrier gateway.
3716
+ #
3717
+ # @option params [Boolean] :dry_run
3718
+ # Checks whether you have the required permissions for the action,
3719
+ # without actually making the request, and provides an error response.
3720
+ # If you have the required permissions, the error response is
3721
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
3722
+ #
3723
+ # @option params [String] :client_token
3724
+ # Unique, case-sensitive identifier that you provide to ensure the
3725
+ # idempotency of the request. For more information, see [How to Ensure
3726
+ # Idempotency][1].
3727
+ #
3728
+ # **A suitable default value is auto-generated.** You should normally
3729
+ # not need to pass this option.**
3730
+ #
3731
+ #
3732
+ #
3733
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
3734
+ #
3735
+ # @return [Types::CreateCarrierGatewayResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3736
+ #
3737
+ # * {Types::CreateCarrierGatewayResult#carrier_gateway #carrier_gateway} => Types::CarrierGateway
3738
+ #
3739
+ # @example Request syntax with placeholder values
3740
+ #
3741
+ # resp = client.create_carrier_gateway({
3742
+ # vpc_id: "VpcId", # required
3743
+ # tag_specifications: [
3744
+ # {
3745
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
3746
+ # tags: [
3747
+ # {
3748
+ # key: "String",
3749
+ # value: "String",
3750
+ # },
3751
+ # ],
3752
+ # },
3753
+ # ],
3754
+ # dry_run: false,
3755
+ # client_token: "String",
3756
+ # })
3757
+ #
3758
+ # @example Response structure
3759
+ #
3760
+ # resp.carrier_gateway.carrier_gateway_id #=> String
3761
+ # resp.carrier_gateway.vpc_id #=> String
3762
+ # resp.carrier_gateway.state #=> String, one of "pending", "available", "deleting", "deleted"
3763
+ # resp.carrier_gateway.owner_id #=> String
3764
+ # resp.carrier_gateway.tags #=> Array
3765
+ # resp.carrier_gateway.tags[0].key #=> String
3766
+ # resp.carrier_gateway.tags[0].value #=> String
3767
+ #
3768
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCarrierGateway AWS API Documentation
3769
+ #
3770
+ # @overload create_carrier_gateway(params = {})
3771
+ # @param [Hash] params ({})
3772
+ def create_carrier_gateway(params = {}, options = {})
3773
+ req = build_request(:create_carrier_gateway, params)
3774
+ req.send_request(options)
3775
+ end
3776
+
3695
3777
  # Creates a Client VPN endpoint. A Client VPN endpoint is the resource
3696
3778
  # you create and configure to enable and manage client VPN sessions. It
3697
3779
  # is the destination endpoint at which all client VPN sessions are
@@ -5413,6 +5495,7 @@ module Aws::EC2
5413
5495
  # ],
5414
5496
  # network_interfaces: [
5415
5497
  # {
5498
+ # associate_carrier_ip_address: false,
5416
5499
  # associate_public_ip_address: false,
5417
5500
  # delete_on_termination: false,
5418
5501
  # description: "String",
@@ -5693,6 +5776,7 @@ module Aws::EC2
5693
5776
  # ],
5694
5777
  # network_interfaces: [
5695
5778
  # {
5779
+ # associate_carrier_ip_address: false,
5696
5780
  # associate_public_ip_address: false,
5697
5781
  # delete_on_termination: false,
5698
5782
  # description: "String",
@@ -5826,6 +5910,7 @@ module Aws::EC2
5826
5910
  # resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
5827
5911
  # resp.launch_template_version.launch_template_data.block_device_mappings[0].no_device #=> String
5828
5912
  # resp.launch_template_version.launch_template_data.network_interfaces #=> Array
5913
+ # resp.launch_template_version.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
5829
5914
  # resp.launch_template_version.launch_template_data.network_interfaces[0].associate_public_ip_address #=> Boolean
5830
5915
  # resp.launch_template_version.launch_template_data.network_interfaces[0].delete_on_termination #=> Boolean
5831
5916
  # resp.launch_template_version.launch_template_data.network_interfaces[0].description #=> String
@@ -6653,6 +6738,8 @@ module Aws::EC2
6653
6738
  # resp.network_interface.association.ip_owner_id #=> String
6654
6739
  # resp.network_interface.association.public_dns_name #=> String
6655
6740
  # resp.network_interface.association.public_ip #=> String
6741
+ # resp.network_interface.association.customer_owned_ip #=> String
6742
+ # resp.network_interface.association.carrier_ip #=> String
6656
6743
  # resp.network_interface.attachment.attach_time #=> Time
6657
6744
  # resp.network_interface.attachment.attachment_id #=> String
6658
6745
  # resp.network_interface.attachment.delete_on_termination #=> Boolean
@@ -6680,6 +6767,8 @@ module Aws::EC2
6680
6767
  # resp.network_interface.private_ip_addresses[0].association.ip_owner_id #=> String
6681
6768
  # resp.network_interface.private_ip_addresses[0].association.public_dns_name #=> String
6682
6769
  # resp.network_interface.private_ip_addresses[0].association.public_ip #=> String
6770
+ # resp.network_interface.private_ip_addresses[0].association.customer_owned_ip #=> String
6771
+ # resp.network_interface.private_ip_addresses[0].association.carrier_ip #=> String
6683
6772
  # resp.network_interface.private_ip_addresses[0].primary #=> Boolean
6684
6773
  # resp.network_interface.private_ip_addresses[0].private_dns_name #=> String
6685
6774
  # resp.network_interface.private_ip_addresses[0].private_ip_address #=> String
@@ -7030,6 +7119,12 @@ module Aws::EC2
7030
7119
  # @option params [String] :local_gateway_id
7031
7120
  # The ID of the local gateway.
7032
7121
  #
7122
+ # @option params [String] :carrier_gateway_id
7123
+ # The ID of the carrier gateway.
7124
+ #
7125
+ # You can only use this option when the VPC contains a subnet which is
7126
+ # associated with a Wavelength Zone.
7127
+ #
7033
7128
  # @option params [String] :network_interface_id
7034
7129
  # The ID of a network interface.
7035
7130
  #
@@ -7068,6 +7163,7 @@ module Aws::EC2
7068
7163
  # nat_gateway_id: "NatGatewayId",
7069
7164
  # transit_gateway_id: "TransitGatewayId",
7070
7165
  # local_gateway_id: "LocalGatewayId",
7166
+ # carrier_gateway_id: "CarrierGatewayId",
7071
7167
  # network_interface_id: "NetworkInterfaceId",
7072
7168
  # route_table_id: "RouteTableId", # required
7073
7169
  # vpc_peering_connection_id: "VpcPeeringConnectionId",
@@ -7184,6 +7280,7 @@ module Aws::EC2
7184
7280
  # resp.route_table.routes[0].nat_gateway_id #=> String
7185
7281
  # resp.route_table.routes[0].transit_gateway_id #=> String
7186
7282
  # resp.route_table.routes[0].local_gateway_id #=> String
7283
+ # resp.route_table.routes[0].carrier_gateway_id #=> String
7187
7284
  # resp.route_table.routes[0].network_interface_id #=> String
7188
7285
  # resp.route_table.routes[0].origin #=> String, one of "CreateRouteTable", "CreateRoute", "EnableVgwRoutePropagation"
7189
7286
  # resp.route_table.routes[0].state #=> String, one of "active", "blackhole"
@@ -9642,15 +9739,15 @@ module Aws::EC2
9642
9739
  end
9643
9740
 
9644
9741
  # Creates a VPN connection between an existing virtual private gateway
9645
- # and a VPN customer gateway. The supported connection type is
9646
- # `ipsec.1`.
9742
+ # or transit gateway and a customer gateway. The supported connection
9743
+ # type is `ipsec.1`.
9647
9744
  #
9648
9745
  # The response includes information that you need to give to your
9649
9746
  # network administrator to configure your customer gateway.
9650
9747
  #
9651
9748
  # We strongly recommend that you use HTTPS when calling this operation
9652
9749
  # because the response contains sensitive cryptographic information for
9653
- # configuring your customer gateway.
9750
+ # configuring your customer gateway device.
9654
9751
  #
9655
9752
  # If you decide to shut down your VPN connection for any reason and
9656
9753
  # later create a new VPN connection, you must reconfigure your customer
@@ -9707,9 +9804,11 @@ module Aws::EC2
9707
9804
  # options: {
9708
9805
  # enable_acceleration: false,
9709
9806
  # static_routes_only: false,
9807
+ # tunnel_inside_ip_version: "ipv4", # accepts ipv4, ipv6
9710
9808
  # tunnel_options: [
9711
9809
  # {
9712
9810
  # tunnel_inside_cidr: "String",
9811
+ # tunnel_inside_ipv_6_cidr: "String",
9713
9812
  # pre_shared_key: "String",
9714
9813
  # phase_1_lifetime_seconds: 1,
9715
9814
  # phase_2_lifetime_seconds: 1,
@@ -9780,9 +9879,11 @@ module Aws::EC2
9780
9879
  # resp.vpn_connection.transit_gateway_id #=> String
9781
9880
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
9782
9881
  # resp.vpn_connection.options.static_routes_only #=> Boolean
9882
+ # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
9783
9883
  # resp.vpn_connection.options.tunnel_options #=> Array
9784
9884
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
9785
9885
  # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
9886
+ # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
9786
9887
  # resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
9787
9888
  # resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
9788
9889
  # resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
@@ -9946,6 +10047,55 @@ module Aws::EC2
9946
10047
  req.send_request(options)
9947
10048
  end
9948
10049
 
10050
+ # Deletes a carrier gateway.
10051
+ #
10052
+ # If you do not delete the route that contains the carrier gateway as
10053
+ # the Target, the route is a blackhole route. For information about how
10054
+ # to delete a route, see [DeleteRoute][1].
10055
+ #
10056
+ #
10057
+ #
10058
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DeleteRoute.html
10059
+ #
10060
+ # @option params [required, String] :carrier_gateway_id
10061
+ # The ID of the carrier gateway.
10062
+ #
10063
+ # @option params [Boolean] :dry_run
10064
+ # Checks whether you have the required permissions for the action,
10065
+ # without actually making the request, and provides an error response.
10066
+ # If you have the required permissions, the error response is
10067
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
10068
+ #
10069
+ # @return [Types::DeleteCarrierGatewayResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10070
+ #
10071
+ # * {Types::DeleteCarrierGatewayResult#carrier_gateway #carrier_gateway} => Types::CarrierGateway
10072
+ #
10073
+ # @example Request syntax with placeholder values
10074
+ #
10075
+ # resp = client.delete_carrier_gateway({
10076
+ # carrier_gateway_id: "CarrierGatewayId", # required
10077
+ # dry_run: false,
10078
+ # })
10079
+ #
10080
+ # @example Response structure
10081
+ #
10082
+ # resp.carrier_gateway.carrier_gateway_id #=> String
10083
+ # resp.carrier_gateway.vpc_id #=> String
10084
+ # resp.carrier_gateway.state #=> String, one of "pending", "available", "deleting", "deleted"
10085
+ # resp.carrier_gateway.owner_id #=> String
10086
+ # resp.carrier_gateway.tags #=> Array
10087
+ # resp.carrier_gateway.tags[0].key #=> String
10088
+ # resp.carrier_gateway.tags[0].value #=> String
10089
+ #
10090
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCarrierGateway AWS API Documentation
10091
+ #
10092
+ # @overload delete_carrier_gateway(params = {})
10093
+ # @param [Hash] params ({})
10094
+ def delete_carrier_gateway(params = {}, options = {})
10095
+ req = build_request(:delete_carrier_gateway, params)
10096
+ req.send_request(options)
10097
+ end
10098
+
9949
10099
  # Deletes the specified Client VPN endpoint. You must disassociate all
9950
10100
  # target networks before you can delete a Client VPN endpoint.
9951
10101
  #
@@ -12500,8 +12650,8 @@ module Aws::EC2
12500
12650
  # * `instance-id` - The ID of the instance the address is associated
12501
12651
  # with, if any.
12502
12652
  #
12503
- # * `network-border-group` - The location from where the IP address is
12504
- # advertised.
12653
+ # * `network-border-group` - A unique set of Availability Zones, Local
12654
+ # Zones, or Wavelength Zones from where AWS advertises IP addresses.
12505
12655
  #
12506
12656
  # * `network-interface-id` - \[EC2-VPC\] The ID of the network interface
12507
12657
  # that the address is associated with, if any.
@@ -12511,7 +12661,7 @@ module Aws::EC2
12511
12661
  # * `private-ip-address` - \[EC2-VPC\] The private IP address associated
12512
12662
  # with the Elastic IP address.
12513
12663
  #
12514
- # * `public-ip` - The Elastic IP address.
12664
+ # * `public-ip` - The Elastic IP address, or the carrier IP address.
12515
12665
  #
12516
12666
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
12517
12667
  # the resource. Use the tag key in the filter name and the tag value
@@ -12659,6 +12809,7 @@ module Aws::EC2
12659
12809
  # resp.addresses[0].network_border_group #=> String
12660
12810
  # resp.addresses[0].customer_owned_ip #=> String
12661
12811
  # resp.addresses[0].customer_owned_ipv_4_pool #=> String
12812
+ # resp.addresses[0].carrier_ip #=> String
12662
12813
  #
12663
12814
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddresses AWS API Documentation
12664
12815
  #
@@ -12723,14 +12874,14 @@ module Aws::EC2
12723
12874
  req.send_request(options)
12724
12875
  end
12725
12876
 
12726
- # Describes the Availability Zones and Local Zones that are available to
12727
- # you. If there is an event impacting an Availability Zone or Local
12728
- # Zone, you can use this request to view the state and any provided
12729
- # messages for that Availability Zone or Local Zone.
12877
+ # Describes the Availability Zones, Local Zones, and Wavelength Zones
12878
+ # that are available to you. If there is an event impacting a zone, you
12879
+ # can use this request to view the state and any provided messages for
12880
+ # that zone.
12730
12881
  #
12731
- # For more information about Availability Zones and Local Zones, see
12732
- # [Regions and Availability Zones][1] in the *Amazon Elastic Compute
12733
- # Cloud User Guide*.
12882
+ # For more information about Availability Zones, Local Zones, and
12883
+ # Wavelength Zones, see [Regions, Zones and Outposts][1] in the *Amazon
12884
+ # Elastic Compute Cloud User Guide*.
12734
12885
  #
12735
12886
  #
12736
12887
  #
@@ -12741,42 +12892,52 @@ module Aws::EC2
12741
12892
  #
12742
12893
  # * `group-name` - For Availability Zones, use the Region name. For
12743
12894
  # Local Zones, use the name of the group associated with the Local
12744
- # Zone (for example, `us-west-2-lax-1`).
12895
+ # Zone (for example, `us-west-2-lax-1`) For Wavelength Zones, use the
12896
+ # name of the group associated with the Wavelength Zone (for example,
12897
+ # `us-east-1-wl1-bos-wlz-1`).
12745
12898
  #
12746
12899
  # * `message` - The Zone message.
12747
12900
  #
12748
- # * `opt-in-status` - The opt in status (`opted-in`, and `not-opted-in`
12901
+ # * `opt-in-status` - The opt-in status (`opted-in`, and `not-opted-in`
12749
12902
  # \| `opt-in-not-required`).
12750
12903
  #
12751
- # * The ID of the zone that handles some of the Local Zone control plane
12752
- # operations, such as API calls.
12904
+ # * `parent-zoneID` - The ID of the zone that handles some of the Local
12905
+ # Zone and Wavelength Zone control plane operations, such as API
12906
+ # calls.
12907
+ #
12908
+ # * `parent-zoneName` - The ID of the zone that handles some of the
12909
+ # Local Zone and Wavelength Zone control plane operations, such as API
12910
+ # calls.
12753
12911
  #
12754
12912
  # * `region-name` - The name of the Region for the Zone (for example,
12755
12913
  # `us-east-1`).
12756
12914
  #
12757
- # * `state` - The state of the Availability Zone or Local Zone
12758
- # (`available` \| `information` \| `impaired` \| `unavailable`).
12915
+ # * `state` - The state of the Availability Zone, the Local Zone, or the
12916
+ # Wavelength Zone (`available` \| `information` \| `impaired` \|
12917
+ # `unavailable`).
12759
12918
  #
12760
12919
  # * `zone-id` - The ID of the Availability Zone (for example,
12761
- # `use1-az1`) or the Local Zone (for example, use `usw2-lax1-az1`).
12920
+ # `use1-az1`), the Local Zone (for example, `usw2-lax1-az1`), or the
12921
+ # Wavelength Zone (for example, `us-east-1-wl1-bos-wlz-1`).
12762
12922
  #
12763
12923
  # * `zone-type` - The type of zone, for example, `local-zone`.
12764
12924
  #
12765
12925
  # * `zone-name` - The name of the Availability Zone (for example,
12766
- # `us-east-1a`) or the Local Zone (for example, use
12767
- # `us-west-2-lax-1a`).
12926
+ # `us-east-1a`), the Local Zone (for example, `us-west-2-lax-1a`), or
12927
+ # the Wavelength Zone (for example, `us-east-1-wl1-bos-wlz-1`).
12768
12928
  #
12769
12929
  # * `zone-type` - The type of zone, for example, `local-zone`.
12770
12930
  #
12771
12931
  # @option params [Array<String>] :zone_names
12772
- # The names of the Zones.
12932
+ # The names of the Availability Zones, Local Zones, and Wavelength
12933
+ # Zones.
12773
12934
  #
12774
12935
  # @option params [Array<String>] :zone_ids
12775
- # The IDs of the Zones.
12936
+ # The IDs of the Availability Zones, Local Zones, and Wavelength Zones.
12776
12937
  #
12777
12938
  # @option params [Boolean] :all_availability_zones
12778
- # Include all Availability Zones and Local Zones regardless of your opt
12779
- # in status.
12939
+ # Include all Availability Zones, Local Zones, and Wavelength Zones
12940
+ # regardless of your opt-in status.
12780
12941
  #
12781
12942
  # If you do not use this parameter, the results include only the zones
12782
12943
  # for the Regions where you have chosen the option to opt in.
@@ -13155,7 +13316,7 @@ module Aws::EC2
13155
13316
  # resp.capacity_reservations[0].capacity_reservation_arn #=> String
13156
13317
  # resp.capacity_reservations[0].availability_zone_id #=> String
13157
13318
  # resp.capacity_reservations[0].instance_type #=> String
13158
- # resp.capacity_reservations[0].instance_platform #=> String, one of "Linux/UNIX", "Red Hat Enterprise Linux", "SUSE Linux", "Windows", "Windows with SQL Server", "Windows with SQL Server Enterprise", "Windows with SQL Server Standard", "Windows with SQL Server Web", "Linux with SQL Server Standard", "Linux with SQL Server Web", "Linux with SQL Server Enterprise", "Windows BYOL"
13319
+ # resp.capacity_reservations[0].instance_platform #=> String, one of "Linux/UNIX", "Red Hat Enterprise Linux", "SUSE Linux", "Windows", "Windows with SQL Server", "Windows with SQL Server Enterprise", "Windows with SQL Server Standard", "Windows with SQL Server Web", "Linux with SQL Server Standard", "Linux with SQL Server Web", "Linux with SQL Server Enterprise"
13159
13320
  # resp.capacity_reservations[0].availability_zone #=> String
13160
13321
  # resp.capacity_reservations[0].tenancy #=> String, one of "default", "dedicated"
13161
13322
  # resp.capacity_reservations[0].total_instance_count #=> Integer
@@ -13180,6 +13341,90 @@ module Aws::EC2
13180
13341
  req.send_request(options)
13181
13342
  end
13182
13343
 
13344
+ # Describes one or more of your carrier gateways.
13345
+ #
13346
+ # @option params [Array<String>] :carrier_gateway_ids
13347
+ # One or more carrier gateway IDs.
13348
+ #
13349
+ # @option params [Array<Types::Filter>] :filters
13350
+ # One or more filters.
13351
+ #
13352
+ # * `carrier-gateway-id` - The ID of the carrier gateway.
13353
+ #
13354
+ # * `state` - The state of the carrier gateway (`pending` \| `failed` \|
13355
+ # `available` \| `deleting` \| `deleted`).
13356
+ #
13357
+ # * `owner-id` - The AWS account ID of the owner of the carrier gateway.
13358
+ #
13359
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
13360
+ # the resource. Use the tag key in the filter name and the tag value
13361
+ # as the filter value. For example, to find all resources that have a
13362
+ # tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
13363
+ # for the filter name and `TeamA` for the filter value.
13364
+ #
13365
+ # * `tag-key` - The key of a tag assigned to the resource. Use this
13366
+ # filter to find all resources assigned a tag with a specific key,
13367
+ # regardless of the tag value.
13368
+ #
13369
+ # * `vpc-id` - The ID of the VPC associated with the carrier gateway.
13370
+ #
13371
+ # @option params [Integer] :max_results
13372
+ # The maximum number of results to return with a single call. To
13373
+ # retrieve the remaining results, make another call with the returned
13374
+ # `nextToken` value.
13375
+ #
13376
+ # @option params [String] :next_token
13377
+ # The token for the next page of results.
13378
+ #
13379
+ # @option params [Boolean] :dry_run
13380
+ # Checks whether you have the required permissions for the action,
13381
+ # without actually making the request, and provides an error response.
13382
+ # If you have the required permissions, the error response is
13383
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13384
+ #
13385
+ # @return [Types::DescribeCarrierGatewaysResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13386
+ #
13387
+ # * {Types::DescribeCarrierGatewaysResult#carrier_gateways #carrier_gateways} => Array&lt;Types::CarrierGateway&gt;
13388
+ # * {Types::DescribeCarrierGatewaysResult#next_token #next_token} => String
13389
+ #
13390
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13391
+ #
13392
+ # @example Request syntax with placeholder values
13393
+ #
13394
+ # resp = client.describe_carrier_gateways({
13395
+ # carrier_gateway_ids: ["CarrierGatewayId"],
13396
+ # filters: [
13397
+ # {
13398
+ # name: "String",
13399
+ # values: ["String"],
13400
+ # },
13401
+ # ],
13402
+ # max_results: 1,
13403
+ # next_token: "String",
13404
+ # dry_run: false,
13405
+ # })
13406
+ #
13407
+ # @example Response structure
13408
+ #
13409
+ # resp.carrier_gateways #=> Array
13410
+ # resp.carrier_gateways[0].carrier_gateway_id #=> String
13411
+ # resp.carrier_gateways[0].vpc_id #=> String
13412
+ # resp.carrier_gateways[0].state #=> String, one of "pending", "available", "deleting", "deleted"
13413
+ # resp.carrier_gateways[0].owner_id #=> String
13414
+ # resp.carrier_gateways[0].tags #=> Array
13415
+ # resp.carrier_gateways[0].tags[0].key #=> String
13416
+ # resp.carrier_gateways[0].tags[0].value #=> String
13417
+ # resp.next_token #=> String
13418
+ #
13419
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCarrierGateways AWS API Documentation
13420
+ #
13421
+ # @overload describe_carrier_gateways(params = {})
13422
+ # @param [Hash] params ({})
13423
+ def describe_carrier_gateways(params = {}, options = {})
13424
+ req = build_request(:describe_carrier_gateways, params)
13425
+ req.send_request(options)
13426
+ end
13427
+
13183
13428
  # Describes one or more of your linked EC2-Classic instances. This
13184
13429
  # request only returns information about EC2-Classic instances linked to
13185
13430
  # a VPC through ClassicLink. You cannot use this request to return
@@ -17291,6 +17536,7 @@ module Aws::EC2
17291
17536
  # resp.reservations[0].instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_state #=> String
17292
17537
  # resp.reservations[0].instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_time #=> Time
17293
17538
  # resp.reservations[0].instances[0].network_interfaces #=> Array
17539
+ # resp.reservations[0].instances[0].network_interfaces[0].association.carrier_ip #=> String
17294
17540
  # resp.reservations[0].instances[0].network_interfaces[0].association.ip_owner_id #=> String
17295
17541
  # resp.reservations[0].instances[0].network_interfaces[0].association.public_dns_name #=> String
17296
17542
  # resp.reservations[0].instances[0].network_interfaces[0].association.public_ip #=> String
@@ -17311,6 +17557,7 @@ module Aws::EC2
17311
17557
  # resp.reservations[0].instances[0].network_interfaces[0].private_dns_name #=> String
17312
17558
  # resp.reservations[0].instances[0].network_interfaces[0].private_ip_address #=> String
17313
17559
  # resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses #=> Array
17560
+ # resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.carrier_ip #=> String
17314
17561
  # resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.ip_owner_id #=> String
17315
17562
  # resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.public_dns_name #=> String
17316
17563
  # resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.public_ip #=> String
@@ -17862,6 +18109,7 @@ module Aws::EC2
17862
18109
  # resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
17863
18110
  # resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].no_device #=> String
17864
18111
  # resp.launch_template_versions[0].launch_template_data.network_interfaces #=> Array
18112
+ # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
17865
18113
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_public_ip_address #=> Boolean
17866
18114
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].delete_on_termination #=> Boolean
17867
18115
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].description #=> String
@@ -19435,6 +19683,8 @@ module Aws::EC2
19435
19683
  # resp.network_interfaces[0].association.ip_owner_id #=> String
19436
19684
  # resp.network_interfaces[0].association.public_dns_name #=> String
19437
19685
  # resp.network_interfaces[0].association.public_ip #=> String
19686
+ # resp.network_interfaces[0].association.customer_owned_ip #=> String
19687
+ # resp.network_interfaces[0].association.carrier_ip #=> String
19438
19688
  # resp.network_interfaces[0].attachment.attach_time #=> Time
19439
19689
  # resp.network_interfaces[0].attachment.attachment_id #=> String
19440
19690
  # resp.network_interfaces[0].attachment.delete_on_termination #=> Boolean
@@ -19462,6 +19712,8 @@ module Aws::EC2
19462
19712
  # resp.network_interfaces[0].private_ip_addresses[0].association.ip_owner_id #=> String
19463
19713
  # resp.network_interfaces[0].private_ip_addresses[0].association.public_dns_name #=> String
19464
19714
  # resp.network_interfaces[0].private_ip_addresses[0].association.public_ip #=> String
19715
+ # resp.network_interfaces[0].private_ip_addresses[0].association.customer_owned_ip #=> String
19716
+ # resp.network_interfaces[0].private_ip_addresses[0].association.carrier_ip #=> String
19465
19717
  # resp.network_interfaces[0].private_ip_addresses[0].primary #=> Boolean
19466
19718
  # resp.network_interfaces[0].private_ip_addresses[0].private_dns_name #=> String
19467
19719
  # resp.network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
@@ -20658,6 +20910,7 @@ module Aws::EC2
20658
20910
  # resp.route_tables[0].routes[0].nat_gateway_id #=> String
20659
20911
  # resp.route_tables[0].routes[0].transit_gateway_id #=> String
20660
20912
  # resp.route_tables[0].routes[0].local_gateway_id #=> String
20913
+ # resp.route_tables[0].routes[0].carrier_gateway_id #=> String
20661
20914
  # resp.route_tables[0].routes[0].network_interface_id #=> String
20662
20915
  # resp.route_tables[0].routes[0].origin #=> String, one of "CreateRouteTable", "CreateRoute", "EnableVgwRoutePropagation"
20663
20916
  # resp.route_tables[0].routes[0].state #=> String, one of "active", "blackhole"
@@ -22035,6 +22288,7 @@ module Aws::EC2
22035
22288
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
22036
22289
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].secondary_private_ip_address_count #=> Integer
22037
22290
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].subnet_id #=> String
22291
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].associate_carrier_ip_address #=> Boolean
22038
22292
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].interface_type #=> String
22039
22293
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.availability_zone #=> String
22040
22294
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.group_name #=> String
@@ -22387,6 +22641,7 @@ module Aws::EC2
22387
22641
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
22388
22642
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].secondary_private_ip_address_count #=> Integer
22389
22643
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].subnet_id #=> String
22644
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
22390
22645
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
22391
22646
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
22392
22647
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
@@ -25543,9 +25798,11 @@ module Aws::EC2
25543
25798
  # resp.vpn_connections[0].transit_gateway_id #=> String
25544
25799
  # resp.vpn_connections[0].options.enable_acceleration #=> Boolean
25545
25800
  # resp.vpn_connections[0].options.static_routes_only #=> Boolean
25801
+ # resp.vpn_connections[0].options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
25546
25802
  # resp.vpn_connections[0].options.tunnel_options #=> Array
25547
25803
  # resp.vpn_connections[0].options.tunnel_options[0].outside_ip_address #=> String
25548
25804
  # resp.vpn_connections[0].options.tunnel_options[0].tunnel_inside_cidr #=> String
25805
+ # resp.vpn_connections[0].options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
25549
25806
  # resp.vpn_connections[0].options.tunnel_options[0].pre_shared_key #=> String
25550
25807
  # resp.vpn_connections[0].options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
25551
25808
  # resp.vpn_connections[0].options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
@@ -27927,6 +28184,7 @@ module Aws::EC2
27927
28184
  # resp.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
27928
28185
  # resp.launch_template_data.block_device_mappings[0].no_device #=> String
27929
28186
  # resp.launch_template_data.network_interfaces #=> Array
28187
+ # resp.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
27930
28188
  # resp.launch_template_data.network_interfaces[0].associate_public_ip_address #=> Boolean
27931
28189
  # resp.launch_template_data.network_interfaces[0].delete_on_termination #=> Boolean
27932
28190
  # resp.launch_template_data.network_interfaces[0].description #=> String
@@ -29253,7 +29511,8 @@ module Aws::EC2
29253
29511
  req.send_request(options)
29254
29512
  end
29255
29513
 
29256
- # Enables or disables an Availability Zone group for your account.
29514
+ # Changes the opt-in status of the Local Zone and Wavelength Zone group
29515
+ # for your account.
29257
29516
  #
29258
29517
  # Use [ DescribeAvailabilityZones][1] to view the value for `GroupName`.
29259
29518
  #
@@ -29262,12 +29521,14 @@ module Aws::EC2
29262
29521
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html
29263
29522
  #
29264
29523
  # @option params [required, String] :group_name
29265
- # The name of the Availability Zone Group.
29524
+ # The name of the Availability Zone group, Local Zone group, or
29525
+ # Wavelength Zone group.
29266
29526
  #
29267
29527
  # @option params [required, String] :opt_in_status
29268
- # Indicates whether to enable or disable membership. The valid values
29269
- # are `opted-in`. You must contact [AWS Support][1] to disable an
29270
- # Availability Zone group.
29528
+ # Indicates whether you are opted in to the Local Zone group or
29529
+ # Wavelength Zone group. The only valid value is `opted-in`. You must
29530
+ # contact [AWS Support][1] to opt out of a Local Zone group, or
29531
+ # Wavelength Zone group.
29271
29532
  #
29272
29533
  #
29273
29534
  #
@@ -32429,9 +32690,11 @@ module Aws::EC2
32429
32690
  # resp.vpn_connection.transit_gateway_id #=> String
32430
32691
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
32431
32692
  # resp.vpn_connection.options.static_routes_only #=> Boolean
32693
+ # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
32432
32694
  # resp.vpn_connection.options.tunnel_options #=> Array
32433
32695
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
32434
32696
  # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
32697
+ # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
32435
32698
  # resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
32436
32699
  # resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
32437
32700
  # resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
@@ -32515,9 +32778,11 @@ module Aws::EC2
32515
32778
  # resp.vpn_connection.transit_gateway_id #=> String
32516
32779
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
32517
32780
  # resp.vpn_connection.options.static_routes_only #=> Boolean
32781
+ # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
32518
32782
  # resp.vpn_connection.options.tunnel_options #=> Array
32519
32783
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
32520
32784
  # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
32785
+ # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
32521
32786
  # resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
32522
32787
  # resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
32523
32788
  # resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
@@ -32600,6 +32865,7 @@ module Aws::EC2
32600
32865
  # vpn_tunnel_outside_ip_address: "String", # required
32601
32866
  # tunnel_options: { # required
32602
32867
  # tunnel_inside_cidr: "String",
32868
+ # tunnel_inside_ipv_6_cidr: "String",
32603
32869
  # pre_shared_key: "String",
32604
32870
  # phase_1_lifetime_seconds: 1,
32605
32871
  # phase_2_lifetime_seconds: 1,
@@ -32658,9 +32924,11 @@ module Aws::EC2
32658
32924
  # resp.vpn_connection.transit_gateway_id #=> String
32659
32925
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
32660
32926
  # resp.vpn_connection.options.static_routes_only #=> Boolean
32927
+ # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
32661
32928
  # resp.vpn_connection.options.tunnel_options #=> Array
32662
32929
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
32663
32930
  # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
32931
+ # resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
32664
32932
  # resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
32665
32933
  # resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
32666
32934
  # resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
@@ -33808,7 +34076,8 @@ module Aws::EC2
33808
34076
  # \[EC2-Classic\] The Elastic IP address. Required for EC2-Classic.
33809
34077
  #
33810
34078
  # @option params [String] :network_border_group
33811
- # The location that the IP address is released from.
34079
+ # The set of Availability Zones, Local Zones, or Wavelength Zones from
34080
+ # which AWS advertises IP addresses.
33812
34081
  #
33813
34082
  # If you provide an incorrect network border group, you will receive an
33814
34083
  # `InvalidAddress.NotFound` error. For more information, see [Error
@@ -34181,6 +34450,9 @@ module Aws::EC2
34181
34450
  # @option params [String] :local_gateway_id
34182
34451
  # The ID of the local gateway.
34183
34452
  #
34453
+ # @option params [String] :carrier_gateway_id
34454
+ # \[IPv4 traffic only\] The ID of a carrier gateway.
34455
+ #
34184
34456
  # @option params [String] :network_interface_id
34185
34457
  # The ID of a network interface.
34186
34458
  #
@@ -34218,6 +34490,7 @@ module Aws::EC2
34218
34490
  # nat_gateway_id: "NatGatewayId",
34219
34491
  # transit_gateway_id: "TransitGatewayId",
34220
34492
  # local_gateway_id: "LocalGatewayId",
34493
+ # carrier_gateway_id: "CarrierGatewayId",
34221
34494
  # network_interface_id: "NetworkInterfaceId",
34222
34495
  # route_table_id: "RouteTableId", # required
34223
34496
  # vpc_peering_connection_id: "VpcPeeringConnectionId",
@@ -34708,6 +34981,7 @@ module Aws::EC2
34708
34981
  # ],
34709
34982
  # secondary_private_ip_address_count: 1,
34710
34983
  # subnet_id: "String",
34984
+ # associate_carrier_ip_address: false,
34711
34985
  # interface_type: "String",
34712
34986
  # },
34713
34987
  # ],
@@ -35043,6 +35317,7 @@ module Aws::EC2
35043
35317
  # ],
35044
35318
  # secondary_private_ip_address_count: 1,
35045
35319
  # subnet_id: "String",
35320
+ # associate_carrier_ip_address: false,
35046
35321
  # interface_type: "String",
35047
35322
  # },
35048
35323
  # ],
@@ -35124,6 +35399,7 @@ module Aws::EC2
35124
35399
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
35125
35400
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].secondary_private_ip_address_count #=> Integer
35126
35401
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].subnet_id #=> String
35402
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
35127
35403
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
35128
35404
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
35129
35405
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
@@ -36373,6 +36649,7 @@ module Aws::EC2
36373
36649
  # ],
36374
36650
  # secondary_private_ip_address_count: 1,
36375
36651
  # subnet_id: "String",
36652
+ # associate_carrier_ip_address: false,
36376
36653
  # interface_type: "String",
36377
36654
  # },
36378
36655
  # ],
@@ -36504,6 +36781,7 @@ module Aws::EC2
36504
36781
  # resp.instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_state #=> String
36505
36782
  # resp.instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_time #=> Time
36506
36783
  # resp.instances[0].network_interfaces #=> Array
36784
+ # resp.instances[0].network_interfaces[0].association.carrier_ip #=> String
36507
36785
  # resp.instances[0].network_interfaces[0].association.ip_owner_id #=> String
36508
36786
  # resp.instances[0].network_interfaces[0].association.public_dns_name #=> String
36509
36787
  # resp.instances[0].network_interfaces[0].association.public_ip #=> String
@@ -36524,6 +36802,7 @@ module Aws::EC2
36524
36802
  # resp.instances[0].network_interfaces[0].private_dns_name #=> String
36525
36803
  # resp.instances[0].network_interfaces[0].private_ip_address #=> String
36526
36804
  # resp.instances[0].network_interfaces[0].private_ip_addresses #=> Array
36805
+ # resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.carrier_ip #=> String
36527
36806
  # resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.ip_owner_id #=> String
36528
36807
  # resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.public_dns_name #=> String
36529
36808
  # resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.public_ip #=> String
@@ -37927,7 +38206,7 @@ module Aws::EC2
37927
38206
  params: params,
37928
38207
  config: config)
37929
38208
  context[:gem_name] = 'aws-sdk-ec2'
37930
- context[:gem_version] = '1.182.0'
38209
+ context[:gem_version] = '1.187.0'
37931
38210
  Seahorse::Client::Request.new(handlers, context)
37932
38211
  end
37933
38212