aws-sdk-ec2 1.249.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: a231ecbae35e67550c84ee23e4816f0f8457728adf9a8689c7e1da9b169f5090
4
- data.tar.gz: 36822e29dd39911194efb1844c0b7ffafa1c0a7d95f1aa310c761649701fd292
3
+ metadata.gz: 6b547bf8c9cdd5c8449cb12697413c4104ce8f9ebebb943fc825f04bfad270bb
4
+ data.tar.gz: 769c7b099848c23974b09816c9c96da4f087552193b801026b268e22acee9cf1
5
5
  SHA512:
6
- metadata.gz: 68e4c6bddcacc6aa0d134edc184ba561201528095ab6dc6dd9eb1fa3dd84c9ab75c0e9a859c935875e2346e50c7fecccfc873de72255ef86ce54361b096d4bba
7
- data.tar.gz: 704df21e5600b9d2e05f9e385f4b754c20757a7a719d830dbc4de38ce9069e5b87402de29a5adaf70f10bccf5d99825c79f5a6a1ee6a02fe0b52a84c6dc7e08d
6
+ metadata.gz: 3deadbfb54763f40456ce907e029c47f837d2c4cf5a5c01de77e0dcd766f8c4d356b93d0922f080676a363f324ef1349d86db0cecdc6f75e3d1dd8fcf7cf74a9
7
+ data.tar.gz: f2dc57853511fd13ce3f37288c2a73b256ad470bda3b4fd603d7bbb25adbcd23d176ebf82aa087e0e363b9b5afb17980631b906b7d435dda944065ff7f082493
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.250.0 (2021-07-20)
10
+ ------------------
11
+
12
+ * Feature - Added idempotency to the CreateVolume API using the ClientToken request parameter
13
+
4
14
  1.249.0 (2021-07-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.249.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.249.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
  #
@@ -2257,13 +2299,13 @@ module Aws::EC2
2257
2299
  # encryption][1] in the *Amazon Elastic Compute Cloud User Guide*.
2258
2300
  #
2259
2301
  # After you attach an EBS volume, you must make it available. For more
2260
- # information, see [Making an EBS volume available for use][2].
2302
+ # information, see [Make an EBS volume available for use][2].
2261
2303
  #
2262
- # If a volume has an AWS Marketplace product code:
2304
+ # If a volume has an Marketplace product code:
2263
2305
  #
2264
2306
  # * The volume can be attached only to a stopped instance.
2265
2307
  #
2266
- # * AWS Marketplace product codes are copied from the volume to the
2308
+ # * Marketplace product codes are copied from the volume to the
2267
2309
  # instance.
2268
2310
  #
2269
2311
  # * You must be subscribed to the product.
@@ -2272,8 +2314,8 @@ module Aws::EC2
2272
2314
  # the product. For example, you can't detach a volume from a Windows
2273
2315
  # instance and attach it to a Linux instance.
2274
2316
  #
2275
- # For more information, see [Attaching Amazon EBS volumes][3] in the
2276
- # *Amazon Elastic Compute Cloud User Guide*.
2317
+ # For more information, see [Attach an Amazon EBS volume to an
2318
+ # instance][3] in the *Amazon Elastic Compute Cloud User Guide*.
2277
2319
  #
2278
2320
  #
2279
2321
  #
@@ -3747,11 +3789,11 @@ module Aws::EC2
3747
3789
  # When copying snapshots to a Region, copies of encrypted EBS snapshots
3748
3790
  # remain encrypted. Copies of unencrypted snapshots remain unencrypted,
3749
3791
  # unless you enable encryption for the snapshot copy operation. By
3750
- # default, encrypted snapshot copies use the default AWS Key Management
3751
- # Service (AWS KMS) customer master key (CMK); however, you can specify
3752
- # a different CMK. To copy an encrypted snapshot that has been shared
3753
- # from another account, you must have permissions for the CMK used to
3754
- # encrypt the snapshot.
3792
+ # default, encrypted snapshot copies use the default Key Management
3793
+ # Service (KMS) KMS key; however, you can specify a different KMS key.
3794
+ # To copy an encrypted snapshot that has been shared from another
3795
+ # account, you must have permissions for the KMS key used to encrypt the
3796
+ # snapshot.
3755
3797
  #
3756
3798
  # Snapshots copied to an Outpost are encrypted by default using the
3757
3799
  # default encryption key for the Region, or a different key that you
@@ -3763,7 +3805,7 @@ module Aws::EC2
3763
3805
  # Snapshots created by copying another snapshot have an arbitrary volume
3764
3806
  # ID that should not be used for any purpose.
3765
3807
  #
3766
- # For more information, see [Copying an Amazon EBS snapshot][2] in the
3808
+ # For more information, see [Copy an Amazon EBS snapshot][2] in the
3767
3809
  # *Amazon Elastic Compute Cloud User Guide*.
3768
3810
  #
3769
3811
  #
@@ -3777,12 +3819,14 @@ module Aws::EC2
3777
3819
  # @option params [String] :destination_outpost_arn
3778
3820
  # The Amazon Resource Name (ARN) of the Outpost to which to copy the
3779
3821
  # snapshot. Only specify this parameter when copying a snapshot from an
3780
- # AWS Region to an Outpost. The snapshot must be in the Region for the
3781
- # destination Outpost. You cannot copy a snapshot from an Outpost to a
3782
- # Region, from one Outpost to another, or within the same Outpost.
3822
+ # Amazon Web Services Region to an Outpost. The snapshot must be in the
3823
+ # Region for the destination Outpost. You cannot copy a snapshot from an
3824
+ # Outpost to a Region, from one Outpost to another, or within the same
3825
+ # Outpost.
3783
3826
  #
3784
- # For more information, see [ Copying snapshots from an AWS Region to an
3785
- # Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
3827
+ # For more information, see [ Copy snapshots from an Amazon Web Services
3828
+ # Region to an Outpost][1] in the *Amazon Elastic Compute Cloud User
3829
+ # Guide*.
3786
3830
  #
3787
3831
  #
3788
3832
  #
@@ -3796,8 +3840,8 @@ module Aws::EC2
3796
3840
  #
3797
3841
  # The snapshot copy is sent to the regional endpoint that you sent the
3798
3842
  # HTTP request to (for example, `ec2.us-east-1.amazonaws.com`). With the
3799
- # AWS CLI, this is specified using the `--region` parameter or the
3800
- # default Region in your AWS configuration file.
3843
+ # CLI, this is specified using the `--region` parameter or the default
3844
+ # Region in your Amazon Web Services configuration file.
3801
3845
  #
3802
3846
  # @option params [Boolean] :encrypted
3803
3847
  # To encrypt a copy of an unencrypted snapshot if encryption by default
@@ -3812,12 +3856,12 @@ module Aws::EC2
3812
3856
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
3813
3857
  #
3814
3858
  # @option params [String] :kms_key_id
3815
- # The identifier of the AWS Key Management Service (AWS KMS) customer
3816
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
3817
- # is not specified, your AWS managed CMK for EBS is used. If `KmsKeyId`
3818
- # is specified, the encrypted state must be `true`.
3859
+ # The identifier of the Key Management Service (KMS) KMS key to use for
3860
+ # Amazon EBS encryption. If this parameter is not specified, your KMS
3861
+ # key for Amazon EBS is used. If `KmsKeyId` is specified, the encrypted
3862
+ # state must be `true`.
3819
3863
  #
3820
- # You can specify the CMK using any of the following:
3864
+ # You can specify the KMS key using any of the following:
3821
3865
  #
3822
3866
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
3823
3867
  #
@@ -3829,9 +3873,9 @@ module Aws::EC2
3829
3873
  # * Alias ARN. For example,
3830
3874
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
3831
3875
  #
3832
- # AWS authenticates the CMK asynchronously. Therefore, if you specify an
3833
- # ID, alias, or ARN that is not valid, the action can appear to
3834
- # complete, but eventually fails.
3876
+ # Amazon Web Services authenticates the KMS key asynchronously.
3877
+ # Therefore, if you specify an ID, alias, or ARN that is not valid, the
3878
+ # action can appear to complete, but eventually fails.
3835
3879
  #
3836
3880
  # @option params [String] :presigned_url
3837
3881
  # When you copy an encrypted source snapshot using the Amazon EC2 Query
@@ -3841,13 +3885,14 @@ module Aws::EC2
3841
3885
  # The `PresignedUrl` should use the snapshot source endpoint, the
3842
3886
  # `CopySnapshot` action, and include the `SourceRegion`,
3843
3887
  # `SourceSnapshotId`, and `DestinationRegion` parameters. The
3844
- # `PresignedUrl` must be signed using AWS Signature Version 4. Because
3845
- # EBS snapshots are stored in Amazon S3, the signing algorithm for this
3846
- # parameter uses the same logic that is described in [Authenticating
3847
- # Requests: Using Query Parameters (AWS Signature Version 4)][2] in the
3848
- # *Amazon Simple Storage Service API Reference*. An invalid or
3849
- # improperly signed `PresignedUrl` will cause the copy operation to fail
3850
- # asynchronously, and the snapshot will move to an `error` state.
3888
+ # `PresignedUrl` must be signed using Amazon Web Services Signature
3889
+ # Version 4. Because EBS snapshots are stored in Amazon S3, the signing
3890
+ # algorithm for this parameter uses the same logic that is described in
3891
+ # [Authenticating Requests: Using Query Parameters (Amazon Web Services
3892
+ # Signature Version 4)][2] in the *Amazon Simple Storage Service API
3893
+ # Reference*. An invalid or improperly signed `PresignedUrl` will cause
3894
+ # the copy operation to fail asynchronously, and the snapshot will move
3895
+ # to an `error` state.
3851
3896
  #
3852
3897
  #
3853
3898
  #
@@ -4167,8 +4212,8 @@ module Aws::EC2
4167
4212
  end
4168
4213
 
4169
4214
  # Creates a carrier gateway. For more information about carrier
4170
- # gateways, see [Carrier gateways][1] in the *AWS Wavelength Developer
4171
- # Guide*.
4215
+ # gateways, see [Carrier gateways][1] in the *Amazon Web Services
4216
+ # Wavelength Developer Guide*.
4172
4217
  #
4173
4218
  #
4174
4219
  #
@@ -4188,8 +4233,8 @@ module Aws::EC2
4188
4233
  #
4189
4234
  # @option params [String] :client_token
4190
4235
  # Unique, case-sensitive identifier that you provide to ensure the
4191
- # idempotency of the request. For more information, see [How to Ensure
4192
- # Idempotency][1].
4236
+ # idempotency of the request. For more information, see [How to ensure
4237
+ # idempotency][1].
4193
4238
  #
4194
4239
  # **A suitable default value is auto-generated.** You should normally
4195
4240
  # not need to pass this option.**
@@ -4652,7 +4697,7 @@ module Aws::EC2
4652
4697
  # Creates a default subnet with a size `/20` IPv4 CIDR block in the
4653
4698
  # specified Availability Zone in your default VPC. You can have only one
4654
4699
  # default subnet per Availability Zone. For more information, see
4655
- # [Creating a Default Subnet][1] in the *Amazon Virtual Private Cloud
4700
+ # [Creating a default subnet][1] in the *Amazon Virtual Private Cloud
4656
4701
  # User Guide*.
4657
4702
  #
4658
4703
  #
@@ -4716,7 +4761,7 @@ module Aws::EC2
4716
4761
 
4717
4762
  # Creates a default VPC with a size `/16` IPv4 CIDR block and a default
4718
4763
  # subnet in each Availability Zone. For more information about the
4719
- # 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]
4720
4765
  # in the *Amazon Virtual Private Cloud User Guide*. You cannot specify
4721
4766
  # the components of the default VPC yourself.
4722
4767
  #
@@ -4826,7 +4871,7 @@ module Aws::EC2
4826
4871
  # create a set of options, and if your VPC has an internet gateway, make
4827
4872
  # sure to set the `domain-name-servers` option either to
4828
4873
  # `AmazonProvidedDNS` or to a domain name server of your choice. For
4829
- # more information, see [DHCP Options Sets][2] in the *Amazon Virtual
4874
+ # more information, see [DHCP options sets][2] in the *Amazon Virtual
4830
4875
  # Private Cloud User Guide*.
4831
4876
  #
4832
4877
  #
@@ -4939,8 +4984,8 @@ module Aws::EC2
4939
4984
  #
4940
4985
  # @option params [String] :client_token
4941
4986
  # Unique, case-sensitive identifier that you provide to ensure the
4942
- # idempotency of the request. For more information, see [How to Ensure
4943
- # Idempotency][1].
4987
+ # idempotency of the request. For more information, see [How to ensure
4988
+ # idempotency][1].
4944
4989
  #
4945
4990
  #
4946
4991
  #
@@ -5253,7 +5298,7 @@ module Aws::EC2
5253
5298
  #
5254
5299
  # Flow log data for a monitored network interface is recorded as flow
5255
5300
  # log records, which are log events consisting of fields that describe
5256
- # 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
5257
5302
  # the *Amazon Virtual Private Cloud User Guide*.
5258
5303
  #
5259
5304
  # When publishing to CloudWatch Logs, flow log records are published to
@@ -5278,8 +5323,8 @@ module Aws::EC2
5278
5323
  #
5279
5324
  # @option params [String] :client_token
5280
5325
  # Unique, case-sensitive identifier that you provide to ensure the
5281
- # idempotency of the request. For more information, see [How to Ensure
5282
- # Idempotency][1].
5326
+ # idempotency of the request. For more information, see [How to ensure
5327
+ # idempotency][1].
5283
5328
  #
5284
5329
  #
5285
5330
  #
@@ -5348,14 +5393,14 @@ module Aws::EC2
5348
5393
  #
5349
5394
  # @option params [String] :log_format
5350
5395
  # The fields to include in the flow log record, in the order in which
5351
- # they should appear. For a list of available fields, see [Flow Log
5352
- # 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
5353
5398
  # the default format. If you specify this parameter, you must specify at
5354
5399
  # least one field.
5355
5400
  #
5356
5401
  # Specify the fields using the `$\{field-id\}` format, separated by
5357
- # spaces. For the AWS CLI, use single quotation marks (' ') to
5358
- # surround the parameter value.
5402
+ # spaces. For the CLI, use single quotation marks (' ') to surround
5403
+ # the parameter value.
5359
5404
  #
5360
5405
  #
5361
5406
  #
@@ -5705,7 +5750,7 @@ module Aws::EC2
5705
5750
  #
5706
5751
  #
5707
5752
  #
5708
- # [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
5709
5754
  #
5710
5755
  # @option params [Boolean] :dry_run
5711
5756
  # Checks whether you have the required permissions for the action,
@@ -6210,6 +6255,18 @@ module Aws::EC2
6210
6255
  # secondary_private_ip_address_count: 1,
6211
6256
  # subnet_id: "SubnetId",
6212
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,
6213
6270
  # },
6214
6271
  # ],
6215
6272
  # image_id: "ImageId",
@@ -6496,6 +6553,18 @@ module Aws::EC2
6496
6553
  # secondary_private_ip_address_count: 1,
6497
6554
  # subnet_id: "SubnetId",
6498
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,
6499
6568
  # },
6500
6569
  # ],
6501
6570
  # image_id: "ImageId",
@@ -6630,6 +6699,12 @@ module Aws::EC2
6630
6699
  # resp.launch_template_version.launch_template_data.network_interfaces[0].secondary_private_ip_address_count #=> Integer
6631
6700
  # resp.launch_template_version.launch_template_data.network_interfaces[0].subnet_id #=> String
6632
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
6633
6708
  # resp.launch_template_version.launch_template_data.image_id #=> String
6634
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"
6635
6710
  # resp.launch_template_version.launch_template_data.key_name #=> String
@@ -6923,7 +6998,7 @@ module Aws::EC2
6923
6998
  # behind a small pool of allowlisted IPv4 addresses, preserving private
6924
6999
  # IPv4 addresses, and communicating between overlapping networks.
6925
7000
  #
6926
- # For more information, see [NAT Gateways][1] in the *Amazon Virtual
7001
+ # For more information, see [NAT gateways][1] in the *Amazon Virtual
6927
7002
  # Private Cloud User Guide*.
6928
7003
  #
6929
7004
  #
@@ -6939,8 +7014,8 @@ module Aws::EC2
6939
7014
  #
6940
7015
  # @option params [String] :client_token
6941
7016
  # Unique, case-sensitive identifier that you provide to ensure the
6942
- # idempotency of the request. For more information, see [How to Ensure
6943
- # Idempotency][1].
7017
+ # idempotency of the request. For more information, see [How to ensure
7018
+ # idempotency][1].
6944
7019
  #
6945
7020
  # Constraint: Maximum 64 ASCII characters.
6946
7021
  #
@@ -7309,17 +7384,18 @@ module Aws::EC2
7309
7384
  # [1]: https://docs.aws.amazon.com/vpc/latest/reachability/
7310
7385
  #
7311
7386
  # @option params [String] :source_ip
7312
- # 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.
7313
7389
  #
7314
7390
  # @option params [String] :destination_ip
7315
- # The IP address of the AWS resource that is the destination of the
7316
- # path.
7391
+ # The IP address of the Amazon Web Services resource that is the
7392
+ # destination of the path.
7317
7393
  #
7318
7394
  # @option params [required, String] :source
7319
- # The AWS resource that is the source of the path.
7395
+ # The Amazon Web Services resource that is the source of the path.
7320
7396
  #
7321
7397
  # @option params [required, String] :destination
7322
- # The AWS resource that is the destination of the path.
7398
+ # The Amazon Web Services resource that is the destination of the path.
7323
7399
  #
7324
7400
  # @option params [required, String] :protocol
7325
7401
  # The protocol.
@@ -7338,8 +7414,8 @@ module Aws::EC2
7338
7414
  #
7339
7415
  # @option params [required, String] :client_token
7340
7416
  # Unique, case-sensitive identifier that you provide to ensure the
7341
- # idempotency of the request. For more information, see [How to Ensure
7342
- # Idempotency][1].
7417
+ # idempotency of the request. For more information, see [How to ensure
7418
+ # idempotency][1].
7343
7419
  #
7344
7420
  # **A suitable default value is auto-generated.** You should normally
7345
7421
  # not need to pass this option.**
@@ -7459,6 +7535,26 @@ module Aws::EC2
7459
7535
  #
7460
7536
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
7461
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
+ #
7462
7558
  # @option params [String] :interface_type
7463
7559
  # Indicates the type of network interface. To create an Elastic Fabric
7464
7560
  # Adapter (EFA), specify `efa`. For more information, see [ Elastic
@@ -7560,6 +7656,18 @@ module Aws::EC2
7560
7656
  # },
7561
7657
  # ],
7562
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,
7563
7671
  # interface_type: "efa", # accepts efa, branch, trunk
7564
7672
  # subnet_id: "SubnetId", # required
7565
7673
  # tag_specifications: [
@@ -7618,6 +7726,10 @@ module Aws::EC2
7618
7726
  # resp.network_interface.private_ip_addresses[0].primary #=> Boolean
7619
7727
  # resp.network_interface.private_ip_addresses[0].private_dns_name #=> String
7620
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
7621
7733
  # resp.network_interface.requester_id #=> String
7622
7734
  # resp.network_interface.requester_managed #=> Boolean
7623
7735
  # resp.network_interface.source_dest_check #=> Boolean
@@ -7802,7 +7914,7 @@ module Aws::EC2
7802
7914
  #
7803
7915
  #
7804
7916
  #
7805
- # [1]: https://docs.aws.amazon.com/
7917
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-restoring-volume.html#replace-root
7806
7918
  #
7807
7919
  # @option params [required, String] :instance_id
7808
7920
  # The ID of the instance for which to replace the root volume.
@@ -7816,7 +7928,7 @@ module Aws::EC2
7816
7928
  # Unique, case-sensitive identifier you provide to ensure the
7817
7929
  # idempotency of the request. If you do not specify a client token, a
7818
7930
  # randomly generated token is used for the request to ensure
7819
- # idempotency. For more information, see [Ensuring Idempotency][1].
7931
+ # idempotency. For more information, see [Ensuring idempotency][1].
7820
7932
  #
7821
7933
  # **A suitable default value is auto-generated.** You should normally
7822
7934
  # not need to pass this option.**
@@ -8084,7 +8196,7 @@ module Aws::EC2
8084
8196
  # and is therefore more specific, so we use that route to determine
8085
8197
  # where to target the traffic.
8086
8198
  #
8087
- # 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
8088
8200
  # *Amazon Virtual Private Cloud User Guide*.
8089
8201
  #
8090
8202
  #
@@ -8202,7 +8314,7 @@ module Aws::EC2
8202
8314
  # Creates a route table for the specified VPC. After you create a route
8203
8315
  # table, you can add routes and associate the table with a subnet.
8204
8316
  #
8205
- # For more information, see [Route Tables][1] in the *Amazon Virtual
8317
+ # For more information, see [Route tables][1] in the *Amazon Virtual
8206
8318
  # Private Cloud User Guide*.
8207
8319
  #
8208
8320
  #
@@ -8451,22 +8563,23 @@ module Aws::EC2
8451
8563
  # stored on the same Outpost as the volume, or in the Region for that
8452
8564
  # Outpost.
8453
8565
  #
8454
- # When a snapshot is created, any AWS Marketplace product codes that are
8566
+ # When a snapshot is created, any Marketplace product codes that are
8455
8567
  # associated with the source volume are propagated to the snapshot.
8456
8568
  #
8457
8569
  # You can take a snapshot of an attached volume that is in use. However,
8458
- # snapshots only capture data that has been written to your EBS volume
8459
- # at the time the snapshot command is issued; this might exclude any
8460
- # data that has been cached by any applications or the operating system.
8461
- # If you can pause any file systems on the volume long enough to take a
8462
- # snapshot, your snapshot should be complete. However, if you cannot
8463
- # pause all file writes to the volume, you should unmount the volume
8464
- # from within the instance, issue the snapshot command, and then remount
8465
- # the volume to ensure a consistent and complete snapshot. You may
8466
- # remount and use your volume while the snapshot status is `pending`.
8467
- #
8468
- # To create a snapshot for EBS volumes that serve as root devices, you
8469
- # should stop the instance before taking the snapshot.
8570
+ # snapshots only capture data that has been written to your Amazon EBS
8571
+ # volume at the time the snapshot command is issued; this might exclude
8572
+ # any data that has been cached by any applications or the operating
8573
+ # system. If you can pause any file systems on the volume long enough to
8574
+ # take a snapshot, your snapshot should be complete. However, if you
8575
+ # cannot pause all file writes to the volume, you should unmount the
8576
+ # volume from within the instance, issue the snapshot command, and then
8577
+ # remount the volume to ensure a consistent and complete snapshot. You
8578
+ # may remount and use your volume while the snapshot status is
8579
+ # `pending`.
8580
+ #
8581
+ # To create a snapshot for Amazon EBS volumes that serve as root
8582
+ # devices, you should stop the instance before taking the snapshot.
8470
8583
  #
8471
8584
  # Snapshots that are taken from encrypted volumes are automatically
8472
8585
  # encrypted. Volumes that are created from encrypted snapshots are also
@@ -8474,7 +8587,7 @@ module Aws::EC2
8474
8587
  # snapshots always remain protected.
8475
8588
  #
8476
8589
  # You can tag your snapshots during creation. For more information, see
8477
- # [Tagging your Amazon EC2 resources][1] in the *Amazon Elastic Compute
8590
+ # [Tag your Amazon EC2 resources][1] in the *Amazon Elastic Compute
8478
8591
  # Cloud User Guide*.
8479
8592
  #
8480
8593
  # For more information, see [Amazon Elastic Block Store][2] and [Amazon
@@ -8490,7 +8603,7 @@ module Aws::EC2
8490
8603
  # A description for the snapshot.
8491
8604
  #
8492
8605
  # @option params [String] :outpost_arn
8493
- # The Amazon Resource Name (ARN) of the AWS Outpost on which to create a
8606
+ # The Amazon Resource Name (ARN) of the Outpost on which to create a
8494
8607
  # local snapshot.
8495
8608
  #
8496
8609
  # * To create a snapshot of a volume in a Region, omit this parameter.
@@ -8504,15 +8617,15 @@ module Aws::EC2
8504
8617
  # snapshot on an Outpost, specify the ARN of the destination Outpost.
8505
8618
  # The snapshot must be created on the same Outpost as the volume.
8506
8619
  #
8507
- # For more information, see [ Creating local snapshots from volumes on
8508
- # an Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
8620
+ # For more information, see [Create local snapshots from volumes on an
8621
+ # Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
8509
8622
  #
8510
8623
  #
8511
8624
  #
8512
8625
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#create-snapshot
8513
8626
  #
8514
8627
  # @option params [required, String] :volume_id
8515
- # The ID of the EBS volume.
8628
+ # The ID of the Amazon EBS volume.
8516
8629
  #
8517
8630
  # @option params [Array<Types::TagSpecification>] :tag_specifications
8518
8631
  # The tags to apply to the snapshot during creation.
@@ -8635,8 +8748,8 @@ module Aws::EC2
8635
8748
  # snapshots.
8636
8749
  #
8637
8750
  # @option params [String] :outpost_arn
8638
- # The Amazon Resource Name (ARN) of the AWS Outpost on which to create
8639
- # the local snapshots.
8751
+ # The Amazon Resource Name (ARN) of the Outpost on which to create the
8752
+ # local snapshots.
8640
8753
  #
8641
8754
  # * To create snapshots from an instance in a Region, omit this
8642
8755
  # parameter. The snapshots are created in the same Region as the
@@ -8650,7 +8763,7 @@ module Aws::EC2
8650
8763
  # snapshots on an Outpost, specify the ARN of the destination Outpost.
8651
8764
  # The snapshots must be created on the same Outpost as the instance.
8652
8765
  #
8653
- # For more information, see [ Creating multi-volume local snapshots from
8766
+ # For more information, see [ Create multi-volume local snapshots from
8654
8767
  # instances on an Outpost][1] in the *Amazon Elastic Compute Cloud User
8655
8768
  # Guide*.
8656
8769
  #
@@ -8876,8 +8989,8 @@ module Aws::EC2
8876
8989
  # If you've associated an IPv6 CIDR block with your VPC, you can create
8877
8990
  # a subnet with an IPv6 CIDR block that uses a /64 prefix length.
8878
8991
  #
8879
- # AWS reserves both the first four and the last IPv4 address in each
8880
- # 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.
8881
8994
  #
8882
8995
  # If you add more than one subnet to a VPC, they're set up in a star
8883
8996
  # topology with a logical router in the middle.
@@ -8887,7 +9000,7 @@ module Aws::EC2
8887
9000
  # instances (they're all stopped), but no remaining IP addresses
8888
9001
  # available.
8889
9002
  #
8890
- # 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
8891
9004
  # the *Amazon Virtual Private Cloud User Guide*.
8892
9005
  #
8893
9006
  #
@@ -8900,9 +9013,9 @@ module Aws::EC2
8900
9013
  # @option params [String] :availability_zone
8901
9014
  # The Availability Zone or Local Zone for the subnet.
8902
9015
  #
8903
- # Default: AWS selects one for you. If you create more than one subnet
8904
- # in your VPC, we do not necessarily select a different zone for each
8905
- # 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.
8906
9019
  #
8907
9020
  # To create a subnet in a Local Zone, set this value to the Local Zone
8908
9021
  # ID, for example `us-west-2-lax-1a`. For information about the Regions
@@ -8919,12 +9032,6 @@ module Aws::EC2
8919
9032
  # @option params [String] :availability_zone_id
8920
9033
  # The AZ ID or the Local Zone ID of the subnet.
8921
9034
  #
8922
- # @option params [required, String] :cidr_block
8923
- # The IPv4 network range for the subnet, in CIDR notation. For example,
8924
- # `10.0.0.0/24`. We modify the specified CIDR block to its canonical
8925
- # form; for example, if you specify `100.68.0.18/18`, we modify it to
8926
- # `100.68.0.0/18`.
8927
- #
8928
9035
  # @option params [String] :ipv_6_cidr_block
8929
9036
  # The IPv6 network range for the subnet, in CIDR notation. The subnet
8930
9037
  # size must use a /64 prefix length.
@@ -8943,6 +9050,12 @@ module Aws::EC2
8943
9050
  # If you have the required permissions, the error response is
8944
9051
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
8945
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
+ #
8946
9059
  # @return [Types::CreateSubnetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8947
9060
  #
8948
9061
  # * {Types::CreateSubnetResult#subnet #subnet} => Types::Subnet
@@ -8986,11 +9099,11 @@ module Aws::EC2
8986
9099
  # ],
8987
9100
  # availability_zone: "String",
8988
9101
  # availability_zone_id: "String",
8989
- # cidr_block: "String", # required
8990
9102
  # ipv_6_cidr_block: "String",
8991
9103
  # outpost_arn: "String",
8992
9104
  # vpc_id: "VpcId", # required
8993
9105
  # dry_run: false,
9106
+ # cidr_block: "String", # required
8994
9107
  # })
8995
9108
  #
8996
9109
  # @example Response structure
@@ -9028,6 +9141,96 @@ module Aws::EC2
9028
9141
  req.send_request(options)
9029
9142
  end
9030
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
+
9031
9234
  # Adds or overwrites only the specified tags for the specified Amazon
9032
9235
  # EC2 resource or resources. When you specify an existing tag key, the
9033
9236
  # value is overwritten with the new value. Each resource can have a
@@ -10255,7 +10458,7 @@ module Aws::EC2
10255
10458
  # Availability Zone.
10256
10459
  #
10257
10460
  # You can create a new empty volume or restore a volume from an EBS
10258
- # snapshot. Any AWS Marketplace product codes from the snapshot are
10461
+ # snapshot. Any Marketplace product codes from the snapshot are
10259
10462
  # propagated to the volume.
10260
10463
  #
10261
10464
  # You can create encrypted volumes. Encrypted volumes must be attached
@@ -10265,10 +10468,10 @@ module Aws::EC2
10265
10468
  # Elastic Compute Cloud User Guide*.
10266
10469
  #
10267
10470
  # You can tag your volumes during creation. For more information, see
10268
- # [Tagging your Amazon EC2 resources][2] in the *Amazon Elastic Compute
10471
+ # [Tag your Amazon EC2 resources][2] in the *Amazon Elastic Compute
10269
10472
  # Cloud User Guide*.
10270
10473
  #
10271
- # For more information, see [Creating an Amazon EBS volume][3] in the
10474
+ # For more information, see [Create an Amazon EBS volume][3] in the
10272
10475
  # *Amazon Elastic Compute Cloud User Guide*.
10273
10476
  #
10274
10477
  #
@@ -10312,9 +10515,9 @@ module Aws::EC2
10312
10515
  #
10313
10516
  # * `io2`\: 100-64,000 IOPS
10314
10517
  #
10315
- # For `io1` and `io2` volumes, we guarantee 64,000 IOPS only for
10316
- # [Instances built on the Nitro System][1]. Other instance families
10317
- # guarantee performance up to 32,000 IOPS.
10518
+ # `io1` and `io2` volumes support up to 64,000 IOPS only on [Instances
10519
+ # built on the Nitro System][1]. Other instance families support
10520
+ # performance up to 32,000 IOPS.
10318
10521
  #
10319
10522
  # This parameter is required for `io1` and `io2` volumes. The default
10320
10523
  # for `gp3` volumes is 3,000 IOPS. This parameter is not supported for
@@ -10325,12 +10528,12 @@ module Aws::EC2
10325
10528
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
10326
10529
  #
10327
10530
  # @option params [String] :kms_key_id
10328
- # The identifier of the AWS Key Management Service (AWS KMS) customer
10329
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
10330
- # is not specified, your AWS managed CMK for EBS is used. If `KmsKeyId`
10331
- # is specified, the encrypted state must be `true`.
10531
+ # The identifier of the Key Management Service (KMS) KMS key to use for
10532
+ # Amazon EBS encryption. If this parameter is not specified, your KMS
10533
+ # key for Amazon EBS is used. If `KmsKeyId` is specified, the encrypted
10534
+ # state must be `true`.
10332
10535
  #
10333
- # You can specify the CMK using any of the following:
10536
+ # You can specify the KMS key using any of the following:
10334
10537
  #
10335
10538
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
10336
10539
  #
@@ -10342,9 +10545,9 @@ module Aws::EC2
10342
10545
  # * Alias ARN. For example,
10343
10546
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
10344
10547
  #
10345
- # AWS authenticates the CMK asynchronously. Therefore, if you specify an
10346
- # ID, alias, or ARN that is not valid, the action can appear to
10347
- # complete, but eventually fails.
10548
+ # Amazon Web Services authenticates the KMS key asynchronously.
10549
+ # Therefore, if you specify an ID, alias, or ARN that is not valid, the
10550
+ # action can appear to complete, but eventually fails.
10348
10551
  #
10349
10552
  # @option params [String] :outpost_arn
10350
10553
  # The Amazon Resource Name (ARN) of the Outpost.
@@ -10421,6 +10624,18 @@ module Aws::EC2
10421
10624
  #
10422
10625
  # Valid Range: Minimum value of 125. Maximum value of 1000.
10423
10626
  #
10627
+ # @option params [String] :client_token
10628
+ # Unique, case-sensitive identifier that you provide to ensure the
10629
+ # idempotency of the request. For more information, see [Ensure
10630
+ # Idempotency][1].
10631
+ #
10632
+ # **A suitable default value is auto-generated.** You should normally
10633
+ # not need to pass this option.**
10634
+ #
10635
+ #
10636
+ #
10637
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
10638
+ #
10424
10639
  # @return [Types::Volume] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10425
10640
  #
10426
10641
  # * {Types::Volume#attachments #attachments} => Array&lt;Types::VolumeAttachment&gt;
@@ -10517,6 +10732,7 @@ module Aws::EC2
10517
10732
  # ],
10518
10733
  # multi_attach_enabled: false,
10519
10734
  # throughput: 1,
10735
+ # client_token: "String",
10520
10736
  # })
10521
10737
  #
10522
10738
  # @example Response structure
@@ -10558,7 +10774,7 @@ module Aws::EC2
10558
10774
  # Creates a VPC with the specified IPv4 CIDR block. The smallest VPC you
10559
10775
  # can create uses a /28 netmask (16 IPv4 addresses), and the largest
10560
10776
  # uses a /16 netmask (65,536 IPv4 addresses). For more information about
10561
- # 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
10562
10778
  # *Amazon Virtual Private Cloud User Guide*.
10563
10779
  #
10564
10780
  # You can optionally request an IPv6 CIDR block for the VPC. You can
@@ -10568,7 +10784,7 @@ module Aws::EC2
10568
10784
  #
10569
10785
  # By default, each instance you launch in the VPC has the default DHCP
10570
10786
  # options, which include only a default DNS server that we provide
10571
- # (AmazonProvidedDNS). For more information, see [DHCP Options Sets][3]
10787
+ # (AmazonProvidedDNS). For more information, see [DHCP options sets][3]
10572
10788
  # in the *Amazon Virtual Private Cloud User Guide*.
10573
10789
  #
10574
10790
  # You can specify the instance tenancy value for the VPC when you create
@@ -11081,7 +11297,7 @@ module Aws::EC2
11081
11297
 
11082
11298
  # Requests a VPC peering connection between two VPCs: a requester VPC
11083
11299
  # that you own and an accepter VPC with which to create the connection.
11084
- # 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
11085
11301
  # different Region to the requester VPC. The requester VPC and accepter
11086
11302
  # VPC cannot have overlapping CIDR blocks.
11087
11303
  #
@@ -11110,9 +11326,9 @@ module Aws::EC2
11110
11326
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
11111
11327
  #
11112
11328
  # @option params [String] :peer_owner_id
11113
- # The AWS account ID of the owner of the accepter VPC.
11329
+ # The account ID of the owner of the accepter VPC.
11114
11330
  #
11115
- # Default: Your AWS account ID
11331
+ # Default: Your account ID
11116
11332
  #
11117
11333
  # @option params [String] :peer_vpc_id
11118
11334
  # The ID of the VPC with which you are creating the VPC peering
@@ -11934,7 +12150,7 @@ module Aws::EC2
11934
12150
  #
11935
12151
  #
11936
12152
  #
11937
- # [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
11938
12154
  #
11939
12155
  # @option params [Boolean] :dry_run
11940
12156
  # Checks whether you have the required permissions for the action,
@@ -12893,7 +13109,7 @@ module Aws::EC2
12893
13109
  # by a registered AMI. You must first de-register the AMI before you can
12894
13110
  # delete the snapshot.
12895
13111
  #
12896
- # For more information, see [Deleting an Amazon EBS snapshot][1] in the
13112
+ # For more information, see [Delete an Amazon EBS snapshot][1] in the
12897
13113
  # *Amazon Elastic Compute Cloud User Guide*.
12898
13114
  #
12899
13115
  #
@@ -13013,6 +13229,49 @@ module Aws::EC2
13013
13229
  req.send_request(options)
13014
13230
  end
13015
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
+
13016
13275
  # Deletes the specified set of tags from the specified set of resources.
13017
13276
  #
13018
13277
  # To list the current tags, use DescribeTags. For more information about
@@ -13670,7 +13929,7 @@ module Aws::EC2
13670
13929
  #
13671
13930
  # The volume can remain in the `deleting` state for several minutes.
13672
13931
  #
13673
- # For more information, see [Deleting an Amazon EBS volume][1] in the
13932
+ # For more information, see [Delete an Amazon EBS volume][1] in the
13674
13933
  # *Amazon Elastic Compute Cloud User Guide*.
13675
13934
  #
13676
13935
  #
@@ -15221,7 +15480,7 @@ module Aws::EC2
15221
15480
  # * `state` - The state of the carrier gateway (`pending` \| `failed` \|
15222
15481
  # `available` \| `deleting` \| `deleted`).
15223
15482
  #
15224
- # * `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.
15225
15484
  #
15226
15485
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
15227
15486
  # the resource. Use the tag key in the filter name and the tag value
@@ -16066,7 +16325,7 @@ module Aws::EC2
16066
16325
 
16067
16326
  # Describes one or more of your DHCP options sets.
16068
16327
  #
16069
- # For more information, see [DHCP Options Sets][1] in the *Amazon
16328
+ # For more information, see [DHCP options sets][1] in the *Amazon
16070
16329
  # Virtual Private Cloud User Guide*.
16071
16330
  #
16072
16331
  #
@@ -16087,8 +16346,7 @@ module Aws::EC2
16087
16346
  #
16088
16347
  # * `value` - The value for one of the options.
16089
16348
  #
16090
- # * `owner-id` - The ID of the AWS account that owns the DHCP options
16091
- # set.
16349
+ # * `owner-id` - The ID of the account that owns the DHCP options set.
16092
16350
  #
16093
16351
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
16094
16352
  # the resource. Use the tag key in the filter name and the tag value
@@ -16488,7 +16746,7 @@ module Aws::EC2
16488
16746
  #
16489
16747
  # * `availability-zone`\: The Availability Zone of the snapshot.
16490
16748
  #
16491
- # * `owner-id`\: The ID of the AWS account that enabled fast snapshot
16749
+ # * `owner-id`\: The ID of the account that enabled fast snapshot
16492
16750
  # restore on the snapshot.
16493
16751
  #
16494
16752
  # * `snapshot-id`\: The ID of the snapshot.
@@ -18487,7 +18745,7 @@ module Aws::EC2
18487
18745
  #
18488
18746
  #
18489
18747
  #
18490
- # [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
18491
18749
  #
18492
18750
  # @option params [Boolean] :dry_run
18493
18751
  # Checks whether you have the required permissions for the action,
@@ -19658,6 +19916,10 @@ module Aws::EC2
19658
19916
  # resp.reservations[0].instances[0].network_interfaces[0].subnet_id #=> String
19659
19917
  # resp.reservations[0].instances[0].network_interfaces[0].vpc_id #=> String
19660
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
19661
19923
  # resp.reservations[0].instances[0].outpost_arn #=> String
19662
19924
  # resp.reservations[0].instances[0].root_device_name #=> String
19663
19925
  # resp.reservations[0].instances[0].root_device_type #=> String, one of "ebs", "instance-store"
@@ -19723,8 +19985,7 @@ module Aws::EC2
19723
19985
  #
19724
19986
  # * `internet-gateway-id` - The ID of the Internet gateway.
19725
19987
  #
19726
- # * `owner-id` - The ID of the AWS account that owns the internet
19727
- # gateway.
19988
+ # * `owner-id` - The ID of the account that owns the internet gateway.
19728
19989
  #
19729
19990
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
19730
19991
  # the resource. Use the tag key in the filter name and the tag value
@@ -20220,6 +20481,12 @@ module Aws::EC2
20220
20481
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].secondary_private_ip_address_count #=> Integer
20221
20482
  # resp.launch_template_versions[0].launch_template_data.network_interfaces[0].subnet_id #=> String
20222
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
20223
20490
  # resp.launch_template_versions[0].launch_template_data.image_id #=> String
20224
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"
20225
20492
  # resp.launch_template_versions[0].launch_template_data.key_name #=> String
@@ -21216,7 +21483,7 @@ module Aws::EC2
21216
21483
  #
21217
21484
  # * `network-acl-id` - The ID of the network ACL.
21218
21485
  #
21219
- # * `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.
21220
21487
  #
21221
21488
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
21222
21489
  # the resource. Use the tag key in the filter name and the tag value
@@ -22215,6 +22482,10 @@ module Aws::EC2
22215
22482
  # resp.network_interfaces[0].private_ip_addresses[0].primary #=> Boolean
22216
22483
  # resp.network_interfaces[0].private_ip_addresses[0].private_dns_name #=> String
22217
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
22218
22489
  # resp.network_interfaces[0].requester_id #=> String
22219
22490
  # resp.network_interfaces[0].requester_managed #=> Boolean
22220
22491
  # resp.network_interfaces[0].source_dest_check #=> Boolean
@@ -22686,7 +22957,7 @@ module Aws::EC2
22686
22957
  #
22687
22958
  #
22688
22959
  #
22689
- # [1]: https://docs.aws.amazon.com/
22960
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-restoring-volume.html#replace-root
22690
22961
  #
22691
22962
  # @option params [Array<String>] :replace_root_volume_task_ids
22692
22963
  # The ID of the root volume replacement task to view.
@@ -23305,7 +23576,7 @@ module Aws::EC2
23305
23576
  # implicitly associated with the main route table. This command does not
23306
23577
  # return the subnet ID for implicit associations.
23307
23578
  #
23308
- # For more information, see [Route Tables][1] in the *Amazon Virtual
23579
+ # For more information, see [Route tables][1] in the *Amazon Virtual
23309
23580
  # Private Cloud User Guide*.
23310
23581
  #
23311
23582
  #
@@ -23328,7 +23599,7 @@ module Aws::EC2
23328
23599
  # route table for the VPC (`true` \| `false`). Route tables that do
23329
23600
  # not have an association ID are not returned in the response.
23330
23601
  #
23331
- # * `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.
23332
23603
  #
23333
23604
  # * `route-table-id` - The ID of the route table.
23334
23605
  #
@@ -23338,8 +23609,8 @@ module Aws::EC2
23338
23609
  # * `route.destination-ipv6-cidr-block` - The IPv6 CIDR range specified
23339
23610
  # in a route in the route table.
23340
23611
  #
23341
- # * `route.destination-prefix-list-id` - The ID (prefix) of the AWS
23342
- # 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.
23343
23614
  #
23344
23615
  # * `route.egress-only-internet-gateway-id` - The ID of an egress-only
23345
23616
  # Internet gateway specified in a route in the route table.
@@ -24295,25 +24566,25 @@ module Aws::EC2
24295
24566
  # EBS snapshots available to you.
24296
24567
  #
24297
24568
  # The snapshots available to you include public snapshots, private
24298
- # snapshots that you own, and private snapshots owned by other AWS
24299
- # accounts for which you have explicit create volume permissions.
24569
+ # snapshots that you own, and private snapshots owned by other accounts
24570
+ # for which you have explicit create volume permissions.
24300
24571
  #
24301
24572
  # The create volume permissions fall into the following categories:
24302
24573
  #
24303
24574
  # * *public*\: The owner of the snapshot granted create volume
24304
- # permissions for the snapshot to the `all` group. All AWS accounts
24305
- # have create volume permissions for these snapshots.
24575
+ # permissions for the snapshot to the `all` group. All accounts have
24576
+ # create volume permissions for these snapshots.
24306
24577
  #
24307
24578
  # * *explicit*\: The owner of the snapshot granted create volume
24308
- # permissions to a specific AWS account.
24579
+ # permissions to a specific account.
24309
24580
  #
24310
- # * *implicit*\: An AWS account has implicit create volume permissions
24311
- # for all snapshots it owns.
24581
+ # * *implicit*\: An account has implicit create volume permissions for
24582
+ # all snapshots it owns.
24312
24583
  #
24313
24584
  # The list of snapshots returned can be filtered by specifying snapshot
24314
- # IDs, snapshot owners, or AWS accounts with create volume permissions.
24315
- # If no options are specified, Amazon EC2 returns all snapshots for
24316
- # which you have create volume permissions.
24585
+ # IDs, snapshot owners, or accounts with create volume permissions. If
24586
+ # no options are specified, Amazon EC2 returns all snapshots for which
24587
+ # you have create volume permissions.
24317
24588
  #
24318
24589
  # If you specify one or more snapshot IDs, only snapshots that have the
24319
24590
  # specified IDs are returned. If you specify an invalid snapshot ID, an
@@ -24322,12 +24593,12 @@ module Aws::EC2
24322
24593
  #
24323
24594
  # If you specify one or more snapshot owners using the `OwnerIds`
24324
24595
  # option, only snapshots from the specified owners and for which you
24325
- # have access are returned. The results can include the AWS account IDs
24326
- # of the specified owners, `amazon` for snapshots owned by Amazon, or
24596
+ # have access are returned. The results can include the account IDs of
24597
+ # the specified owners, `amazon` for snapshots owned by Amazon, or
24327
24598
  # `self` for snapshots that you own.
24328
24599
  #
24329
24600
  # If you specify a list of restorable users, only snapshots with create
24330
- # snapshot permissions for those users are returned. You can specify AWS
24601
+ # snapshot permissions for those users are returned. You can specify
24331
24602
  # account IDs (if you own the snapshots), `self` for snapshots for which
24332
24603
  # you own or have explicit permissions, or `all` for public snapshots.
24333
24604
  #
@@ -24358,12 +24629,12 @@ module Aws::EC2
24358
24629
  # `false`)
24359
24630
  #
24360
24631
  # * `owner-alias` - The owner alias, from an Amazon-maintained list
24361
- # (`amazon`). This is not the user-configured AWS account alias set
24362
- # using the IAM console. We recommend that you use the related
24363
- # parameter instead of this filter.
24632
+ # (`amazon`). This is not the user-configured account alias set using
24633
+ # the IAM console. We recommend that you use the related parameter
24634
+ # instead of this filter.
24364
24635
  #
24365
- # * `owner-id` - The AWS account ID of the owner. We recommend that you
24366
- # use the related parameter instead of this filter.
24636
+ # * `owner-id` - The account ID of the owner. We recommend that you use
24637
+ # the related parameter instead of this filter.
24367
24638
  #
24368
24639
  # * `progress` - The progress of the snapshot, as a percentage (for
24369
24640
  # example, 80%).
@@ -24410,10 +24681,10 @@ module Aws::EC2
24410
24681
  #
24411
24682
  # @option params [Array<String>] :owner_ids
24412
24683
  # Scopes the results to snapshots with the specified owners. You can
24413
- # specify a combination of AWS account IDs, `self`, and `amazon`.
24684
+ # specify a combination of account IDs, `self`, and `amazon`.
24414
24685
  #
24415
24686
  # @option params [Array<String>] :restorable_by_user_ids
24416
- # The IDs of the AWS accounts that can create volumes from the snapshot.
24687
+ # The IDs of the accounts that can create volumes from the snapshot.
24417
24688
  #
24418
24689
  # @option params [Array<String>] :snapshot_ids
24419
24690
  # The snapshot IDs.
@@ -24963,6 +25234,12 @@ module Aws::EC2
24963
25234
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].associate_carrier_ip_address #=> Boolean
24964
25235
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].interface_type #=> String
24965
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
24966
25243
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.availability_zone #=> String
24967
25244
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.group_name #=> String
24968
25245
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.tenancy #=> String, one of "default", "dedicated", "host"
@@ -25320,6 +25597,12 @@ module Aws::EC2
25320
25597
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
25321
25598
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
25322
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
25323
25606
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
25324
25607
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
25325
25608
  # resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
@@ -25693,7 +25976,7 @@ module Aws::EC2
25693
25976
 
25694
25977
  # Describes one or more of your subnets.
25695
25978
  #
25696
- # 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
25697
25980
  # Virtual Private Cloud User Guide*.
25698
25981
  #
25699
25982
  #
@@ -25732,7 +26015,7 @@ module Aws::EC2
25732
26015
  #
25733
26016
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
25734
26017
  #
25735
- # * `owner-id` - The ID of the AWS account that owns the subnet.
26018
+ # * `owner-id` - The ID of the account that owns the subnet.
25736
26019
  #
25737
26020
  # * `state` - The state of the subnet (`pending` \| `available`).
25738
26021
  #
@@ -27139,8 +27422,8 @@ module Aws::EC2
27139
27422
  # check fails, the overall status is `impaired`. If the status is
27140
27423
  # `insufficient-data`, then the checks might still be taking place on
27141
27424
  # your volume at the time. We recommend that you retry the request. For
27142
- # more information about volume status, see [Monitoring the status of
27143
- # your volumes][1] in the *Amazon Elastic Compute Cloud User Guide*.
27425
+ # more information about volume status, see [Monitor the status of your
27426
+ # volumes][1] in the *Amazon Elastic Compute Cloud User Guide*.
27144
27427
  #
27145
27428
  # *Events*\: Reflect the cause of a volume status and might require you
27146
27429
  # to take action. For example, if your volume returns an `impaired`
@@ -27605,13 +27888,13 @@ module Aws::EC2
27605
27888
  # You can also use CloudWatch Events to check the status of a
27606
27889
  # modification to an EBS volume. For information about CloudWatch
27607
27890
  # Events, see the [Amazon CloudWatch Events User Guide][1]. For more
27608
- # information, see [Monitoring volume modifications][2] in the *Amazon
27609
- # Elastic Compute Cloud User Guide*.
27891
+ # information, see [Monitor the progress of volume modifications][2] in
27892
+ # the *Amazon Elastic Compute Cloud User Guide*.
27610
27893
  #
27611
27894
  #
27612
27895
  #
27613
27896
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/
27614
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html#monitoring_mods
27897
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-volume-modifications.html
27615
27898
  #
27616
27899
  # @option params [Boolean] :dry_run
27617
27900
  # Checks whether you have the required permissions for the action,
@@ -28464,8 +28747,8 @@ module Aws::EC2
28464
28747
  # * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the accepter
28465
28748
  # VPC.
28466
28749
  #
28467
- # * `accepter-vpc-info.owner-id` - The AWS account ID of the owner of
28468
- # the accepter VPC.
28750
+ # * `accepter-vpc-info.owner-id` - The ID of the account that owns the
28751
+ # accepter VPC.
28469
28752
  #
28470
28753
  # * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
28471
28754
  #
@@ -28475,8 +28758,8 @@ module Aws::EC2
28475
28758
  # * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
28476
28759
  # requester's VPC.
28477
28760
  #
28478
- # * `requester-vpc-info.owner-id` - The AWS account ID of the owner of
28479
- # the requester VPC.
28761
+ # * `requester-vpc-info.owner-id` - The ID of the account that owns the
28762
+ # requester VPC.
28480
28763
  #
28481
28764
  # * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
28482
28765
  #
@@ -28622,9 +28905,9 @@ module Aws::EC2
28622
28905
  # * `ipv6-cidr-block-association.state` - The state of an IPv6 CIDR
28623
28906
  # block associated with the VPC.
28624
28907
  #
28625
- # * `isDefault` - Indicates whether the VPC is the default VPC.
28908
+ # * `is-default` - Indicates whether the VPC is the default VPC.
28626
28909
  #
28627
- # * `owner-id` - The ID of the AWS account that owns the VPC.
28910
+ # * `owner-id` - The ID of the account that owns the VPC.
28628
28911
  #
28629
28912
  # * `state` - The state of the VPC (`pending` \| `available`).
28630
28913
  #
@@ -29161,10 +29444,10 @@ module Aws::EC2
29161
29444
  # root device of an instance, it can't be detached while the instance
29162
29445
  # is running. To detach the root volume, stop the instance first.
29163
29446
  #
29164
- # When a volume with an AWS Marketplace product code is detached from an
29447
+ # When a volume with an Marketplace product code is detached from an
29165
29448
  # instance, the product code is no longer associated with the instance.
29166
29449
  #
29167
- # For more information, see [Detaching an Amazon EBS volume][1] in the
29450
+ # For more information, see [Detach an Amazon EBS volume][1] in the
29168
29451
  # *Amazon Elastic Compute Cloud User Guide*.
29169
29452
  #
29170
29453
  #
@@ -29865,7 +30148,7 @@ module Aws::EC2
29865
30148
  #
29866
30149
  #
29867
30150
  #
29868
- # [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
29869
30152
  #
29870
30153
  # @option params [Boolean] :dry_run
29871
30154
  # Checks whether you have the required permissions for the action,
@@ -29935,7 +30218,7 @@ module Aws::EC2
29935
30218
  #
29936
30219
  # After you perform this action, the subnet no longer uses the routes in
29937
30220
  # the route table. Instead, it uses the routes in the VPC's main route
29938
- # table. For more information about route tables, see [Route Tables][1]
30221
+ # table. For more information about route tables, see [Route tables][1]
29939
30222
  # in the *Amazon Virtual Private Cloud User Guide*.
29940
30223
  #
29941
30224
  #
@@ -30212,12 +30495,12 @@ module Aws::EC2
30212
30495
  # Region.
30213
30496
  #
30214
30497
  # After you enable encryption by default, the EBS volumes that you
30215
- # create are always encrypted, either using the default CMK or the CMK
30216
- # that you specified when you created each volume. For more information,
30217
- # see [Amazon EBS encryption][1] in the *Amazon Elastic Compute Cloud
30218
- # User Guide*.
30498
+ # create are always encrypted, either using the default KMS key or the
30499
+ # KMS key that you specified when you created each volume. For more
30500
+ # information, see [Amazon EBS encryption][1] in the *Amazon Elastic
30501
+ # Compute Cloud User Guide*.
30219
30502
  #
30220
- # You can specify the default CMK for encryption by default using
30503
+ # You can specify the default KMS key for encryption by default using
30221
30504
  # ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.
30222
30505
  #
30223
30506
  # Enabling encryption by default has no effect on the encryption status
@@ -30282,7 +30565,7 @@ module Aws::EC2
30282
30565
  # @option params [required, Array<String>] :source_snapshot_ids
30283
30566
  # The IDs of one or more snapshots. For example,
30284
30567
  # `snap-1234567890abcdef0`. You can specify a snapshot that was shared
30285
- # with you from another AWS account.
30568
+ # with you from another account.
30286
30569
  #
30287
30570
  # @option params [Boolean] :dry_run
30288
30571
  # Checks whether you have the required permissions for the action,
@@ -31325,9 +31608,9 @@ module Aws::EC2
31325
31608
  req.send_request(options)
31326
31609
  end
31327
31610
 
31328
- # Describes the default customer master key (CMK) for EBS encryption by
31329
- # default for your account in this Region. You can change the default
31330
- # CMK for encryption by default using ModifyEbsDefaultKmsKeyId or
31611
+ # Describes the default KMS key for EBS encryption by default for your
31612
+ # account in this Region. You can change the default KMS key for
31613
+ # encryption by default using ModifyEbsDefaultKmsKeyId or
31331
31614
  # ResetEbsDefaultKmsKeyId.
31332
31615
  #
31333
31616
  # For more information, see [Amazon EBS encryption][1] in the *Amazon
@@ -31709,6 +31992,12 @@ module Aws::EC2
31709
31992
  # resp.launch_template_data.network_interfaces[0].secondary_private_ip_address_count #=> Integer
31710
31993
  # resp.launch_template_data.network_interfaces[0].subnet_id #=> String
31711
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
31712
32001
  # resp.launch_template_data.image_id #=> String
31713
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"
31714
32003
  # resp.launch_template_data.key_name #=> String
@@ -32063,6 +32352,97 @@ module Aws::EC2
32063
32352
  req.send_request(options)
32064
32353
  end
32065
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
+
32066
32446
  # Lists the route tables to which the specified resource attachment
32067
32447
  # propagates routes.
32068
32448
  #
@@ -33530,18 +33910,20 @@ module Aws::EC2
33530
33910
  req.send_request(options)
33531
33911
  end
33532
33912
 
33533
- # Changes the default customer master key (CMK) for EBS encryption by
33534
- # default for your account in this Region.
33913
+ # Changes the default KMS key for EBS encryption by default for your
33914
+ # account in this Region.
33535
33915
  #
33536
- # AWS creates a unique AWS managed CMK in each Region for use with
33537
- # encryption by default. If you change the default CMK to a symmetric
33538
- # customer managed CMK, it is used instead of the AWS managed CMK. To
33539
- # reset the default CMK to the AWS managed CMK for EBS, use
33540
- # ResetEbsDefaultKmsKeyId. Amazon EBS does not support asymmetric CMKs.
33916
+ # Amazon Web Services creates a unique Amazon Web Services managed KMS
33917
+ # key in each Region for use with encryption by default. If you change
33918
+ # the default KMS key to a symmetric customer managed KMS key, it is
33919
+ # used instead of the Amazon Web Services managed KMS key. To reset the
33920
+ # default KMS key to the Amazon Web Services managed KMS key for EBS,
33921
+ # use ResetEbsDefaultKmsKeyId. Amazon EBS does not support asymmetric
33922
+ # KMS keys.
33541
33923
  #
33542
- # If you delete or disable the customer managed CMK that you specified
33543
- # for use with encryption by default, your instances will fail to
33544
- # launch.
33924
+ # If you delete or disable the customer managed KMS key that you
33925
+ # specified for use with encryption by default, your instances will fail
33926
+ # to launch.
33545
33927
  #
33546
33928
  # For more information, see [Amazon EBS encryption][1] in the *Amazon
33547
33929
  # Elastic Compute Cloud User Guide*.
@@ -33551,12 +33933,12 @@ module Aws::EC2
33551
33933
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
33552
33934
  #
33553
33935
  # @option params [required, String] :kms_key_id
33554
- # The identifier of the AWS Key Management Service (AWS KMS) customer
33555
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
33556
- # is not specified, your AWS managed CMK for EBS is used. If `KmsKeyId`
33557
- # is specified, the encrypted state must be `true`.
33936
+ # The identifier of the Key Management Service (KMS) KMS key to use for
33937
+ # Amazon EBS encryption. If this parameter is not specified, your KMS
33938
+ # key for Amazon EBS is used. If `KmsKeyId` is specified, the encrypted
33939
+ # state must be `true`.
33558
33940
  #
33559
- # You can specify the CMK using any of the following:
33941
+ # You can specify the KMS key using any of the following:
33560
33942
  #
33561
33943
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
33562
33944
  #
@@ -33568,11 +33950,11 @@ module Aws::EC2
33568
33950
  # * Alias ARN. For example,
33569
33951
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
33570
33952
  #
33571
- # AWS authenticates the CMK asynchronously. Therefore, if you specify an
33572
- # ID, alias, or ARN that is not valid, the action can appear to
33573
- # complete, but eventually fails.
33953
+ # Amazon Web Services authenticates the KMS key asynchronously.
33954
+ # Therefore, if you specify an ID, alias, or ARN that is not valid, the
33955
+ # action can appear to complete, but eventually fails.
33574
33956
  #
33575
- # Amazon EBS does not support asymmetric CMKs.
33957
+ # Amazon EBS does not support asymmetric KMS keys.
33576
33958
  #
33577
33959
  # @option params [Boolean] :dry_run
33578
33960
  # Checks whether you have the required permissions for the action,
@@ -34564,7 +34946,7 @@ module Aws::EC2
34564
34946
  #
34565
34947
  #
34566
34948
  #
34567
- # [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
34568
34950
  #
34569
34951
  # @option params [Boolean] :dry_run
34570
34952
  # Checks whether you have the required permissions for the action,
@@ -35229,19 +35611,18 @@ module Aws::EC2
35229
35611
  end
35230
35612
 
35231
35613
  # Adds or removes permission settings for the specified snapshot. You
35232
- # may add or remove specified AWS account IDs from a snapshot's list of
35614
+ # may add or remove specified account IDs from a snapshot's list of
35233
35615
  # create volume permissions, but you cannot do both in a single
35234
35616
  # operation. If you need to both add and remove account IDs for a
35235
35617
  # snapshot, you must use multiple operations. You can make up to 500
35236
35618
  # modifications to a snapshot in a single operation.
35237
35619
  #
35238
- # Encrypted snapshots and snapshots with AWS Marketplace product codes
35239
- # cannot be made public. Snapshots encrypted with your default CMK
35620
+ # Encrypted snapshots and snapshots with Marketplace product codes
35621
+ # cannot be made public. Snapshots encrypted with your default KMS key
35240
35622
  # cannot be shared with other accounts.
35241
35623
  #
35242
- # For more information about modifying snapshot permissions, see
35243
- # [Sharing snapshots][1] in the *Amazon Elastic Compute Cloud User
35244
- # Guide*.
35624
+ # For more information about modifying snapshot permissions, see [Share
35625
+ # a snapshot][1] in the *Amazon Elastic Compute Cloud User Guide*.
35245
35626
  #
35246
35627
  #
35247
35628
  #
@@ -36041,45 +36422,38 @@ module Aws::EC2
36041
36422
  # volume size, volume type, and IOPS capacity. If your EBS volume is
36042
36423
  # attached to a current-generation EC2 instance type, you might be able
36043
36424
  # to apply these changes without stopping the instance or detaching the
36044
- # volume from it. For more information about modifying an EBS volume
36045
- # running Linux, see [Modifying the size, IOPS, or type of an EBS volume
36046
- # on Linux][1]. For more information about modifying an EBS volume
36047
- # running Windows, see [Modifying the size, IOPS, or type of an EBS
36048
- # volume on Windows][2].
36425
+ # volume from it. For more information about modifying EBS volumes, see
36426
+ # [Amazon EBS Elastic Volumes][1] (Linux instances) or [Amazon EBS
36427
+ # Elastic Volumes][2] (Windows instances).
36049
36428
  #
36050
36429
  # When you complete a resize operation on your volume, you need to
36051
36430
  # extend the volume's file-system size to take advantage of the new
36052
- # storage capacity. For information about extending a Linux file system,
36053
- # see [Extending a Linux file system][3]. For information about
36054
- # extending a Windows file system, see [Extending a Windows file
36055
- # system][4].
36431
+ # storage capacity. For more information, see [Extend a Linux file
36432
+ # system][3] or [Extend a Windows file system][4].
36056
36433
  #
36057
36434
  # You can use CloudWatch Events to check the status of a modification to
36058
36435
  # an EBS volume. For information about CloudWatch Events, see the
36059
36436
  # [Amazon CloudWatch Events User Guide][5]. You can also track the
36060
36437
  # status of a modification using DescribeVolumesModifications. For
36061
36438
  # information about tracking status changes using either method, see
36062
- # [Monitoring volume modifications][6].
36439
+ # [Monitor the progress of volume modifications][6].
36063
36440
  #
36064
36441
  # With previous-generation instance types, resizing an EBS volume might
36065
36442
  # require detaching and reattaching the volume or stopping and
36066
- # restarting the instance. For more information, see [Amazon EBS Elastic
36067
- # Volumes][7] (Linux) or [Amazon EBS Elastic Volumes][8] (Windows).
36443
+ # restarting the instance.
36068
36444
  #
36069
36445
  # If you reach the maximum volume modification rate per volume limit,
36070
- # you will need to wait at least six hours before applying further
36071
- # modifications to the affected EBS volume.
36446
+ # you must wait at least six hours before applying further modifications
36447
+ # to the affected EBS volume.
36072
36448
  #
36073
36449
  #
36074
36450
  #
36075
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html
36076
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ebs-expand-volume.html
36451
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-modify-volume.html
36452
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ebs-modify-volume.html
36077
36453
  # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html#recognize-expanded-volume-linux
36078
36454
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ebs-expand-volume.html#recognize-expanded-volume-windows
36079
36455
  # [5]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/
36080
- # [6]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html#monitoring_mods
36081
- # [7]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-modify-volume.html
36082
- # [8]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ebs-modify-volume.html
36456
+ # [6]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-volume-modifications.html
36083
36457
  #
36084
36458
  # @option params [Boolean] :dry_run
36085
36459
  # Checks whether you have the required permissions for the action,
@@ -36104,14 +36478,14 @@ module Aws::EC2
36104
36478
  #
36105
36479
  # * `standard`\: 1-1,024
36106
36480
  #
36107
- # Default: If no size is specified, the existing size is retained.
36481
+ # Default: The existing size is retained.
36108
36482
  #
36109
36483
  # @option params [String] :volume_type
36110
36484
  # The target EBS volume type of the volume. For more information, see
36111
36485
  # [Amazon EBS volume types][1] in the *Amazon Elastic Compute Cloud User
36112
36486
  # Guide*.
36113
36487
  #
36114
- # Default: If no type is specified, the existing type is retained.
36488
+ # Default: The existing type is retained.
36115
36489
  #
36116
36490
  #
36117
36491
  #
@@ -36129,16 +36503,16 @@ module Aws::EC2
36129
36503
  #
36130
36504
  # * `io2`\: 100-64,000 IOPS
36131
36505
  #
36132
- # Default: If no IOPS value is specified, the existing value is
36133
- # retained, unless a volume type is modified that supports different
36134
- # values.
36506
+ # Default: The existing value is retained if you keep the same volume
36507
+ # type. If you change the volume type to `io1`, `io2`, or `gp3`, the
36508
+ # default is 3,000.
36135
36509
  #
36136
36510
  # @option params [Integer] :throughput
36137
36511
  # The target throughput of the volume, in MiB/s. This parameter is valid
36138
36512
  # only for `gp3` volumes. The maximum value is 1,000.
36139
36513
  #
36140
- # Default: If no throughput value is specified, the existing value is
36141
- # retained.
36514
+ # Default: The existing value is retained if the source and target
36515
+ # volume type is `gp3`. Otherwise, the default value is 125.
36142
36516
  #
36143
36517
  # Valid Range: Minimum value of 125. Maximum value of 1000.
36144
36518
  #
@@ -36626,12 +37000,12 @@ module Aws::EC2
36626
37000
  # * Enable/disable the ability to resolve public DNS hostnames to
36627
37001
  # private IP addresses when queried from instances in the peer VPC.
36628
37002
  #
36629
- # 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
36630
37004
  # resolution for queries from the local VPC. This ensures that queries
36631
37005
  # from the local VPC resolve to private IP addresses in the peer VPC.
36632
- # This option is not available if the peered VPCs are in different AWS
36633
- # accounts or different Regions. For peered VPCs in different AWS
36634
- # 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
36635
37009
  # modify the peering connection options. For inter-region peering
36636
37010
  # connections, you must use the Region for the requester VPC to modify
36637
37011
  # the requester VPC peering options and the Region for the accepter VPC
@@ -38781,7 +39155,7 @@ module Aws::EC2
38781
39155
  # gateway, NAT instance, NAT gateway, VPC peering connection, network
38782
39156
  # interface, egress-only internet gateway, or transit gateway.
38783
39157
  #
38784
- # For more information, see [Route Tables][1] in the *Amazon Virtual
39158
+ # For more information, see [Route tables][1] in the *Amazon Virtual
38785
39159
  # Private Cloud User Guide*.
38786
39160
  #
38787
39161
  #
@@ -38892,7 +39266,7 @@ module Aws::EC2
38892
39266
  # Changes the route table associated with a given subnet, internet
38893
39267
  # gateway, or virtual private gateway in a VPC. After the operation
38894
39268
  # completes, the subnet or gateway uses the routes in the new route
38895
- # table. For more information about route tables, see [Route Tables][1]
39269
+ # table. For more information about route tables, see [Route tables][1]
38896
39270
  # in the *Amazon Virtual Private Cloud User Guide*.
38897
39271
  #
38898
39272
  # You can also use this operation to change which table is the main
@@ -39376,6 +39750,18 @@ module Aws::EC2
39376
39750
  # associate_carrier_ip_address: false,
39377
39751
  # interface_type: "String",
39378
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,
39379
39765
  # },
39380
39766
  # ],
39381
39767
  # placement: {
@@ -39711,6 +40097,18 @@ module Aws::EC2
39711
40097
  # associate_carrier_ip_address: false,
39712
40098
  # interface_type: "String",
39713
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,
39714
40112
  # },
39715
40113
  # ],
39716
40114
  # placement: {
@@ -39796,6 +40194,12 @@ module Aws::EC2
39796
40194
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
39797
40195
  # resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
39798
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
39799
40203
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
39800
40204
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
39801
40205
  # resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
@@ -39876,13 +40280,14 @@ module Aws::EC2
39876
40280
  req.send_request(options)
39877
40281
  end
39878
40282
 
39879
- # Resets the default customer master key (CMK) for EBS encryption for
39880
- # your account in this Region to the AWS managed CMK for EBS.
40283
+ # Resets the default KMS key for EBS encryption for your account in this
40284
+ # Region to the Amazon Web Services managed KMS key for EBS.
39881
40285
  #
39882
- # After resetting the default CMK to the AWS managed CMK, you can
39883
- # continue to encrypt by a customer managed CMK by specifying it when
39884
- # you create the volume. For more information, see [Amazon EBS
39885
- # encryption][1] in the *Amazon Elastic Compute Cloud User Guide*.
40286
+ # After resetting the default KMS key to the Amazon Web Services managed
40287
+ # KMS key, you can continue to encrypt by a customer managed KMS key by
40288
+ # specifying it when you create the volume. For more information, see
40289
+ # [Amazon EBS encryption][1] in the *Amazon Elastic Compute Cloud User
40290
+ # Guide*.
39886
40291
  #
39887
40292
  #
39888
40293
  #
@@ -40110,9 +40515,8 @@ module Aws::EC2
40110
40515
 
40111
40516
  # Resets permission settings for the specified snapshot.
40112
40517
  #
40113
- # For more information about modifying snapshot permissions, see
40114
- # [Sharing snapshots][1] in the *Amazon Elastic Compute Cloud User
40115
- # Guide*.
40518
+ # For more information about modifying snapshot permissions, see [Share
40519
+ # a snapshot][1] in the *Amazon Elastic Compute Cloud User Guide*.
40116
40520
  #
40117
40521
  #
40118
40522
  #
@@ -41187,6 +41591,18 @@ module Aws::EC2
41187
41591
  # associate_carrier_ip_address: false,
41188
41592
  # interface_type: "String",
41189
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,
41190
41606
  # },
41191
41607
  # ],
41192
41608
  # private_ip_address: "String",
@@ -41354,6 +41770,10 @@ module Aws::EC2
41354
41770
  # resp.instances[0].network_interfaces[0].subnet_id #=> String
41355
41771
  # resp.instances[0].network_interfaces[0].vpc_id #=> String
41356
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
41357
41777
  # resp.instances[0].outpost_arn #=> String
41358
41778
  # resp.instances[0].root_device_name #=> String
41359
41779
  # resp.instances[0].root_device_type #=> String, one of "ebs", "instance-store"
@@ -42017,8 +42437,8 @@ module Aws::EC2
42017
42437
  #
42018
42438
  # @option params [required, String] :client_token
42019
42439
  # Unique, case-sensitive identifier that you provide to ensure the
42020
- # idempotency of the request. For more information, see [How to Ensure
42021
- # Idempotency][1].
42440
+ # idempotency of the request. For more information, see [How to ensure
42441
+ # idempotency][1].
42022
42442
  #
42023
42443
  # **A suitable default value is auto-generated.** You should normally
42024
42444
  # not need to pass this option.**
@@ -42674,24 +43094,31 @@ module Aws::EC2
42674
43094
  req.send_request(options)
42675
43095
  end
42676
43096
 
42677
- # 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.
42678
43106
  #
42679
43107
  # @option params [required, String] :network_interface_id
42680
43108
  # The ID of the network interface.
42681
43109
  #
42682
- # @option params [required, Array<String>] :ipv_6_addresses
42683
- # The IPv6 addresses to unassign from the network interface.
42684
- #
42685
43110
  # @return [Types::UnassignIpv6AddressesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
42686
43111
  #
42687
43112
  # * {Types::UnassignIpv6AddressesResult#network_interface_id #network_interface_id} => String
42688
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;
42689
43115
  #
42690
43116
  # @example Request syntax with placeholder values
42691
43117
  #
42692
43118
  # resp = client.unassign_ipv_6_addresses({
43119
+ # ipv_6_addresses: ["String"],
43120
+ # ipv_6_prefixes: ["String"],
42693
43121
  # network_interface_id: "NetworkInterfaceId", # required
42694
- # ipv_6_addresses: ["String"], # required
42695
43122
  # })
42696
43123
  #
42697
43124
  # @example Response structure
@@ -42699,6 +43126,8 @@ module Aws::EC2
42699
43126
  # resp.network_interface_id #=> String
42700
43127
  # resp.unassigned_ipv_6_addresses #=> Array
42701
43128
  # resp.unassigned_ipv_6_addresses[0] #=> String
43129
+ # resp.unassigned_ipv_6_prefixes #=> Array
43130
+ # resp.unassigned_ipv_6_prefixes[0] #=> String
42702
43131
  #
42703
43132
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6Addresses AWS API Documentation
42704
43133
  #
@@ -42709,17 +43138,21 @@ module Aws::EC2
42709
43138
  req.send_request(options)
42710
43139
  end
42711
43140
 
42712
- # Unassigns one or more secondary private IP addresses from a network
42713
- # interface.
43141
+ # Unassigns one or more secondary private IP addresses, or IPv4 Prefix
43142
+ # Delegation prefixes from a network interface.
42714
43143
  #
42715
43144
  # @option params [required, String] :network_interface_id
42716
43145
  # The ID of the network interface.
42717
43146
  #
42718
- # @option params [required, Array<String>] :private_ip_addresses
43147
+ # @option params [Array<String>] :private_ip_addresses
42719
43148
  # The secondary private IP addresses to unassign from the network
42720
43149
  # interface. You can specify this option multiple times to unassign more
42721
43150
  # than one IP address.
42722
43151
  #
43152
+ # @option params [Array<String>] :ipv_4_prefixes
43153
+ # The IPv4 Prefix Delegation prefixes to unassign from the network
43154
+ # interface.
43155
+ #
42723
43156
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
42724
43157
  #
42725
43158
  #
@@ -42738,7 +43171,8 @@ module Aws::EC2
42738
43171
  #
42739
43172
  # resp = client.unassign_private_ip_addresses({
42740
43173
  # network_interface_id: "NetworkInterfaceId", # required
42741
- # private_ip_addresses: ["String"], # required
43174
+ # private_ip_addresses: ["String"],
43175
+ # ipv_4_prefixes: ["String"],
42742
43176
  # })
42743
43177
  #
42744
43178
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddresses AWS API Documentation
@@ -43098,7 +43532,7 @@ module Aws::EC2
43098
43532
  params: params,
43099
43533
  config: config)
43100
43534
  context[:gem_name] = 'aws-sdk-ec2'
43101
- context[:gem_version] = '1.249.0'
43535
+ context[:gem_version] = '1.251.0'
43102
43536
  Seahorse::Client::Request.new(handlers, context)
43103
43537
  end
43104
43538