aws-sdk-ec2 1.250.0 → 1.251.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: 2496b7b06359f697b51ccd816285feee7baf3617817c75d3eefb71fc7de00696
4
- data.tar.gz: 53e3364b97564b30028d817287833610b9c27cceaf2ac602e5e5a8b4410c755d
3
+ metadata.gz: 6b547bf8c9cdd5c8449cb12697413c4104ce8f9ebebb943fc825f04bfad270bb
4
+ data.tar.gz: 769c7b099848c23974b09816c9c96da4f087552193b801026b268e22acee9cf1
5
5
  SHA512:
6
- metadata.gz: e4a81a78579de61fdc0cdbc59d7876b9f90bad324cf30feba7938bc498bd05d83e5a1946db5e789a5adfcaabb9506e9c25bd0887283a76b9ae8ca3671f485ae8
7
- data.tar.gz: 8791b02867c1d169369a27f9803137baef130ca95be2946e15612b2bebc7a623bbd829260bdca2a2f11438e60c8cb6e691d07feda03decc71816d2e1716f7d5e
6
+ metadata.gz: 3deadbfb54763f40456ce907e029c47f837d2c4cf5a5c01de77e0dcd766f8c4d356b93d0922f080676a363f324ef1349d86db0cecdc6f75e3d1dd8fcf7cf74a9
7
+ data.tar.gz: f2dc57853511fd13ce3f37288c2a73b256ad470bda3b4fd603d7bbb25adbcd23d176ebf82aa087e0e363b9b5afb17980631b906b7d435dda944065ff7f082493
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.251.0 (2021-07-22)
5
+ ------------------
6
+
7
+ * Feature - This release allows customers to assign prefixes to their elastic network interface and to reserve IP blocks in their subnet CIDRs. These reserved blocks can be used to assign prefixes to elastic network interfaces or be excluded from auto-assignment.
8
+
4
9
  1.250.0 (2021-07-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.250.0
1
+ 1.251.0
data/lib/aws-sdk-ec2.rb CHANGED
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.250.0'
75
+ GEM_VERSION = '1.251.0'
76
76
 
77
77
  end
@@ -1041,9 +1041,15 @@ module Aws::EC2
1041
1041
  # You must specify either the IPv6 addresses or the IPv6 address count
1042
1042
  # in the request.
1043
1043
  #
1044
+ # You can optionally use Prefix Delegation on the network interface. You
1045
+ # must specify either the IPV6 Prefix Delegation prefixes, or the IPv6
1046
+ # Prefix Delegation count. For information, see [Prefix Delegation][2]
1047
+ # in the *Amazon Elastic Compute Cloud User Guide*.
1048
+ #
1044
1049
  #
1045
1050
  #
1046
1051
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
1052
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation
1047
1053
  #
1048
1054
  # @option params [Integer] :ipv_6_address_count
1049
1055
  # The number of additional IPv6 addresses to assign to the network
@@ -1058,12 +1064,23 @@ module Aws::EC2
1058
1064
  # interface. You can't use this option if you're specifying a number
1059
1065
  # of IPv6 addresses.
1060
1066
  #
1067
+ # @option params [Integer] :ipv_6_prefix_count
1068
+ # The number of IPv6 Prefix Delegation prefixes that AWS automatically
1069
+ # assigns to the network interface. You cannot use this option if you
1070
+ # use the `Ipv6Prefixes` option.
1071
+ #
1072
+ # @option params [Array<String>] :ipv_6_prefixes
1073
+ # One or more IPv6 Prefix Delegation prefixes assigned to the network
1074
+ # interface. You cannot use this option if you use the `Ipv6PrefixCount`
1075
+ # option.
1076
+ #
1061
1077
  # @option params [required, String] :network_interface_id
1062
1078
  # The ID of the network interface.
1063
1079
  #
1064
1080
  # @return [Types::AssignIpv6AddressesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1065
1081
  #
1066
1082
  # * {Types::AssignIpv6AddressesResult#assigned_ipv_6_addresses #assigned_ipv_6_addresses} => Array&lt;String&gt;
1083
+ # * {Types::AssignIpv6AddressesResult#assigned_ipv_6_prefixes #assigned_ipv_6_prefixes} => Array&lt;String&gt;
1067
1084
  # * {Types::AssignIpv6AddressesResult#network_interface_id #network_interface_id} => String
1068
1085
  #
1069
1086
  # @example Request syntax with placeholder values
@@ -1071,6 +1088,8 @@ module Aws::EC2
1071
1088
  # resp = client.assign_ipv_6_addresses({
1072
1089
  # ipv_6_address_count: 1,
1073
1090
  # ipv_6_addresses: ["String"],
1091
+ # ipv_6_prefix_count: 1,
1092
+ # ipv_6_prefixes: ["String"],
1074
1093
  # network_interface_id: "NetworkInterfaceId", # required
1075
1094
  # })
1076
1095
  #
@@ -1078,6 +1097,8 @@ module Aws::EC2
1078
1097
  #
1079
1098
  # resp.assigned_ipv_6_addresses #=> Array
1080
1099
  # resp.assigned_ipv_6_addresses[0] #=> String
1100
+ # resp.assigned_ipv_6_prefixes #=> Array
1101
+ # resp.assigned_ipv_6_prefixes[0] #=> String
1081
1102
  # resp.network_interface_id #=> String
1082
1103
  #
1083
1104
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignIpv6Addresses AWS API Documentation
@@ -1113,10 +1134,16 @@ module Aws::EC2
1113
1134
  # You must specify either the IP addresses or the IP address count in
1114
1135
  # the request.
1115
1136
  #
1137
+ # You can optionally use Prefix Delegation on the network interface. You
1138
+ # must specify either the IPv4 Prefix Delegation prefixes, or the IPv4
1139
+ # Prefix Delegation count. For information, see [Prefix Delegation][3]
1140
+ # in the *Amazon Elastic Compute Cloud User Guide*.
1141
+ #
1116
1142
  #
1117
1143
  #
1118
1144
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html
1119
1145
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
1146
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation
1120
1147
  #
1121
1148
  # @option params [Boolean] :allow_reassignment
1122
1149
  # Indicates whether to allow an IP address that is already assigned to
@@ -1139,10 +1166,21 @@ module Aws::EC2
1139
1166
  # interface. You can't specify this parameter when also specifying
1140
1167
  # private IP addresses.
1141
1168
  #
1169
+ # @option params [Array<String>] :ipv_4_prefixes
1170
+ # One or more IPv4 Prefix Delegation prefixes assigned to the network
1171
+ # interface. You cannot use this option if you use the `Ipv4PrefixCount`
1172
+ # option.
1173
+ #
1174
+ # @option params [Integer] :ipv_4_prefix_count
1175
+ # The number of IPv4 Prefix Delegation prefixes that AWS automatically
1176
+ # assigns to the network interface. You cannot use this option if you
1177
+ # use the `Ipv4 Prefixes` option.
1178
+ #
1142
1179
  # @return [Types::AssignPrivateIpAddressesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1143
1180
  #
1144
1181
  # * {Types::AssignPrivateIpAddressesResult#network_interface_id #network_interface_id} => String
1145
1182
  # * {Types::AssignPrivateIpAddressesResult#assigned_private_ip_addresses #assigned_private_ip_addresses} => Array&lt;Types::AssignedPrivateIpAddress&gt;
1183
+ # * {Types::AssignPrivateIpAddressesResult#assigned_ipv_4_prefixes #assigned_ipv_4_prefixes} => Array&lt;Types::Ipv4PrefixSpecification&gt;
1146
1184
  #
1147
1185
  #
1148
1186
  # @example Example: To assign a specific secondary private IP address to an interface
@@ -1174,6 +1212,8 @@ module Aws::EC2
1174
1212
  # network_interface_id: "NetworkInterfaceId", # required
1175
1213
  # private_ip_addresses: ["String"],
1176
1214
  # secondary_private_ip_address_count: 1,
1215
+ # ipv_4_prefixes: ["String"],
1216
+ # ipv_4_prefix_count: 1,
1177
1217
  # })
1178
1218
  #
1179
1219
  # @example Response structure
@@ -1181,6 +1221,8 @@ module Aws::EC2
1181
1221
  # resp.network_interface_id #=> String
1182
1222
  # resp.assigned_private_ip_addresses #=> Array
1183
1223
  # resp.assigned_private_ip_addresses[0].private_ip_address #=> String
1224
+ # resp.assigned_ipv_4_prefixes #=> Array
1225
+ # resp.assigned_ipv_4_prefixes[0].ipv_4_prefix #=> String
1184
1226
  #
1185
1227
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddresses AWS API Documentation
1186
1228
  #
@@ -1416,7 +1458,7 @@ module Aws::EC2
1416
1458
  # the instance renews its DHCP lease. You can explicitly renew the lease
1417
1459
  # using the operating system on the instance.
1418
1460
  #
1419
- # For more information, see [DHCP Options Sets][1] in the *Amazon
1461
+ # For more information, see [DHCP options sets][1] in the *Amazon
1420
1462
  # Virtual Private Cloud User Guide*.
1421
1463
  #
1422
1464
  #
@@ -1618,7 +1660,7 @@ module Aws::EC2
1618
1660
  #
1619
1661
  #
1620
1662
  #
1621
- # [1]: https://docs.aws.amazon.com/monitoring-instances-status-check_sched.html#event-windows
1663
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/event-windows.html
1622
1664
  #
1623
1665
  # @option params [Boolean] :dry_run
1624
1666
  # Checks whether you have the required permissions for the action,
@@ -1691,7 +1733,7 @@ module Aws::EC2
1691
1733
  # an association ID, which you need in order to disassociate the route
1692
1734
  # table later. A route table can be associated with multiple subnets.
1693
1735
  #
1694
- # For more information, see [Route Tables][1] in the *Amazon Virtual
1736
+ # For more information, see [Route tables][1] in the *Amazon Virtual
1695
1737
  # Private Cloud User Guide*.
1696
1738
  #
1697
1739
  #
@@ -1997,7 +2039,7 @@ module Aws::EC2
1997
2039
  # block, an IPv6 pool, or an Amazon-provided IPv6 CIDR block.
1998
2040
  #
1999
2041
  # For more information about associating CIDR blocks with your VPC and
2000
- # applicable restrictions, see [VPC and Subnet Sizing][2] in the *Amazon
2042
+ # applicable restrictions, see [VPC and subnet sizing][2] in the *Amazon
2001
2043
  # Virtual Private Cloud User Guide*.
2002
2044
  #
2003
2045
  #
@@ -4170,8 +4212,8 @@ module Aws::EC2
4170
4212
  end
4171
4213
 
4172
4214
  # Creates a carrier gateway. For more information about carrier
4173
- # gateways, see [Carrier gateways][1] in the *AWS Wavelength Developer
4174
- # Guide*.
4215
+ # gateways, see [Carrier gateways][1] in the *Amazon Web Services
4216
+ # Wavelength Developer Guide*.
4175
4217
  #
4176
4218
  #
4177
4219
  #
@@ -4191,8 +4233,8 @@ module Aws::EC2
4191
4233
  #
4192
4234
  # @option params [String] :client_token
4193
4235
  # Unique, case-sensitive identifier that you provide to ensure the
4194
- # idempotency of the request. For more information, see [How to Ensure
4195
- # Idempotency][1].
4236
+ # idempotency of the request. For more information, see [How to ensure
4237
+ # idempotency][1].
4196
4238
  #
4197
4239
  # **A suitable default value is auto-generated.** You should normally
4198
4240
  # not need to pass this option.**
@@ -4655,7 +4697,7 @@ module Aws::EC2
4655
4697
  # Creates a default subnet with a size `/20` IPv4 CIDR block in the
4656
4698
  # specified Availability Zone in your default VPC. You can have only one
4657
4699
  # default subnet per Availability Zone. For more information, see
4658
- # [Creating a Default Subnet][1] in the *Amazon Virtual Private Cloud
4700
+ # [Creating a default subnet][1] in the *Amazon Virtual Private Cloud
4659
4701
  # User Guide*.
4660
4702
  #
4661
4703
  #
@@ -4719,7 +4761,7 @@ module Aws::EC2
4719
4761
 
4720
4762
  # Creates a default VPC with a size `/16` IPv4 CIDR block and a default
4721
4763
  # subnet in each Availability Zone. For more information about the
4722
- # components of a default VPC, see [Default VPC and Default Subnets][1]
4764
+ # components of a default VPC, see [Default VPC and default subnets][1]
4723
4765
  # in the *Amazon Virtual Private Cloud User Guide*. You cannot specify
4724
4766
  # the components of the default VPC yourself.
4725
4767
  #
@@ -4829,7 +4871,7 @@ module Aws::EC2
4829
4871
  # create a set of options, and if your VPC has an internet gateway, make
4830
4872
  # sure to set the `domain-name-servers` option either to
4831
4873
  # `AmazonProvidedDNS` or to a domain name server of your choice. For
4832
- # more information, see [DHCP Options Sets][2] in the *Amazon Virtual
4874
+ # more information, see [DHCP options sets][2] in the *Amazon Virtual
4833
4875
  # Private Cloud User Guide*.
4834
4876
  #
4835
4877
  #
@@ -4942,8 +4984,8 @@ module Aws::EC2
4942
4984
  #
4943
4985
  # @option params [String] :client_token
4944
4986
  # Unique, case-sensitive identifier that you provide to ensure the
4945
- # idempotency of the request. For more information, see [How to Ensure
4946
- # Idempotency][1].
4987
+ # idempotency of the request. For more information, see [How to ensure
4988
+ # idempotency][1].
4947
4989
  #
4948
4990
  #
4949
4991
  #
@@ -5256,7 +5298,7 @@ module Aws::EC2
5256
5298
  #
5257
5299
  # Flow log data for a monitored network interface is recorded as flow
5258
5300
  # log records, which are log events consisting of fields that describe
5259
- # the traffic flow. For more information, see [Flow Log Records][1] in
5301
+ # the traffic flow. For more information, see [Flow log records][1] in
5260
5302
  # the *Amazon Virtual Private Cloud User Guide*.
5261
5303
  #
5262
5304
  # When publishing to CloudWatch Logs, flow log records are published to
@@ -5281,8 +5323,8 @@ module Aws::EC2
5281
5323
  #
5282
5324
  # @option params [String] :client_token
5283
5325
  # Unique, case-sensitive identifier that you provide to ensure the
5284
- # idempotency of the request. For more information, see [How to Ensure
5285
- # Idempotency][1].
5326
+ # idempotency of the request. For more information, see [How to ensure
5327
+ # idempotency][1].
5286
5328
  #
5287
5329
  #
5288
5330
  #
@@ -5351,14 +5393,14 @@ module Aws::EC2
5351
5393
  #
5352
5394
  # @option params [String] :log_format
5353
5395
  # The fields to include in the flow log record, in the order in which
5354
- # they should appear. For a list of available fields, see [Flow Log
5355
- # Records][1]. If you omit this parameter, the flow log is created using
5396
+ # they should appear. For a list of available fields, see [Flow log
5397
+ # records][1]. If you omit this parameter, the flow log is created using
5356
5398
  # the default format. If you specify this parameter, you must specify at
5357
5399
  # least one field.
5358
5400
  #
5359
5401
  # Specify the fields using the `$\{field-id\}` format, separated by
5360
- # spaces. For the AWS CLI, use single quotation marks (' ') to
5361
- # surround the parameter value.
5402
+ # spaces. For the CLI, use single quotation marks (' ') to surround
5403
+ # the parameter value.
5362
5404
  #
5363
5405
  #
5364
5406
  #
@@ -5708,7 +5750,7 @@ module Aws::EC2
5708
5750
  #
5709
5751
  #
5710
5752
  #
5711
- # [1]: https://docs.aws.amazon.com/monitoring-instances-status-check_sched.html#event-windows
5753
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/event-windows.html
5712
5754
  #
5713
5755
  # @option params [Boolean] :dry_run
5714
5756
  # Checks whether you have the required permissions for the action,
@@ -6213,6 +6255,18 @@ module Aws::EC2
6213
6255
  # secondary_private_ip_address_count: 1,
6214
6256
  # subnet_id: "SubnetId",
6215
6257
  # network_card_index: 1,
6258
+ # ipv_4_prefixes: [
6259
+ # {
6260
+ # ipv_4_prefix: "String",
6261
+ # },
6262
+ # ],
6263
+ # ipv_4_prefix_count: 1,
6264
+ # ipv_6_prefixes: [
6265
+ # {
6266
+ # ipv_6_prefix: "String",
6267
+ # },
6268
+ # ],
6269
+ # ipv_6_prefix_count: 1,
6216
6270
  # },
6217
6271
  # ],
6218
6272
  # image_id: "ImageId",
@@ -6499,6 +6553,18 @@ module Aws::EC2
6499
6553
  # secondary_private_ip_address_count: 1,
6500
6554
  # subnet_id: "SubnetId",
6501
6555
  # network_card_index: 1,
6556
+ # ipv_4_prefixes: [
6557
+ # {
6558
+ # ipv_4_prefix: "String",
6559
+ # },
6560
+ # ],
6561
+ # ipv_4_prefix_count: 1,
6562
+ # ipv_6_prefixes: [
6563
+ # {
6564
+ # ipv_6_prefix: "String",
6565
+ # },
6566
+ # ],
6567
+ # ipv_6_prefix_count: 1,
6502
6568
  # },
6503
6569
  # ],
6504
6570
  # image_id: "ImageId",
@@ -6633,6 +6699,12 @@ module Aws::EC2
6633
6699
  # resp.launch_template_version.launch_template_data.network_interfaces[0].secondary_private_ip_address_count #=> Integer
6634
6700
  # resp.launch_template_version.launch_template_data.network_interfaces[0].subnet_id #=> String
6635
6701
  # resp.launch_template_version.launch_template_data.network_interfaces[0].network_card_index #=> Integer
6702
+ # resp.launch_template_version.launch_template_data.network_interfaces[0].ipv_4_prefixes #=> Array
6703
+ # resp.launch_template_version.launch_template_data.network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
6704
+ # resp.launch_template_version.launch_template_data.network_interfaces[0].ipv_4_prefix_count #=> Integer
6705
+ # resp.launch_template_version.launch_template_data.network_interfaces[0].ipv_6_prefixes #=> Array
6706
+ # resp.launch_template_version.launch_template_data.network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
6707
+ # resp.launch_template_version.launch_template_data.network_interfaces[0].ipv_6_prefix_count #=> Integer
6636
6708
  # resp.launch_template_version.launch_template_data.image_id #=> String
6637
6709
  # resp.launch_template_version.launch_template_data.instance_type #=> String, one of "t1.micro", "t2.nano", "t2.micro", "t2.small", "t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro", "t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano", "t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge", "t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium", "t4g.large", "t4g.xlarge", "t4g.2xlarge", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge", "m4.16xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "cr1.8xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "r4.large", "r4.xlarge", "r4.2xlarge", "r4.4xlarge", "r4.8xlarge", "r4.16xlarge", "r5.large", "r5.xlarge", "r5.2xlarge", "r5.4xlarge", "r5.8xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", "r5.metal", "r5a.large", "r5a.xlarge", "r5a.2xlarge", "r5a.4xlarge", "r5a.8xlarge", "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", "r5b.large", "r5b.xlarge", "r5b.2xlarge", "r5b.4xlarge", "r5b.8xlarge", "r5b.12xlarge", "r5b.16xlarge", "r5b.24xlarge", "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", "r5d.4xlarge", "r5d.8xlarge", "r5d.12xlarge", "r5d.16xlarge", "r5d.24xlarge", "r5d.metal", "r5ad.large", "r5ad.xlarge", "r5ad.2xlarge", "r5ad.4xlarge", "r5ad.8xlarge", "r5ad.12xlarge", "r5ad.16xlarge", "r5ad.24xlarge", "r6g.metal", "r6g.medium", "r6g.large", "r6g.xlarge", "r6g.2xlarge", "r6g.4xlarge", "r6g.8xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6gd.metal", "r6gd.medium", "r6gd.large", "r6gd.xlarge", "r6gd.2xlarge", "r6gd.4xlarge", "r6gd.8xlarge", "r6gd.12xlarge", "r6gd.16xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.xlarge", "x1e.2xlarge", "x1e.4xlarge", "x1e.8xlarge", "x1e.16xlarge", "x1e.32xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", "i3.large", "i3.xlarge", "i3.2xlarge", "i3.4xlarge", "i3.8xlarge", "i3.16xlarge", "i3.metal", "i3en.large", "i3en.xlarge", "i3en.2xlarge", "i3en.3xlarge", "i3en.6xlarge", "i3en.12xlarge", "i3en.24xlarge", "i3en.metal", "hi1.4xlarge", "hs1.8xlarge", "c1.medium", "c1.xlarge", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "c5.large", "c5.xlarge", "c5.2xlarge", "c5.4xlarge", "c5.9xlarge", "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", "c5.metal", "c5a.large", "c5a.xlarge", "c5a.2xlarge", "c5a.4xlarge", "c5a.8xlarge", "c5a.12xlarge", "c5a.16xlarge", "c5a.24xlarge", "c5ad.large", "c5ad.xlarge", "c5ad.2xlarge", "c5ad.4xlarge", "c5ad.8xlarge", "c5ad.12xlarge", "c5ad.16xlarge", "c5ad.24xlarge", "c5d.large", "c5d.xlarge", "c5d.2xlarge", "c5d.4xlarge", "c5d.9xlarge", "c5d.12xlarge", "c5d.18xlarge", "c5d.24xlarge", "c5d.metal", "c5n.large", "c5n.xlarge", "c5n.2xlarge", "c5n.4xlarge", "c5n.9xlarge", "c5n.18xlarge", "c5n.metal", "c6g.metal", "c6g.medium", "c6g.large", "c6g.xlarge", "c6g.2xlarge", "c6g.4xlarge", "c6g.8xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6gd.metal", "c6gd.medium", "c6gd.large", "c6gd.xlarge", "c6gd.2xlarge", "c6gd.4xlarge", "c6gd.8xlarge", "c6gd.12xlarge", "c6gd.16xlarge", "c6gn.medium", "c6gn.large", "c6gn.xlarge", "c6gn.2xlarge", "c6gn.4xlarge", "c6gn.8xlarge", "c6gn.12xlarge", "c6gn.16xlarge", "cc1.4xlarge", "cc2.8xlarge", "g2.2xlarge", "g2.8xlarge", "g3.4xlarge", "g3.8xlarge", "g3.16xlarge", "g3s.xlarge", "g4ad.4xlarge", "g4ad.8xlarge", "g4ad.16xlarge", "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge", "g4dn.metal", "cg1.4xlarge", "p2.xlarge", "p2.8xlarge", "p2.16xlarge", "p3.2xlarge", "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", "p4d.24xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", "d3.xlarge", "d3.2xlarge", "d3.4xlarge", "d3.8xlarge", "d3en.xlarge", "d3en.2xlarge", "d3en.4xlarge", "d3en.6xlarge", "d3en.8xlarge", "d3en.12xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", "m5.large", "m5.xlarge", "m5.2xlarge", "m5.4xlarge", "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", "m5.metal", "m5a.large", "m5a.xlarge", "m5a.2xlarge", "m5a.4xlarge", "m5a.8xlarge", "m5a.12xlarge", "m5a.16xlarge", "m5a.24xlarge", "m5d.large", "m5d.xlarge", "m5d.2xlarge", "m5d.4xlarge", "m5d.8xlarge", "m5d.12xlarge", "m5d.16xlarge", "m5d.24xlarge", "m5d.metal", "m5ad.large", "m5ad.xlarge", "m5ad.2xlarge", "m5ad.4xlarge", "m5ad.8xlarge", "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", "m5zn.large", "m5zn.xlarge", "m5zn.2xlarge", "m5zn.3xlarge", "m5zn.6xlarge", "m5zn.12xlarge", "m5zn.metal", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "h1.16xlarge", "z1d.large", "z1d.xlarge", "z1d.2xlarge", "z1d.3xlarge", "z1d.6xlarge", "z1d.12xlarge", "z1d.metal", "u-6tb1.56xlarge", "u-6tb1.112xlarge", "u-9tb1.112xlarge", "u-12tb1.112xlarge", "u-6tb1.metal", "u-9tb1.metal", "u-12tb1.metal", "u-18tb1.metal", "u-24tb1.metal", "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge", "a1.4xlarge", "a1.metal", "m5dn.large", "m5dn.xlarge", "m5dn.2xlarge", "m5dn.4xlarge", "m5dn.8xlarge", "m5dn.12xlarge", "m5dn.16xlarge", "m5dn.24xlarge", "m5dn.metal", "m5n.large", "m5n.xlarge", "m5n.2xlarge", "m5n.4xlarge", "m5n.8xlarge", "m5n.12xlarge", "m5n.16xlarge", "m5n.24xlarge", "m5n.metal", "r5dn.large", "r5dn.xlarge", "r5dn.2xlarge", "r5dn.4xlarge", "r5dn.8xlarge", "r5dn.12xlarge", "r5dn.16xlarge", "r5dn.24xlarge", "r5dn.metal", "r5n.large", "r5n.xlarge", "r5n.2xlarge", "r5n.4xlarge", "r5n.8xlarge", "r5n.12xlarge", "r5n.16xlarge", "r5n.24xlarge", "r5n.metal", "inf1.xlarge", "inf1.2xlarge", "inf1.6xlarge", "inf1.24xlarge", "m6g.metal", "m6g.medium", "m6g.large", "m6g.xlarge", "m6g.2xlarge", "m6g.4xlarge", "m6g.8xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6gd.metal", "m6gd.medium", "m6gd.large", "m6gd.xlarge", "m6gd.2xlarge", "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", "m6gd.16xlarge", "mac1.metal", "x2gd.medium", "x2gd.large", "x2gd.xlarge", "x2gd.2xlarge", "x2gd.4xlarge", "x2gd.8xlarge", "x2gd.12xlarge", "x2gd.16xlarge", "x2gd.metal"
6638
6710
  # resp.launch_template_version.launch_template_data.key_name #=> String
@@ -6926,7 +6998,7 @@ module Aws::EC2
6926
6998
  # behind a small pool of allowlisted IPv4 addresses, preserving private
6927
6999
  # IPv4 addresses, and communicating between overlapping networks.
6928
7000
  #
6929
- # For more information, see [NAT Gateways][1] in the *Amazon Virtual
7001
+ # For more information, see [NAT gateways][1] in the *Amazon Virtual
6930
7002
  # Private Cloud User Guide*.
6931
7003
  #
6932
7004
  #
@@ -6942,8 +7014,8 @@ module Aws::EC2
6942
7014
  #
6943
7015
  # @option params [String] :client_token
6944
7016
  # Unique, case-sensitive identifier that you provide to ensure the
6945
- # idempotency of the request. For more information, see [How to Ensure
6946
- # Idempotency][1].
7017
+ # idempotency of the request. For more information, see [How to ensure
7018
+ # idempotency][1].
6947
7019
  #
6948
7020
  # Constraint: Maximum 64 ASCII characters.
6949
7021
  #
@@ -7312,17 +7384,18 @@ module Aws::EC2
7312
7384
  # [1]: https://docs.aws.amazon.com/vpc/latest/reachability/
7313
7385
  #
7314
7386
  # @option params [String] :source_ip
7315
- # The IP address of the AWS resource that is the source of the path.
7387
+ # The IP address of the Amazon Web Services resource that is the source
7388
+ # of the path.
7316
7389
  #
7317
7390
  # @option params [String] :destination_ip
7318
- # The IP address of the AWS resource that is the destination of the
7319
- # path.
7391
+ # The IP address of the Amazon Web Services resource that is the
7392
+ # destination of the path.
7320
7393
  #
7321
7394
  # @option params [required, String] :source
7322
- # The AWS resource that is the source of the path.
7395
+ # The Amazon Web Services resource that is the source of the path.
7323
7396
  #
7324
7397
  # @option params [required, String] :destination
7325
- # The AWS resource that is the destination of the path.
7398
+ # The Amazon Web Services resource that is the destination of the path.
7326
7399
  #
7327
7400
  # @option params [required, String] :protocol
7328
7401
  # The protocol.
@@ -7341,8 +7414,8 @@ module Aws::EC2
7341
7414
  #
7342
7415
  # @option params [required, String] :client_token
7343
7416
  # Unique, case-sensitive identifier that you provide to ensure the
7344
- # idempotency of the request. For more information, see [How to Ensure
7345
- # Idempotency][1].
7417
+ # idempotency of the request. For more information, see [How to ensure
7418
+ # idempotency][1].
7346
7419
  #
7347
7420
  # **A suitable default value is auto-generated.** You should normally
7348
7421
  # not need to pass this option.**
@@ -7462,6 +7535,26 @@ module Aws::EC2
7462
7535
  #
7463
7536
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
7464
7537
  #
7538
+ # @option params [Array<Types::Ipv4PrefixSpecificationRequest>] :ipv_4_prefixes
7539
+ # One or moreIPv4 Prefix Delegation prefixes assigned to the network
7540
+ # interface. You cannot use this option if you use the `Ipv4PrefixCount`
7541
+ # option.
7542
+ #
7543
+ # @option params [Integer] :ipv_4_prefix_count
7544
+ # The number of IPv4 Prefix Delegation prefixes that AWS automatically
7545
+ # assigns to the network interface. You cannot use this option if you
7546
+ # use the `Ipv4 Prefixes` option.
7547
+ #
7548
+ # @option params [Array<Types::Ipv6PrefixSpecificationRequest>] :ipv_6_prefixes
7549
+ # One or moreIPv6 Prefix Delegation prefixes assigned to the network
7550
+ # interface. You cannot use this option if you use the `Ipv6PrefixCount`
7551
+ # option.
7552
+ #
7553
+ # @option params [Integer] :ipv_6_prefix_count
7554
+ # The number of IPv6 Prefix Delegation prefixes that AWS automatically
7555
+ # assigns to the network interface. You cannot use this option if you
7556
+ # use the `Ipv6Prefixes` option.
7557
+ #
7465
7558
  # @option params [String] :interface_type
7466
7559
  # Indicates the type of network interface. To create an Elastic Fabric
7467
7560
  # Adapter (EFA), specify `efa`. For more information, see [ Elastic
@@ -7563,6 +7656,18 @@ module Aws::EC2
7563
7656
  # },
7564
7657
  # ],
7565
7658
  # secondary_private_ip_address_count: 1,
7659
+ # ipv_4_prefixes: [
7660
+ # {
7661
+ # ipv_4_prefix: "String",
7662
+ # },
7663
+ # ],
7664
+ # ipv_4_prefix_count: 1,
7665
+ # ipv_6_prefixes: [
7666
+ # {
7667
+ # ipv_6_prefix: "String",
7668
+ # },
7669
+ # ],
7670
+ # ipv_6_prefix_count: 1,
7566
7671
  # interface_type: "efa", # accepts efa, branch, trunk
7567
7672
  # subnet_id: "SubnetId", # required
7568
7673
  # tag_specifications: [
@@ -7621,6 +7726,10 @@ module Aws::EC2
7621
7726
  # resp.network_interface.private_ip_addresses[0].primary #=> Boolean
7622
7727
  # resp.network_interface.private_ip_addresses[0].private_dns_name #=> String
7623
7728
  # resp.network_interface.private_ip_addresses[0].private_ip_address #=> String
7729
+ # resp.network_interface.ipv_4_prefixes #=> Array
7730
+ # resp.network_interface.ipv_4_prefixes[0].ipv_4_prefix #=> String
7731
+ # resp.network_interface.ipv_6_prefixes #=> Array
7732
+ # resp.network_interface.ipv_6_prefixes[0].ipv_6_prefix #=> String
7624
7733
  # resp.network_interface.requester_id #=> String
7625
7734
  # resp.network_interface.requester_managed #=> Boolean
7626
7735
  # resp.network_interface.source_dest_check #=> Boolean
@@ -8087,7 +8196,7 @@ module Aws::EC2
8087
8196
  # and is therefore more specific, so we use that route to determine
8088
8197
  # where to target the traffic.
8089
8198
  #
8090
- # For more information about route tables, see [Route Tables][1] in the
8199
+ # For more information about route tables, see [Route tables][1] in the
8091
8200
  # *Amazon Virtual Private Cloud User Guide*.
8092
8201
  #
8093
8202
  #
@@ -8205,7 +8314,7 @@ module Aws::EC2
8205
8314
  # Creates a route table for the specified VPC. After you create a route
8206
8315
  # table, you can add routes and associate the table with a subnet.
8207
8316
  #
8208
- # For more information, see [Route Tables][1] in the *Amazon Virtual
8317
+ # For more information, see [Route tables][1] in the *Amazon Virtual
8209
8318
  # Private Cloud User Guide*.
8210
8319
  #
8211
8320
  #
@@ -8880,8 +8989,8 @@ module Aws::EC2
8880
8989
  # If you've associated an IPv6 CIDR block with your VPC, you can create
8881
8990
  # a subnet with an IPv6 CIDR block that uses a /64 prefix length.
8882
8991
  #
8883
- # AWS reserves both the first four and the last IPv4 address in each
8884
- # subnet's CIDR block. They're not available for use.
8992
+ # Amazon Web Services reserves both the first four and the last IPv4
8993
+ # address in each subnet's CIDR block. They're not available for use.
8885
8994
  #
8886
8995
  # If you add more than one subnet to a VPC, they're set up in a star
8887
8996
  # topology with a logical router in the middle.
@@ -8891,7 +9000,7 @@ module Aws::EC2
8891
9000
  # instances (they're all stopped), but no remaining IP addresses
8892
9001
  # available.
8893
9002
  #
8894
- # For more information about subnets, see [Your VPC and Subnets][1] in
9003
+ # For more information about subnets, see [Your VPC and subnets][1] in
8895
9004
  # the *Amazon Virtual Private Cloud User Guide*.
8896
9005
  #
8897
9006
  #
@@ -8904,9 +9013,9 @@ module Aws::EC2
8904
9013
  # @option params [String] :availability_zone
8905
9014
  # The Availability Zone or Local Zone for the subnet.
8906
9015
  #
8907
- # Default: AWS selects one for you. If you create more than one subnet
8908
- # in your VPC, we do not necessarily select a different zone for each
8909
- # subnet.
9016
+ # Default: Amazon Web Services selects one for you. If you create more
9017
+ # than one subnet in your VPC, we do not necessarily select a different
9018
+ # zone for each subnet.
8910
9019
  #
8911
9020
  # To create a subnet in a Local Zone, set this value to the Local Zone
8912
9021
  # ID, for example `us-west-2-lax-1a`. For information about the Regions
@@ -8923,12 +9032,6 @@ module Aws::EC2
8923
9032
  # @option params [String] :availability_zone_id
8924
9033
  # The AZ ID or the Local Zone ID of the subnet.
8925
9034
  #
8926
- # @option params [required, String] :cidr_block
8927
- # The IPv4 network range for the subnet, in CIDR notation. For example,
8928
- # `10.0.0.0/24`. We modify the specified CIDR block to its canonical
8929
- # form; for example, if you specify `100.68.0.18/18`, we modify it to
8930
- # `100.68.0.0/18`.
8931
- #
8932
9035
  # @option params [String] :ipv_6_cidr_block
8933
9036
  # The IPv6 network range for the subnet, in CIDR notation. The subnet
8934
9037
  # size must use a /64 prefix length.
@@ -8947,6 +9050,12 @@ module Aws::EC2
8947
9050
  # If you have the required permissions, the error response is
8948
9051
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
8949
9052
  #
9053
+ # @option params [required, String] :cidr_block
9054
+ # The IPv4 network range for the subnet, in CIDR notation. For example,
9055
+ # `10.0.0.0/24`. We modify the specified CIDR block to its canonical
9056
+ # form; for example, if you specify `100.68.0.18/18`, we modify it to
9057
+ # `100.68.0.0/18`.
9058
+ #
8950
9059
  # @return [Types::CreateSubnetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8951
9060
  #
8952
9061
  # * {Types::CreateSubnetResult#subnet #subnet} => Types::Subnet
@@ -8990,11 +9099,11 @@ module Aws::EC2
8990
9099
  # ],
8991
9100
  # availability_zone: "String",
8992
9101
  # availability_zone_id: "String",
8993
- # cidr_block: "String", # required
8994
9102
  # ipv_6_cidr_block: "String",
8995
9103
  # outpost_arn: "String",
8996
9104
  # vpc_id: "VpcId", # required
8997
9105
  # dry_run: false,
9106
+ # cidr_block: "String", # required
8998
9107
  # })
8999
9108
  #
9000
9109
  # @example Response structure
@@ -9032,6 +9141,96 @@ module Aws::EC2
9032
9141
  req.send_request(options)
9033
9142
  end
9034
9143
 
9144
+ # Creates a subnet CIDR reservation. For information about subnet CIDR
9145
+ # reservations, see [Subnet CIDR reservations][1] in the *Amazon Virtual
9146
+ # Private Cloud User Guide*.
9147
+ #
9148
+ #
9149
+ #
9150
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/subnet-cidr-reservation.html
9151
+ #
9152
+ # @option params [Array<Types::TagSpecification>] :tag_specifications
9153
+ # The tags to assign to the subnet CIDR reservation.
9154
+ #
9155
+ # @option params [required, String] :subnet_id
9156
+ # The ID of the subnet.
9157
+ #
9158
+ # @option params [required, String] :cidr
9159
+ # The IPv4 or IPV6 CIDR range to reserve.
9160
+ #
9161
+ # @option params [required, String] :reservation_type
9162
+ # The type of reservation.
9163
+ #
9164
+ # The following are valid values:
9165
+ #
9166
+ # * `prefix`\: The Amazon EC2 Prefix Delegation feature assigns the IP
9167
+ # addresses to network interfaces that are associated with an
9168
+ # instance. For information about Prefix Delegation, see [Prefix
9169
+ # Delegation for Amazon EC2 network interfaces][1] in the *Amazon
9170
+ # Elastic Compute Cloud User Guide*.
9171
+ #
9172
+ # * `explicit`\: You manually assign the IP addresses to resources that
9173
+ # reside in your subnet.
9174
+ #
9175
+ #
9176
+ #
9177
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation.html
9178
+ #
9179
+ # @option params [String] :description
9180
+ # The description to assign to the subnet CIDR reservation.
9181
+ #
9182
+ # @option params [Boolean] :dry_run
9183
+ # Checks whether you have the required permissions for the action,
9184
+ # without actually making the request, and provides an error response.
9185
+ # If you have the required permissions, the error response is
9186
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
9187
+ #
9188
+ # @return [Types::CreateSubnetCidrReservationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9189
+ #
9190
+ # * {Types::CreateSubnetCidrReservationResult#subnet_cidr_reservation #subnet_cidr_reservation} => Types::SubnetCidrReservation
9191
+ #
9192
+ # @example Request syntax with placeholder values
9193
+ #
9194
+ # resp = client.create_subnet_cidr_reservation({
9195
+ # tag_specifications: [
9196
+ # {
9197
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9198
+ # tags: [
9199
+ # {
9200
+ # key: "String",
9201
+ # value: "String",
9202
+ # },
9203
+ # ],
9204
+ # },
9205
+ # ],
9206
+ # subnet_id: "SubnetId", # required
9207
+ # cidr: "String", # required
9208
+ # reservation_type: "prefix", # required, accepts prefix, explicit
9209
+ # description: "String",
9210
+ # dry_run: false,
9211
+ # })
9212
+ #
9213
+ # @example Response structure
9214
+ #
9215
+ # resp.subnet_cidr_reservation.subnet_cidr_reservation_id #=> String
9216
+ # resp.subnet_cidr_reservation.subnet_id #=> String
9217
+ # resp.subnet_cidr_reservation.cidr #=> String
9218
+ # resp.subnet_cidr_reservation.reservation_type #=> String, one of "prefix", "explicit"
9219
+ # resp.subnet_cidr_reservation.owner_id #=> String
9220
+ # resp.subnet_cidr_reservation.description #=> String
9221
+ # resp.subnet_cidr_reservation.tags #=> Array
9222
+ # resp.subnet_cidr_reservation.tags[0].key #=> String
9223
+ # resp.subnet_cidr_reservation.tags[0].value #=> String
9224
+ #
9225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetCidrReservation AWS API Documentation
9226
+ #
9227
+ # @overload create_subnet_cidr_reservation(params = {})
9228
+ # @param [Hash] params ({})
9229
+ def create_subnet_cidr_reservation(params = {}, options = {})
9230
+ req = build_request(:create_subnet_cidr_reservation, params)
9231
+ req.send_request(options)
9232
+ end
9233
+
9035
9234
  # Adds or overwrites only the specified tags for the specified Amazon
9036
9235
  # EC2 resource or resources. When you specify an existing tag key, the
9037
9236
  # value is overwritten with the new value. Each resource can have a
@@ -10575,7 +10774,7 @@ module Aws::EC2
10575
10774
  # Creates a VPC with the specified IPv4 CIDR block. The smallest VPC you
10576
10775
  # can create uses a /28 netmask (16 IPv4 addresses), and the largest
10577
10776
  # uses a /16 netmask (65,536 IPv4 addresses). For more information about
10578
- # how large to make your VPC, see [Your VPC and Subnets][1] in the
10777
+ # how large to make your VPC, see [Your VPC and subnets][1] in the
10579
10778
  # *Amazon Virtual Private Cloud User Guide*.
10580
10779
  #
10581
10780
  # You can optionally request an IPv6 CIDR block for the VPC. You can
@@ -10585,7 +10784,7 @@ module Aws::EC2
10585
10784
  #
10586
10785
  # By default, each instance you launch in the VPC has the default DHCP
10587
10786
  # options, which include only a default DNS server that we provide
10588
- # (AmazonProvidedDNS). For more information, see [DHCP Options Sets][3]
10787
+ # (AmazonProvidedDNS). For more information, see [DHCP options sets][3]
10589
10788
  # in the *Amazon Virtual Private Cloud User Guide*.
10590
10789
  #
10591
10790
  # You can specify the instance tenancy value for the VPC when you create
@@ -11098,7 +11297,7 @@ module Aws::EC2
11098
11297
 
11099
11298
  # Requests a VPC peering connection between two VPCs: a requester VPC
11100
11299
  # that you own and an accepter VPC with which to create the connection.
11101
- # The accepter VPC can belong to another AWS account and can be in a
11300
+ # The accepter VPC can belong to another account and can be in a
11102
11301
  # different Region to the requester VPC. The requester VPC and accepter
11103
11302
  # VPC cannot have overlapping CIDR blocks.
11104
11303
  #
@@ -11127,9 +11326,9 @@ module Aws::EC2
11127
11326
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
11128
11327
  #
11129
11328
  # @option params [String] :peer_owner_id
11130
- # The AWS account ID of the owner of the accepter VPC.
11329
+ # The account ID of the owner of the accepter VPC.
11131
11330
  #
11132
- # Default: Your AWS account ID
11331
+ # Default: Your account ID
11133
11332
  #
11134
11333
  # @option params [String] :peer_vpc_id
11135
11334
  # The ID of the VPC with which you are creating the VPC peering
@@ -11951,7 +12150,7 @@ module Aws::EC2
11951
12150
  #
11952
12151
  #
11953
12152
  #
11954
- # [1]: https://docs.aws.amazon.com/monitoring-instances-status-check_sched.html#event-windows
12153
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/event-windows.html
11955
12154
  #
11956
12155
  # @option params [Boolean] :dry_run
11957
12156
  # Checks whether you have the required permissions for the action,
@@ -13030,6 +13229,49 @@ module Aws::EC2
13030
13229
  req.send_request(options)
13031
13230
  end
13032
13231
 
13232
+ # Deletes a subnet CIDR reservation.
13233
+ #
13234
+ # @option params [required, String] :subnet_cidr_reservation_id
13235
+ # The ID of the subnet CIDR reservation.
13236
+ #
13237
+ # @option params [Boolean] :dry_run
13238
+ # Checks whether you have the required permissions for the action,
13239
+ # without actually making the request, and provides an error response.
13240
+ # If you have the required permissions, the error response is
13241
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13242
+ #
13243
+ # @return [Types::DeleteSubnetCidrReservationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13244
+ #
13245
+ # * {Types::DeleteSubnetCidrReservationResult#deleted_subnet_cidr_reservation #deleted_subnet_cidr_reservation} => Types::SubnetCidrReservation
13246
+ #
13247
+ # @example Request syntax with placeholder values
13248
+ #
13249
+ # resp = client.delete_subnet_cidr_reservation({
13250
+ # subnet_cidr_reservation_id: "SubnetCidrReservationId", # required
13251
+ # dry_run: false,
13252
+ # })
13253
+ #
13254
+ # @example Response structure
13255
+ #
13256
+ # resp.deleted_subnet_cidr_reservation.subnet_cidr_reservation_id #=> String
13257
+ # resp.deleted_subnet_cidr_reservation.subnet_id #=> String
13258
+ # resp.deleted_subnet_cidr_reservation.cidr #=> String
13259
+ # resp.deleted_subnet_cidr_reservation.reservation_type #=> String, one of "prefix", "explicit"
13260
+ # resp.deleted_subnet_cidr_reservation.owner_id #=> String
13261
+ # resp.deleted_subnet_cidr_reservation.description #=> String
13262
+ # resp.deleted_subnet_cidr_reservation.tags #=> Array
13263
+ # resp.deleted_subnet_cidr_reservation.tags[0].key #=> String
13264
+ # resp.deleted_subnet_cidr_reservation.tags[0].value #=> String
13265
+ #
13266
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnetCidrReservation AWS API Documentation
13267
+ #
13268
+ # @overload delete_subnet_cidr_reservation(params = {})
13269
+ # @param [Hash] params ({})
13270
+ def delete_subnet_cidr_reservation(params = {}, options = {})
13271
+ req = build_request(:delete_subnet_cidr_reservation, params)
13272
+ req.send_request(options)
13273
+ end
13274
+
13033
13275
  # Deletes the specified set of tags from the specified set of resources.
13034
13276
  #
13035
13277
  # To list the current tags, use DescribeTags. For more information about
@@ -15238,7 +15480,7 @@ module Aws::EC2
15238
15480
  # * `state` - The state of the carrier gateway (`pending` \| `failed` \|
15239
15481
  # `available` \| `deleting` \| `deleted`).
15240
15482
  #
15241
- # * `owner-id` - The AWS account ID of the owner of the carrier gateway.
15483
+ # * `owner-id` - The account ID of the owner of the carrier gateway.
15242
15484
  #
15243
15485
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
15244
15486
  # the resource. Use the tag key in the filter name and the tag value
@@ -16083,7 +16325,7 @@ module Aws::EC2
16083
16325
 
16084
16326
  # Describes one or more of your DHCP options sets.
16085
16327
  #
16086
- # For more information, see [DHCP Options Sets][1] in the *Amazon
16328
+ # For more information, see [DHCP options sets][1] in the *Amazon
16087
16329
  # Virtual Private Cloud User Guide*.
16088
16330
  #
16089
16331
  #
@@ -16104,8 +16346,7 @@ module Aws::EC2
16104
16346
  #
16105
16347
  # * `value` - The value for one of the options.
16106
16348
  #
16107
- # * `owner-id` - The ID of the AWS account that owns the DHCP options
16108
- # set.
16349
+ # * `owner-id` - The ID of the account that owns the DHCP options set.
16109
16350
  #
16110
16351
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
16111
16352
  # the resource. Use the tag key in the filter name and the tag value
@@ -18504,7 +18745,7 @@ module Aws::EC2
18504
18745
  #
18505
18746
  #
18506
18747
  #
18507
- # [1]: https://docs.aws.amazon.com/monitoring-instances-status-check_sched.html#event-windows
18748
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/event-windows.html
18508
18749
  #
18509
18750
  # @option params [Boolean] :dry_run
18510
18751
  # Checks whether you have the required permissions for the action,
@@ -19675,6 +19916,10 @@ module Aws::EC2
19675
19916
  # resp.reservations[0].instances[0].network_interfaces[0].subnet_id #=> String
19676
19917
  # resp.reservations[0].instances[0].network_interfaces[0].vpc_id #=> String
19677
19918
  # resp.reservations[0].instances[0].network_interfaces[0].interface_type #=> String
19919
+ # resp.reservations[0].instances[0].network_interfaces[0].ipv_4_prefixes #=> Array
19920
+ # resp.reservations[0].instances[0].network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
19921
+ # resp.reservations[0].instances[0].network_interfaces[0].ipv_6_prefixes #=> Array
19922
+ # resp.reservations[0].instances[0].network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
19678
19923
  # resp.reservations[0].instances[0].outpost_arn #=> String
19679
19924
  # resp.reservations[0].instances[0].root_device_name #=> String
19680
19925
  # resp.reservations[0].instances[0].root_device_type #=> String, one of "ebs", "instance-store"
@@ -19740,8 +19985,7 @@ module Aws::EC2
19740
19985
  #
19741
19986
  # * `internet-gateway-id` - The ID of the Internet gateway.
19742
19987
  #
19743
- # * `owner-id` - The ID of the AWS account that owns the internet
19744
- # gateway.
19988
+ # * `owner-id` - The ID of the account that owns the internet gateway.
19745
19989
  #
19746
19990
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
19747
19991
  # the resource. Use the tag key in the filter name and the tag value
@@ -20237,6 +20481,12 @@ module Aws::EC2
20237
20481
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].secondary_private_ip_address_count #=> Integer
20238
20482
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].subnet_id #=> String
20239
20483
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].network_card_index #=> Integer
20484
+ # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ipv_4_prefixes #=> Array
20485
+ # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
20486
+ # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ipv_4_prefix_count #=> Integer
20487
+ # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ipv_6_prefixes #=> Array
20488
+ # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
20489
+ # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ipv_6_prefix_count #=> Integer
20240
20490
  # resp.launch_template_versions[0].launch_template_data.image_id #=> String
20241
20491
  # resp.launch_template_versions[0].launch_template_data.instance_type #=> String, one of "t1.micro", "t2.nano", "t2.micro", "t2.small", "t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro", "t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano", "t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge", "t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium", "t4g.large", "t4g.xlarge", "t4g.2xlarge", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge", "m4.16xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "cr1.8xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "r4.large", "r4.xlarge", "r4.2xlarge", "r4.4xlarge", "r4.8xlarge", "r4.16xlarge", "r5.large", "r5.xlarge", "r5.2xlarge", "r5.4xlarge", "r5.8xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", "r5.metal", "r5a.large", "r5a.xlarge", "r5a.2xlarge", "r5a.4xlarge", "r5a.8xlarge", "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", "r5b.large", "r5b.xlarge", "r5b.2xlarge", "r5b.4xlarge", "r5b.8xlarge", "r5b.12xlarge", "r5b.16xlarge", "r5b.24xlarge", "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", "r5d.4xlarge", "r5d.8xlarge", "r5d.12xlarge", "r5d.16xlarge", "r5d.24xlarge", "r5d.metal", "r5ad.large", "r5ad.xlarge", "r5ad.2xlarge", "r5ad.4xlarge", "r5ad.8xlarge", "r5ad.12xlarge", "r5ad.16xlarge", "r5ad.24xlarge", "r6g.metal", "r6g.medium", "r6g.large", "r6g.xlarge", "r6g.2xlarge", "r6g.4xlarge", "r6g.8xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6gd.metal", "r6gd.medium", "r6gd.large", "r6gd.xlarge", "r6gd.2xlarge", "r6gd.4xlarge", "r6gd.8xlarge", "r6gd.12xlarge", "r6gd.16xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.xlarge", "x1e.2xlarge", "x1e.4xlarge", "x1e.8xlarge", "x1e.16xlarge", "x1e.32xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", "i3.large", "i3.xlarge", "i3.2xlarge", "i3.4xlarge", "i3.8xlarge", "i3.16xlarge", "i3.metal", "i3en.large", "i3en.xlarge", "i3en.2xlarge", "i3en.3xlarge", "i3en.6xlarge", "i3en.12xlarge", "i3en.24xlarge", "i3en.metal", "hi1.4xlarge", "hs1.8xlarge", "c1.medium", "c1.xlarge", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "c5.large", "c5.xlarge", "c5.2xlarge", "c5.4xlarge", "c5.9xlarge", "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", "c5.metal", "c5a.large", "c5a.xlarge", "c5a.2xlarge", "c5a.4xlarge", "c5a.8xlarge", "c5a.12xlarge", "c5a.16xlarge", "c5a.24xlarge", "c5ad.large", "c5ad.xlarge", "c5ad.2xlarge", "c5ad.4xlarge", "c5ad.8xlarge", "c5ad.12xlarge", "c5ad.16xlarge", "c5ad.24xlarge", "c5d.large", "c5d.xlarge", "c5d.2xlarge", "c5d.4xlarge", "c5d.9xlarge", "c5d.12xlarge", "c5d.18xlarge", "c5d.24xlarge", "c5d.metal", "c5n.large", "c5n.xlarge", "c5n.2xlarge", "c5n.4xlarge", "c5n.9xlarge", "c5n.18xlarge", "c5n.metal", "c6g.metal", "c6g.medium", "c6g.large", "c6g.xlarge", "c6g.2xlarge", "c6g.4xlarge", "c6g.8xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6gd.metal", "c6gd.medium", "c6gd.large", "c6gd.xlarge", "c6gd.2xlarge", "c6gd.4xlarge", "c6gd.8xlarge", "c6gd.12xlarge", "c6gd.16xlarge", "c6gn.medium", "c6gn.large", "c6gn.xlarge", "c6gn.2xlarge", "c6gn.4xlarge", "c6gn.8xlarge", "c6gn.12xlarge", "c6gn.16xlarge", "cc1.4xlarge", "cc2.8xlarge", "g2.2xlarge", "g2.8xlarge", "g3.4xlarge", "g3.8xlarge", "g3.16xlarge", "g3s.xlarge", "g4ad.4xlarge", "g4ad.8xlarge", "g4ad.16xlarge", "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge", "g4dn.metal", "cg1.4xlarge", "p2.xlarge", "p2.8xlarge", "p2.16xlarge", "p3.2xlarge", "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", "p4d.24xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", "d3.xlarge", "d3.2xlarge", "d3.4xlarge", "d3.8xlarge", "d3en.xlarge", "d3en.2xlarge", "d3en.4xlarge", "d3en.6xlarge", "d3en.8xlarge", "d3en.12xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", "m5.large", "m5.xlarge", "m5.2xlarge", "m5.4xlarge", "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", "m5.metal", "m5a.large", "m5a.xlarge", "m5a.2xlarge", "m5a.4xlarge", "m5a.8xlarge", "m5a.12xlarge", "m5a.16xlarge", "m5a.24xlarge", "m5d.large", "m5d.xlarge", "m5d.2xlarge", "m5d.4xlarge", "m5d.8xlarge", "m5d.12xlarge", "m5d.16xlarge", "m5d.24xlarge", "m5d.metal", "m5ad.large", "m5ad.xlarge", "m5ad.2xlarge", "m5ad.4xlarge", "m5ad.8xlarge", "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", "m5zn.large", "m5zn.xlarge", "m5zn.2xlarge", "m5zn.3xlarge", "m5zn.6xlarge", "m5zn.12xlarge", "m5zn.metal", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "h1.16xlarge", "z1d.large", "z1d.xlarge", "z1d.2xlarge", "z1d.3xlarge", "z1d.6xlarge", "z1d.12xlarge", "z1d.metal", "u-6tb1.56xlarge", "u-6tb1.112xlarge", "u-9tb1.112xlarge", "u-12tb1.112xlarge", "u-6tb1.metal", "u-9tb1.metal", "u-12tb1.metal", "u-18tb1.metal", "u-24tb1.metal", "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge", "a1.4xlarge", "a1.metal", "m5dn.large", "m5dn.xlarge", "m5dn.2xlarge", "m5dn.4xlarge", "m5dn.8xlarge", "m5dn.12xlarge", "m5dn.16xlarge", "m5dn.24xlarge", "m5dn.metal", "m5n.large", "m5n.xlarge", "m5n.2xlarge", "m5n.4xlarge", "m5n.8xlarge", "m5n.12xlarge", "m5n.16xlarge", "m5n.24xlarge", "m5n.metal", "r5dn.large", "r5dn.xlarge", "r5dn.2xlarge", "r5dn.4xlarge", "r5dn.8xlarge", "r5dn.12xlarge", "r5dn.16xlarge", "r5dn.24xlarge", "r5dn.metal", "r5n.large", "r5n.xlarge", "r5n.2xlarge", "r5n.4xlarge", "r5n.8xlarge", "r5n.12xlarge", "r5n.16xlarge", "r5n.24xlarge", "r5n.metal", "inf1.xlarge", "inf1.2xlarge", "inf1.6xlarge", "inf1.24xlarge", "m6g.metal", "m6g.medium", "m6g.large", "m6g.xlarge", "m6g.2xlarge", "m6g.4xlarge", "m6g.8xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6gd.metal", "m6gd.medium", "m6gd.large", "m6gd.xlarge", "m6gd.2xlarge", "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", "m6gd.16xlarge", "mac1.metal", "x2gd.medium", "x2gd.large", "x2gd.xlarge", "x2gd.2xlarge", "x2gd.4xlarge", "x2gd.8xlarge", "x2gd.12xlarge", "x2gd.16xlarge", "x2gd.metal"
20242
20492
  # resp.launch_template_versions[0].launch_template_data.key_name #=> String
@@ -21233,7 +21483,7 @@ module Aws::EC2
21233
21483
  #
21234
21484
  # * `network-acl-id` - The ID of the network ACL.
21235
21485
  #
21236
- # * `owner-id` - The ID of the AWS account that owns the network ACL.
21486
+ # * `owner-id` - The ID of the account that owns the network ACL.
21237
21487
  #
21238
21488
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
21239
21489
  # the resource. Use the tag key in the filter name and the tag value
@@ -22232,6 +22482,10 @@ module Aws::EC2
22232
22482
  # resp.network_interfaces[0].private_ip_addresses[0].primary #=> Boolean
22233
22483
  # resp.network_interfaces[0].private_ip_addresses[0].private_dns_name #=> String
22234
22484
  # resp.network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
22485
+ # resp.network_interfaces[0].ipv_4_prefixes #=> Array
22486
+ # resp.network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
22487
+ # resp.network_interfaces[0].ipv_6_prefixes #=> Array
22488
+ # resp.network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
22235
22489
  # resp.network_interfaces[0].requester_id #=> String
22236
22490
  # resp.network_interfaces[0].requester_managed #=> Boolean
22237
22491
  # resp.network_interfaces[0].source_dest_check #=> Boolean
@@ -23322,7 +23576,7 @@ module Aws::EC2
23322
23576
  # implicitly associated with the main route table. This command does not
23323
23577
  # return the subnet ID for implicit associations.
23324
23578
  #
23325
- # For more information, see [Route Tables][1] in the *Amazon Virtual
23579
+ # For more information, see [Route tables][1] in the *Amazon Virtual
23326
23580
  # Private Cloud User Guide*.
23327
23581
  #
23328
23582
  #
@@ -23345,7 +23599,7 @@ module Aws::EC2
23345
23599
  # route table for the VPC (`true` \| `false`). Route tables that do
23346
23600
  # not have an association ID are not returned in the response.
23347
23601
  #
23348
- # * `owner-id` - The ID of the AWS account that owns the route table.
23602
+ # * `owner-id` - The ID of the account that owns the route table.
23349
23603
  #
23350
23604
  # * `route-table-id` - The ID of the route table.
23351
23605
  #
@@ -23355,8 +23609,8 @@ module Aws::EC2
23355
23609
  # * `route.destination-ipv6-cidr-block` - The IPv6 CIDR range specified
23356
23610
  # in a route in the route table.
23357
23611
  #
23358
- # * `route.destination-prefix-list-id` - The ID (prefix) of the AWS
23359
- # service specified in a route in the table.
23612
+ # * `route.destination-prefix-list-id` - The ID (prefix) of the Amazon
23613
+ # Web Service specified in a route in the table.
23360
23614
  #
23361
23615
  # * `route.egress-only-internet-gateway-id` - The ID of an egress-only
23362
23616
  # Internet gateway specified in a route in the route table.
@@ -24980,6 +25234,12 @@ module Aws::EC2
24980
25234
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].associate_carrier_ip_address #=> Boolean
24981
25235
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].interface_type #=> String
24982
25236
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].network_card_index #=> Integer
25237
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ipv_4_prefixes #=> Array
25238
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
25239
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ipv_4_prefix_count #=> Integer
25240
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ipv_6_prefixes #=> Array
25241
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
25242
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ipv_6_prefix_count #=> Integer
24983
25243
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.availability_zone #=> String
24984
25244
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.group_name #=> String
24985
25245
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.tenancy #=> String, one of "default", "dedicated", "host"
@@ -25337,6 +25597,12 @@ module Aws::EC2
25337
25597
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
25338
25598
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
25339
25599
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].network_card_index #=> Integer
25600
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_4_prefixes #=> Array
25601
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
25602
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_4_prefix_count #=> Integer
25603
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_6_prefixes #=> Array
25604
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
25605
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_6_prefix_count #=> Integer
25340
25606
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
25341
25607
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
25342
25608
  # resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
@@ -25710,7 +25976,7 @@ module Aws::EC2
25710
25976
 
25711
25977
  # Describes one or more of your subnets.
25712
25978
  #
25713
- # For more information, see [Your VPC and Subnets][1] in the *Amazon
25979
+ # For more information, see [Your VPC and subnets][1] in the *Amazon
25714
25980
  # Virtual Private Cloud User Guide*.
25715
25981
  #
25716
25982
  #
@@ -25749,7 +26015,7 @@ module Aws::EC2
25749
26015
  #
25750
26016
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
25751
26017
  #
25752
- # * `owner-id` - The ID of the AWS account that owns the subnet.
26018
+ # * `owner-id` - The ID of the account that owns the subnet.
25753
26019
  #
25754
26020
  # * `state` - The state of the subnet (`pending` \| `available`).
25755
26021
  #
@@ -28481,8 +28747,8 @@ module Aws::EC2
28481
28747
  # * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the accepter
28482
28748
  # VPC.
28483
28749
  #
28484
- # * `accepter-vpc-info.owner-id` - The AWS account ID of the owner of
28485
- # the accepter VPC.
28750
+ # * `accepter-vpc-info.owner-id` - The ID of the account that owns the
28751
+ # accepter VPC.
28486
28752
  #
28487
28753
  # * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
28488
28754
  #
@@ -28492,8 +28758,8 @@ module Aws::EC2
28492
28758
  # * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
28493
28759
  # requester's VPC.
28494
28760
  #
28495
- # * `requester-vpc-info.owner-id` - The AWS account ID of the owner of
28496
- # the requester VPC.
28761
+ # * `requester-vpc-info.owner-id` - The ID of the account that owns the
28762
+ # requester VPC.
28497
28763
  #
28498
28764
  # * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
28499
28765
  #
@@ -28639,9 +28905,9 @@ module Aws::EC2
28639
28905
  # * `ipv6-cidr-block-association.state` - The state of an IPv6 CIDR
28640
28906
  # block associated with the VPC.
28641
28907
  #
28642
- # * `isDefault` - Indicates whether the VPC is the default VPC.
28908
+ # * `is-default` - Indicates whether the VPC is the default VPC.
28643
28909
  #
28644
- # * `owner-id` - The ID of the AWS account that owns the VPC.
28910
+ # * `owner-id` - The ID of the account that owns the VPC.
28645
28911
  #
28646
28912
  # * `state` - The state of the VPC (`pending` \| `available`).
28647
28913
  #
@@ -29882,7 +30148,7 @@ module Aws::EC2
29882
30148
  #
29883
30149
  #
29884
30150
  #
29885
- # [1]: https://docs.aws.amazon.com/monitoring-instances-status-check_sched.html#event-windows
30151
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/event-windows.html
29886
30152
  #
29887
30153
  # @option params [Boolean] :dry_run
29888
30154
  # Checks whether you have the required permissions for the action,
@@ -29952,7 +30218,7 @@ module Aws::EC2
29952
30218
  #
29953
30219
  # After you perform this action, the subnet no longer uses the routes in
29954
30220
  # the route table. Instead, it uses the routes in the VPC's main route
29955
- # table. For more information about route tables, see [Route Tables][1]
30221
+ # table. For more information about route tables, see [Route tables][1]
29956
30222
  # in the *Amazon Virtual Private Cloud User Guide*.
29957
30223
  #
29958
30224
  #
@@ -31726,6 +31992,12 @@ module Aws::EC2
31726
31992
  # resp.launch_template_data.network_interfaces[0].secondary_private_ip_address_count #=> Integer
31727
31993
  # resp.launch_template_data.network_interfaces[0].subnet_id #=> String
31728
31994
  # resp.launch_template_data.network_interfaces[0].network_card_index #=> Integer
31995
+ # resp.launch_template_data.network_interfaces[0].ipv_4_prefixes #=> Array
31996
+ # resp.launch_template_data.network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
31997
+ # resp.launch_template_data.network_interfaces[0].ipv_4_prefix_count #=> Integer
31998
+ # resp.launch_template_data.network_interfaces[0].ipv_6_prefixes #=> Array
31999
+ # resp.launch_template_data.network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
32000
+ # resp.launch_template_data.network_interfaces[0].ipv_6_prefix_count #=> Integer
31729
32001
  # resp.launch_template_data.image_id #=> String
31730
32002
  # resp.launch_template_data.instance_type #=> String, one of "t1.micro", "t2.nano", "t2.micro", "t2.small", "t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro", "t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano", "t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge", "t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium", "t4g.large", "t4g.xlarge", "t4g.2xlarge", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge", "m4.16xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "cr1.8xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "r4.large", "r4.xlarge", "r4.2xlarge", "r4.4xlarge", "r4.8xlarge", "r4.16xlarge", "r5.large", "r5.xlarge", "r5.2xlarge", "r5.4xlarge", "r5.8xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", "r5.metal", "r5a.large", "r5a.xlarge", "r5a.2xlarge", "r5a.4xlarge", "r5a.8xlarge", "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", "r5b.large", "r5b.xlarge", "r5b.2xlarge", "r5b.4xlarge", "r5b.8xlarge", "r5b.12xlarge", "r5b.16xlarge", "r5b.24xlarge", "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", "r5d.4xlarge", "r5d.8xlarge", "r5d.12xlarge", "r5d.16xlarge", "r5d.24xlarge", "r5d.metal", "r5ad.large", "r5ad.xlarge", "r5ad.2xlarge", "r5ad.4xlarge", "r5ad.8xlarge", "r5ad.12xlarge", "r5ad.16xlarge", "r5ad.24xlarge", "r6g.metal", "r6g.medium", "r6g.large", "r6g.xlarge", "r6g.2xlarge", "r6g.4xlarge", "r6g.8xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6gd.metal", "r6gd.medium", "r6gd.large", "r6gd.xlarge", "r6gd.2xlarge", "r6gd.4xlarge", "r6gd.8xlarge", "r6gd.12xlarge", "r6gd.16xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.xlarge", "x1e.2xlarge", "x1e.4xlarge", "x1e.8xlarge", "x1e.16xlarge", "x1e.32xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", "i3.large", "i3.xlarge", "i3.2xlarge", "i3.4xlarge", "i3.8xlarge", "i3.16xlarge", "i3.metal", "i3en.large", "i3en.xlarge", "i3en.2xlarge", "i3en.3xlarge", "i3en.6xlarge", "i3en.12xlarge", "i3en.24xlarge", "i3en.metal", "hi1.4xlarge", "hs1.8xlarge", "c1.medium", "c1.xlarge", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "c5.large", "c5.xlarge", "c5.2xlarge", "c5.4xlarge", "c5.9xlarge", "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", "c5.metal", "c5a.large", "c5a.xlarge", "c5a.2xlarge", "c5a.4xlarge", "c5a.8xlarge", "c5a.12xlarge", "c5a.16xlarge", "c5a.24xlarge", "c5ad.large", "c5ad.xlarge", "c5ad.2xlarge", "c5ad.4xlarge", "c5ad.8xlarge", "c5ad.12xlarge", "c5ad.16xlarge", "c5ad.24xlarge", "c5d.large", "c5d.xlarge", "c5d.2xlarge", "c5d.4xlarge", "c5d.9xlarge", "c5d.12xlarge", "c5d.18xlarge", "c5d.24xlarge", "c5d.metal", "c5n.large", "c5n.xlarge", "c5n.2xlarge", "c5n.4xlarge", "c5n.9xlarge", "c5n.18xlarge", "c5n.metal", "c6g.metal", "c6g.medium", "c6g.large", "c6g.xlarge", "c6g.2xlarge", "c6g.4xlarge", "c6g.8xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6gd.metal", "c6gd.medium", "c6gd.large", "c6gd.xlarge", "c6gd.2xlarge", "c6gd.4xlarge", "c6gd.8xlarge", "c6gd.12xlarge", "c6gd.16xlarge", "c6gn.medium", "c6gn.large", "c6gn.xlarge", "c6gn.2xlarge", "c6gn.4xlarge", "c6gn.8xlarge", "c6gn.12xlarge", "c6gn.16xlarge", "cc1.4xlarge", "cc2.8xlarge", "g2.2xlarge", "g2.8xlarge", "g3.4xlarge", "g3.8xlarge", "g3.16xlarge", "g3s.xlarge", "g4ad.4xlarge", "g4ad.8xlarge", "g4ad.16xlarge", "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge", "g4dn.metal", "cg1.4xlarge", "p2.xlarge", "p2.8xlarge", "p2.16xlarge", "p3.2xlarge", "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", "p4d.24xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", "d3.xlarge", "d3.2xlarge", "d3.4xlarge", "d3.8xlarge", "d3en.xlarge", "d3en.2xlarge", "d3en.4xlarge", "d3en.6xlarge", "d3en.8xlarge", "d3en.12xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", "m5.large", "m5.xlarge", "m5.2xlarge", "m5.4xlarge", "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", "m5.metal", "m5a.large", "m5a.xlarge", "m5a.2xlarge", "m5a.4xlarge", "m5a.8xlarge", "m5a.12xlarge", "m5a.16xlarge", "m5a.24xlarge", "m5d.large", "m5d.xlarge", "m5d.2xlarge", "m5d.4xlarge", "m5d.8xlarge", "m5d.12xlarge", "m5d.16xlarge", "m5d.24xlarge", "m5d.metal", "m5ad.large", "m5ad.xlarge", "m5ad.2xlarge", "m5ad.4xlarge", "m5ad.8xlarge", "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", "m5zn.large", "m5zn.xlarge", "m5zn.2xlarge", "m5zn.3xlarge", "m5zn.6xlarge", "m5zn.12xlarge", "m5zn.metal", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "h1.16xlarge", "z1d.large", "z1d.xlarge", "z1d.2xlarge", "z1d.3xlarge", "z1d.6xlarge", "z1d.12xlarge", "z1d.metal", "u-6tb1.56xlarge", "u-6tb1.112xlarge", "u-9tb1.112xlarge", "u-12tb1.112xlarge", "u-6tb1.metal", "u-9tb1.metal", "u-12tb1.metal", "u-18tb1.metal", "u-24tb1.metal", "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge", "a1.4xlarge", "a1.metal", "m5dn.large", "m5dn.xlarge", "m5dn.2xlarge", "m5dn.4xlarge", "m5dn.8xlarge", "m5dn.12xlarge", "m5dn.16xlarge", "m5dn.24xlarge", "m5dn.metal", "m5n.large", "m5n.xlarge", "m5n.2xlarge", "m5n.4xlarge", "m5n.8xlarge", "m5n.12xlarge", "m5n.16xlarge", "m5n.24xlarge", "m5n.metal", "r5dn.large", "r5dn.xlarge", "r5dn.2xlarge", "r5dn.4xlarge", "r5dn.8xlarge", "r5dn.12xlarge", "r5dn.16xlarge", "r5dn.24xlarge", "r5dn.metal", "r5n.large", "r5n.xlarge", "r5n.2xlarge", "r5n.4xlarge", "r5n.8xlarge", "r5n.12xlarge", "r5n.16xlarge", "r5n.24xlarge", "r5n.metal", "inf1.xlarge", "inf1.2xlarge", "inf1.6xlarge", "inf1.24xlarge", "m6g.metal", "m6g.medium", "m6g.large", "m6g.xlarge", "m6g.2xlarge", "m6g.4xlarge", "m6g.8xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6gd.metal", "m6gd.medium", "m6gd.large", "m6gd.xlarge", "m6gd.2xlarge", "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", "m6gd.16xlarge", "mac1.metal", "x2gd.medium", "x2gd.large", "x2gd.xlarge", "x2gd.2xlarge", "x2gd.4xlarge", "x2gd.8xlarge", "x2gd.12xlarge", "x2gd.16xlarge", "x2gd.metal"
31731
32003
  # resp.launch_template_data.key_name #=> String
@@ -32080,6 +32352,97 @@ module Aws::EC2
32080
32352
  req.send_request(options)
32081
32353
  end
32082
32354
 
32355
+ # Gets information about the subnet CIDR reservations.
32356
+ #
32357
+ # @option params [Array<Types::Filter>] :filters
32358
+ # One or more filters.
32359
+ #
32360
+ # * `reservationType` - The type of reservation (`prefix` \|
32361
+ # `explicit`).
32362
+ #
32363
+ # * `subnet-id` - The ID of the subnet.
32364
+ #
32365
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
32366
+ # the resource. Use the tag key in the filter name and the tag value
32367
+ # as the filter value. For example, to find all resources that have a
32368
+ # tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
32369
+ # for the filter name and `TeamA` for the filter value.
32370
+ #
32371
+ # * `tag-key` - The key of a tag assigned to the resource. Use this
32372
+ # filter to find all resources assigned a tag with a specific key,
32373
+ # regardless of the tag value.
32374
+ #
32375
+ # @option params [required, String] :subnet_id
32376
+ # The ID of the subnet.
32377
+ #
32378
+ # @option params [Boolean] :dry_run
32379
+ # Checks whether you have the required permissions for the action,
32380
+ # without actually making the request, and provides an error response.
32381
+ # If you have the required permissions, the error response is
32382
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
32383
+ #
32384
+ # @option params [String] :next_token
32385
+ # The token for the next page of results.
32386
+ #
32387
+ # @option params [Integer] :max_results
32388
+ # The maximum number of results to return with a single call. To
32389
+ # retrieve the remaining results, make another call with the returned
32390
+ # `nextToken` value.
32391
+ #
32392
+ # @return [Types::GetSubnetCidrReservationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
32393
+ #
32394
+ # * {Types::GetSubnetCidrReservationsResult#subnet_ipv_4_cidr_reservations #subnet_ipv_4_cidr_reservations} => Array&lt;Types::SubnetCidrReservation&gt;
32395
+ # * {Types::GetSubnetCidrReservationsResult#subnet_ipv_6_cidr_reservations #subnet_ipv_6_cidr_reservations} => Array&lt;Types::SubnetCidrReservation&gt;
32396
+ # * {Types::GetSubnetCidrReservationsResult#next_token #next_token} => String
32397
+ #
32398
+ # @example Request syntax with placeholder values
32399
+ #
32400
+ # resp = client.get_subnet_cidr_reservations({
32401
+ # filters: [
32402
+ # {
32403
+ # name: "String",
32404
+ # values: ["String"],
32405
+ # },
32406
+ # ],
32407
+ # subnet_id: "SubnetId", # required
32408
+ # dry_run: false,
32409
+ # next_token: "String",
32410
+ # max_results: 1,
32411
+ # })
32412
+ #
32413
+ # @example Response structure
32414
+ #
32415
+ # resp.subnet_ipv_4_cidr_reservations #=> Array
32416
+ # resp.subnet_ipv_4_cidr_reservations[0].subnet_cidr_reservation_id #=> String
32417
+ # resp.subnet_ipv_4_cidr_reservations[0].subnet_id #=> String
32418
+ # resp.subnet_ipv_4_cidr_reservations[0].cidr #=> String
32419
+ # resp.subnet_ipv_4_cidr_reservations[0].reservation_type #=> String, one of "prefix", "explicit"
32420
+ # resp.subnet_ipv_4_cidr_reservations[0].owner_id #=> String
32421
+ # resp.subnet_ipv_4_cidr_reservations[0].description #=> String
32422
+ # resp.subnet_ipv_4_cidr_reservations[0].tags #=> Array
32423
+ # resp.subnet_ipv_4_cidr_reservations[0].tags[0].key #=> String
32424
+ # resp.subnet_ipv_4_cidr_reservations[0].tags[0].value #=> String
32425
+ # resp.subnet_ipv_6_cidr_reservations #=> Array
32426
+ # resp.subnet_ipv_6_cidr_reservations[0].subnet_cidr_reservation_id #=> String
32427
+ # resp.subnet_ipv_6_cidr_reservations[0].subnet_id #=> String
32428
+ # resp.subnet_ipv_6_cidr_reservations[0].cidr #=> String
32429
+ # resp.subnet_ipv_6_cidr_reservations[0].reservation_type #=> String, one of "prefix", "explicit"
32430
+ # resp.subnet_ipv_6_cidr_reservations[0].owner_id #=> String
32431
+ # resp.subnet_ipv_6_cidr_reservations[0].description #=> String
32432
+ # resp.subnet_ipv_6_cidr_reservations[0].tags #=> Array
32433
+ # resp.subnet_ipv_6_cidr_reservations[0].tags[0].key #=> String
32434
+ # resp.subnet_ipv_6_cidr_reservations[0].tags[0].value #=> String
32435
+ # resp.next_token #=> String
32436
+ #
32437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetSubnetCidrReservations AWS API Documentation
32438
+ #
32439
+ # @overload get_subnet_cidr_reservations(params = {})
32440
+ # @param [Hash] params ({})
32441
+ def get_subnet_cidr_reservations(params = {}, options = {})
32442
+ req = build_request(:get_subnet_cidr_reservations, params)
32443
+ req.send_request(options)
32444
+ end
32445
+
32083
32446
  # Lists the route tables to which the specified resource attachment
32084
32447
  # propagates routes.
32085
32448
  #
@@ -34583,7 +34946,7 @@ module Aws::EC2
34583
34946
  #
34584
34947
  #
34585
34948
  #
34586
- # [1]: https://docs.aws.amazon.com/monitoring-instances-status-check_sched.html#event-windows
34949
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/event-windows.html
34587
34950
  #
34588
34951
  # @option params [Boolean] :dry_run
34589
34952
  # Checks whether you have the required permissions for the action,
@@ -36637,12 +37000,12 @@ module Aws::EC2
36637
37000
  # * Enable/disable the ability to resolve public DNS hostnames to
36638
37001
  # private IP addresses when queried from instances in the peer VPC.
36639
37002
  #
36640
- # If the peered VPCs are in the same AWS account, you can enable DNS
37003
+ # If the peered VPCs are in the same account, you can enable DNS
36641
37004
  # resolution for queries from the local VPC. This ensures that queries
36642
37005
  # from the local VPC resolve to private IP addresses in the peer VPC.
36643
- # This option is not available if the peered VPCs are in different AWS
36644
- # accounts or different Regions. For peered VPCs in different AWS
36645
- # accounts, each AWS account owner must initiate a separate request to
37006
+ # This option is not available if the peered VPCs are in different
37007
+ # different accounts or different Regions. For peered VPCs in different
37008
+ # accounts, each account owner must initiate a separate request to
36646
37009
  # modify the peering connection options. For inter-region peering
36647
37010
  # connections, you must use the Region for the requester VPC to modify
36648
37011
  # the requester VPC peering options and the Region for the accepter VPC
@@ -38792,7 +39155,7 @@ module Aws::EC2
38792
39155
  # gateway, NAT instance, NAT gateway, VPC peering connection, network
38793
39156
  # interface, egress-only internet gateway, or transit gateway.
38794
39157
  #
38795
- # For more information, see [Route Tables][1] in the *Amazon Virtual
39158
+ # For more information, see [Route tables][1] in the *Amazon Virtual
38796
39159
  # Private Cloud User Guide*.
38797
39160
  #
38798
39161
  #
@@ -38903,7 +39266,7 @@ module Aws::EC2
38903
39266
  # Changes the route table associated with a given subnet, internet
38904
39267
  # gateway, or virtual private gateway in a VPC. After the operation
38905
39268
  # completes, the subnet or gateway uses the routes in the new route
38906
- # table. For more information about route tables, see [Route Tables][1]
39269
+ # table. For more information about route tables, see [Route tables][1]
38907
39270
  # in the *Amazon Virtual Private Cloud User Guide*.
38908
39271
  #
38909
39272
  # You can also use this operation to change which table is the main
@@ -39387,6 +39750,18 @@ module Aws::EC2
39387
39750
  # associate_carrier_ip_address: false,
39388
39751
  # interface_type: "String",
39389
39752
  # network_card_index: 1,
39753
+ # ipv_4_prefixes: [
39754
+ # {
39755
+ # ipv_4_prefix: "String",
39756
+ # },
39757
+ # ],
39758
+ # ipv_4_prefix_count: 1,
39759
+ # ipv_6_prefixes: [
39760
+ # {
39761
+ # ipv_6_prefix: "String",
39762
+ # },
39763
+ # ],
39764
+ # ipv_6_prefix_count: 1,
39390
39765
  # },
39391
39766
  # ],
39392
39767
  # placement: {
@@ -39722,6 +40097,18 @@ module Aws::EC2
39722
40097
  # associate_carrier_ip_address: false,
39723
40098
  # interface_type: "String",
39724
40099
  # network_card_index: 1,
40100
+ # ipv_4_prefixes: [
40101
+ # {
40102
+ # ipv_4_prefix: "String",
40103
+ # },
40104
+ # ],
40105
+ # ipv_4_prefix_count: 1,
40106
+ # ipv_6_prefixes: [
40107
+ # {
40108
+ # ipv_6_prefix: "String",
40109
+ # },
40110
+ # ],
40111
+ # ipv_6_prefix_count: 1,
39725
40112
  # },
39726
40113
  # ],
39727
40114
  # placement: {
@@ -39807,6 +40194,12 @@ module Aws::EC2
39807
40194
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
39808
40195
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
39809
40196
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].network_card_index #=> Integer
40197
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_4_prefixes #=> Array
40198
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
40199
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_4_prefix_count #=> Integer
40200
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_6_prefixes #=> Array
40201
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
40202
+ # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ipv_6_prefix_count #=> Integer
39810
40203
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
39811
40204
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
39812
40205
  # resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
@@ -41198,6 +41591,18 @@ module Aws::EC2
41198
41591
  # associate_carrier_ip_address: false,
41199
41592
  # interface_type: "String",
41200
41593
  # network_card_index: 1,
41594
+ # ipv_4_prefixes: [
41595
+ # {
41596
+ # ipv_4_prefix: "String",
41597
+ # },
41598
+ # ],
41599
+ # ipv_4_prefix_count: 1,
41600
+ # ipv_6_prefixes: [
41601
+ # {
41602
+ # ipv_6_prefix: "String",
41603
+ # },
41604
+ # ],
41605
+ # ipv_6_prefix_count: 1,
41201
41606
  # },
41202
41607
  # ],
41203
41608
  # private_ip_address: "String",
@@ -41365,6 +41770,10 @@ module Aws::EC2
41365
41770
  # resp.instances[0].network_interfaces[0].subnet_id #=> String
41366
41771
  # resp.instances[0].network_interfaces[0].vpc_id #=> String
41367
41772
  # resp.instances[0].network_interfaces[0].interface_type #=> String
41773
+ # resp.instances[0].network_interfaces[0].ipv_4_prefixes #=> Array
41774
+ # resp.instances[0].network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
41775
+ # resp.instances[0].network_interfaces[0].ipv_6_prefixes #=> Array
41776
+ # resp.instances[0].network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
41368
41777
  # resp.instances[0].outpost_arn #=> String
41369
41778
  # resp.instances[0].root_device_name #=> String
41370
41779
  # resp.instances[0].root_device_type #=> String, one of "ebs", "instance-store"
@@ -42028,8 +42437,8 @@ module Aws::EC2
42028
42437
  #
42029
42438
  # @option params [required, String] :client_token
42030
42439
  # Unique, case-sensitive identifier that you provide to ensure the
42031
- # idempotency of the request. For more information, see [How to Ensure
42032
- # Idempotency][1].
42440
+ # idempotency of the request. For more information, see [How to ensure
42441
+ # idempotency][1].
42033
42442
  #
42034
42443
  # **A suitable default value is auto-generated.** You should normally
42035
42444
  # not need to pass this option.**
@@ -42685,24 +43094,31 @@ module Aws::EC2
42685
43094
  req.send_request(options)
42686
43095
  end
42687
43096
 
42688
- # Unassigns one or more IPv6 addresses from a network interface.
43097
+ # Unassigns one or more IPv6 addresses IPv4 Prefix Delegation prefixes
43098
+ # from a network interface.
43099
+ #
43100
+ # @option params [Array<String>] :ipv_6_addresses
43101
+ # The IPv6 addresses to unassign from the network interface.
43102
+ #
43103
+ # @option params [Array<String>] :ipv_6_prefixes
43104
+ # One or moreIPv6 Prefix Delegation prefixes to unassign from the
43105
+ # network interface.
42689
43106
  #
42690
43107
  # @option params [required, String] :network_interface_id
42691
43108
  # The ID of the network interface.
42692
43109
  #
42693
- # @option params [required, Array<String>] :ipv_6_addresses
42694
- # The IPv6 addresses to unassign from the network interface.
42695
- #
42696
43110
  # @return [Types::UnassignIpv6AddressesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
42697
43111
  #
42698
43112
  # * {Types::UnassignIpv6AddressesResult#network_interface_id #network_interface_id} => String
42699
43113
  # * {Types::UnassignIpv6AddressesResult#unassigned_ipv_6_addresses #unassigned_ipv_6_addresses} => Array&lt;String&gt;
43114
+ # * {Types::UnassignIpv6AddressesResult#unassigned_ipv_6_prefixes #unassigned_ipv_6_prefixes} => Array&lt;String&gt;
42700
43115
  #
42701
43116
  # @example Request syntax with placeholder values
42702
43117
  #
42703
43118
  # resp = client.unassign_ipv_6_addresses({
43119
+ # ipv_6_addresses: ["String"],
43120
+ # ipv_6_prefixes: ["String"],
42704
43121
  # network_interface_id: "NetworkInterfaceId", # required
42705
- # ipv_6_addresses: ["String"], # required
42706
43122
  # })
42707
43123
  #
42708
43124
  # @example Response structure
@@ -42710,6 +43126,8 @@ module Aws::EC2
42710
43126
  # resp.network_interface_id #=> String
42711
43127
  # resp.unassigned_ipv_6_addresses #=> Array
42712
43128
  # resp.unassigned_ipv_6_addresses[0] #=> String
43129
+ # resp.unassigned_ipv_6_prefixes #=> Array
43130
+ # resp.unassigned_ipv_6_prefixes[0] #=> String
42713
43131
  #
42714
43132
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6Addresses AWS API Documentation
42715
43133
  #
@@ -42720,17 +43138,21 @@ module Aws::EC2
42720
43138
  req.send_request(options)
42721
43139
  end
42722
43140
 
42723
- # Unassigns one or more secondary private IP addresses from a network
42724
- # interface.
43141
+ # Unassigns one or more secondary private IP addresses, or IPv4 Prefix
43142
+ # Delegation prefixes from a network interface.
42725
43143
  #
42726
43144
  # @option params [required, String] :network_interface_id
42727
43145
  # The ID of the network interface.
42728
43146
  #
42729
- # @option params [required, Array<String>] :private_ip_addresses
43147
+ # @option params [Array<String>] :private_ip_addresses
42730
43148
  # The secondary private IP addresses to unassign from the network
42731
43149
  # interface. You can specify this option multiple times to unassign more
42732
43150
  # than one IP address.
42733
43151
  #
43152
+ # @option params [Array<String>] :ipv_4_prefixes
43153
+ # The IPv4 Prefix Delegation prefixes to unassign from the network
43154
+ # interface.
43155
+ #
42734
43156
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
42735
43157
  #
42736
43158
  #
@@ -42749,7 +43171,8 @@ module Aws::EC2
42749
43171
  #
42750
43172
  # resp = client.unassign_private_ip_addresses({
42751
43173
  # network_interface_id: "NetworkInterfaceId", # required
42752
- # private_ip_addresses: ["String"], # required
43174
+ # private_ip_addresses: ["String"],
43175
+ # ipv_4_prefixes: ["String"],
42753
43176
  # })
42754
43177
  #
42755
43178
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddresses AWS API Documentation
@@ -43109,7 +43532,7 @@ module Aws::EC2
43109
43532
  params: params,
43110
43533
  config: config)
43111
43534
  context[:gem_name] = 'aws-sdk-ec2'
43112
- context[:gem_version] = '1.250.0'
43535
+ context[:gem_version] = '1.251.0'
43113
43536
  Seahorse::Client::Request.new(handlers, context)
43114
43537
  end
43115
43538