aws-sdk-ec2 1.480.0 → 1.482.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: 13a9557c015f2014711d6197e04e57565fb99127be1e1517b66ae4fe3f211993
4
- data.tar.gz: 51dc6363ded214a79125b8d187482d4d0f005a5757b7b71a8b83f8ff5e57ee01
3
+ metadata.gz: 9a8ba711a72e6c6af643a163f00f3ad1a483bd1017a258743b2c6b4b07e88fb3
4
+ data.tar.gz: 7c289a2f1aea597400cc4b4aa64bb58da84db16c2f07401a655952f0f5cb9e01
5
5
  SHA512:
6
- metadata.gz: c1120c5ea49fa8d2b41dca560ec71a0e579b40a33fd30b1fdb52f028f08c07b099a45f911f08c8f2fbd360fd01fa4e30020cca1a9b93d03b6fae2bf3a78f5eac
7
- data.tar.gz: 0d97f56aa8c2e1fa81d11e3d939716926753786be3524b690ec3452968016e387f8c150425d598cf3521fdc94a857ec2c2d6a4e9540b67a0fba14e28933e601a
6
+ metadata.gz: 2593987279da20b81312ca0b96ee1562fc767a85a125633cee7125922a95b80e63802eeedbe3b3455039ee19906e71b7928057cfb47568d5c7351f0885cb71d6
7
+ data.tar.gz: 743068aec54cbb00ea135457ffe3bc58529e80bd8048ab0a8808adea7f1371b6b965bfcb135629d5fe2d1f6065f32bc5c2045703da3d66cd4af69b416973792e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.482.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - RequestSpotInstances and RequestSpotFleet feature release.
8
+
9
+ 1.481.0 (2024-10-10)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for assigning the billing of shared Amazon EC2 On-Demand Capacity Reservations.
13
+
4
14
  1.480.0 (2024-10-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.480.0
1
+ 1.482.0
@@ -515,6 +515,47 @@ module Aws::EC2
515
515
  req.send_request(options)
516
516
  end
517
517
 
518
+ # Accepts a request to assign billing of the available capacity of a
519
+ # shared Capacity Reservation to your account. For more information, see
520
+ # [ Billing assignment for shared Amazon EC2 Capacity Reservations][1].
521
+ #
522
+ #
523
+ #
524
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/assign-billing.html
525
+ #
526
+ # @option params [Boolean] :dry_run
527
+ # Checks whether you have the required permissions for the action,
528
+ # without actually making the request, and provides an error response.
529
+ # If you have the required permissions, the error response is
530
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
531
+ #
532
+ # @option params [required, String] :capacity_reservation_id
533
+ # The ID of the Capacity Reservation for which to accept the request.
534
+ #
535
+ # @return [Types::AcceptCapacityReservationBillingOwnershipResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
536
+ #
537
+ # * {Types::AcceptCapacityReservationBillingOwnershipResult#return #return} => Boolean
538
+ #
539
+ # @example Request syntax with placeholder values
540
+ #
541
+ # resp = client.accept_capacity_reservation_billing_ownership({
542
+ # dry_run: false,
543
+ # capacity_reservation_id: "CapacityReservationId", # required
544
+ # })
545
+ #
546
+ # @example Response structure
547
+ #
548
+ # resp.return #=> Boolean
549
+ #
550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptCapacityReservationBillingOwnership AWS API Documentation
551
+ #
552
+ # @overload accept_capacity_reservation_billing_ownership(params = {})
553
+ # @param [Hash] params ({})
554
+ def accept_capacity_reservation_billing_ownership(params = {}, options = {})
555
+ req = build_request(:accept_capacity_reservation_billing_ownership, params)
556
+ req.send_request(options)
557
+ end
558
+
518
559
  # Accepts the Convertible Reserved Instance exchange quote described in
519
560
  # the GetReservedInstancesExchangeQuote call.
520
561
  #
@@ -1586,7 +1627,7 @@ module Aws::EC2
1586
1627
  #
1587
1628
  #
1588
1629
  #
1589
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
1630
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-working-with
1590
1631
  #
1591
1632
  # @option params [required, String] :nat_gateway_id
1592
1633
  # The ID of the NAT gateway.
@@ -1762,6 +1803,53 @@ module Aws::EC2
1762
1803
  req.send_request(options)
1763
1804
  end
1764
1805
 
1806
+ # Initiates a request to assign billing of the unused capacity of a
1807
+ # shared Capacity Reservation to a consumer account that is consolidated
1808
+ # under the same Amazon Web Services organizations payer account. For
1809
+ # more information, see [Billing assignment for shared Amazon EC2
1810
+ # Capacity Reservations][1].
1811
+ #
1812
+ #
1813
+ #
1814
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/assign-billing.html
1815
+ #
1816
+ # @option params [Boolean] :dry_run
1817
+ # Checks whether you have the required permissions for the action,
1818
+ # without actually making the request, and provides an error response.
1819
+ # If you have the required permissions, the error response is
1820
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
1821
+ #
1822
+ # @option params [required, String] :capacity_reservation_id
1823
+ # The ID of the Capacity Reservation.
1824
+ #
1825
+ # @option params [required, String] :unused_reservation_billing_owner_id
1826
+ # The ID of the consumer account to which assign billing.
1827
+ #
1828
+ # @return [Types::AssociateCapacityReservationBillingOwnerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1829
+ #
1830
+ # * {Types::AssociateCapacityReservationBillingOwnerResult#return #return} => Boolean
1831
+ #
1832
+ # @example Request syntax with placeholder values
1833
+ #
1834
+ # resp = client.associate_capacity_reservation_billing_owner({
1835
+ # dry_run: false,
1836
+ # capacity_reservation_id: "CapacityReservationId", # required
1837
+ # unused_reservation_billing_owner_id: "AccountID", # required
1838
+ # })
1839
+ #
1840
+ # @example Response structure
1841
+ #
1842
+ # resp.return #=> Boolean
1843
+ #
1844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateCapacityReservationBillingOwner AWS API Documentation
1845
+ #
1846
+ # @overload associate_capacity_reservation_billing_owner(params = {})
1847
+ # @param [Hash] params ({})
1848
+ def associate_capacity_reservation_billing_owner(params = {}, options = {})
1849
+ req = build_request(:associate_capacity_reservation_billing_owner, params)
1850
+ req.send_request(options)
1851
+ end
1852
+
1765
1853
  # Associates a target network with a Client VPN endpoint. A target
1766
1854
  # network is a subnet in a VPC. You can associate multiple subnets from
1767
1855
  # the same VPC with a Client VPN endpoint. You can associate only one
@@ -2255,9 +2343,9 @@ module Aws::EC2
2255
2343
  #
2256
2344
  #
2257
2345
  #
2258
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
2346
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-working-with
2259
2347
  # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html#vpc-limits-eips
2260
- # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/WorkWithEIPs.html
2348
+ # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#allocate-eip
2261
2349
  #
2262
2350
  # @option params [required, String] :nat_gateway_id
2263
2351
  # The ID of the NAT gateway.
@@ -5140,6 +5228,7 @@ module Aws::EC2
5140
5228
  # resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
5141
5229
  # resp.capacity_reservation.capacity_allocations[0].count #=> Integer
5142
5230
  # resp.capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
5231
+ # resp.capacity_reservation.unused_reservation_billing_owner_id #=> String
5143
5232
  #
5144
5233
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservation AWS API Documentation
5145
5234
  #
@@ -5240,6 +5329,7 @@ module Aws::EC2
5240
5329
  # resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
5241
5330
  # resp.source_capacity_reservation.capacity_allocations[0].count #=> Integer
5242
5331
  # resp.source_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
5332
+ # resp.source_capacity_reservation.unused_reservation_billing_owner_id #=> String
5243
5333
  # resp.destination_capacity_reservation.capacity_reservation_id #=> String
5244
5334
  # resp.destination_capacity_reservation.owner_id #=> String
5245
5335
  # resp.destination_capacity_reservation.capacity_reservation_arn #=> String
@@ -5268,6 +5358,7 @@ module Aws::EC2
5268
5358
  # resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
5269
5359
  # resp.destination_capacity_reservation.capacity_allocations[0].count #=> Integer
5270
5360
  # resp.destination_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
5361
+ # resp.destination_capacity_reservation.unused_reservation_billing_owner_id #=> String
5271
5362
  # resp.instance_count #=> Integer
5272
5363
  #
5273
5364
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationBySplitting AWS API Documentation
@@ -6066,7 +6157,7 @@ module Aws::EC2
6066
6157
  #
6067
6158
  #
6068
6159
  #
6069
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/work-with-default-vpc.html#create-default-subnet
6160
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/default-vpc.html#create-default-subnet
6070
6161
  #
6071
6162
  # @option params [required, String] :availability_zone
6072
6163
  # The Availability Zone in which to create the default subnet.
@@ -6833,7 +6924,7 @@ module Aws::EC2
6833
6924
  #
6834
6925
  #
6835
6926
  #
6836
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-log-records.html
6927
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records
6837
6928
  # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html
6838
6929
  #
6839
6930
  # @option params [Boolean] :dry_run
@@ -6929,7 +7020,7 @@ module Aws::EC2
6929
7020
  #
6930
7021
  #
6931
7022
  #
6932
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-log-records.html
7023
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records
6933
7024
  # [2]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-flow-logs.html#flow-log-records
6934
7025
  #
6935
7026
  # @option params [Array<Types::TagSpecification>] :tag_specifications
@@ -9710,7 +9801,7 @@ module Aws::EC2
9710
9801
  #
9711
9802
  #
9712
9803
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html
9713
- # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/WorkWithEIPs.html
9804
+ # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#allocate-eip
9714
9805
  #
9715
9806
  # @option params [String] :allocation_id
9716
9807
  # \[Public NAT gateways only\] The allocation ID of an Elastic IP
@@ -9760,7 +9851,7 @@ module Aws::EC2
9760
9851
  #
9761
9852
  #
9762
9853
  #
9763
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9854
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9764
9855
  #
9765
9856
  # @option params [Array<String>] :secondary_private_ip_addresses
9766
9857
  # Secondary private IPv4 addresses. For more information about secondary
@@ -9769,7 +9860,7 @@ module Aws::EC2
9769
9860
  #
9770
9861
  #
9771
9862
  #
9772
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9863
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9773
9864
  #
9774
9865
  # @option params [Integer] :secondary_private_ip_address_count
9775
9866
  # \[Private NAT gateway only\] The number of secondary private IPv4
@@ -9779,7 +9870,7 @@ module Aws::EC2
9779
9870
  #
9780
9871
  #
9781
9872
  #
9782
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9873
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9783
9874
  #
9784
9875
  # @return [Types::CreateNatGatewayResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9785
9876
  #
@@ -12410,14 +12501,13 @@ module Aws::EC2
12410
12501
  end
12411
12502
 
12412
12503
  # Creates a subnet CIDR reservation. For more information, see [Subnet
12413
- # CIDR reservations][1] in the *Amazon VPC User Guide* and [Manage
12414
- # prefixes for your network interfaces][2] in the *Amazon EC2 User
12415
- # Guide*.
12504
+ # CIDR reservations][1] in the *Amazon VPC User Guide* and [Assign
12505
+ # prefixes to network interfaces][2] in the *Amazon EC2 User Guide*.
12416
12506
  #
12417
12507
  #
12418
12508
  #
12419
12509
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/subnet-cidr-reservation.html
12420
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/work-with-prefixes.html
12510
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-eni.html
12421
12511
  #
12422
12512
  # @option params [required, String] :subnet_id
12423
12513
  # The ID of the subnet.
@@ -19061,10 +19151,7 @@ module Aws::EC2
19061
19151
  # delete all security groups associated with the VPC (except the default
19062
19152
  # one), delete all route tables associated with the VPC (except the
19063
19153
  # default one), and so on. When you delete the VPC, it deletes the
19064
- # default security group, network ACL, and route table for the VPC.
19065
- #
19066
- # If you created a flow log for the VPC that you are deleting, note that
19067
- # flow logs for deleted VPCs are eventually automatically removed.
19154
+ # VPC's default security group, network ACL, and route table.
19068
19155
  #
19069
19156
  # @option params [required, String] :vpc_id
19070
19157
  # The ID of the VPC.
@@ -20702,6 +20789,107 @@ module Aws::EC2
20702
20789
  req.send_request(options)
20703
20790
  end
20704
20791
 
20792
+ # Describes a request to assign the billing of the unused capacity of a
20793
+ # Capacity Reservation. For more information, see [ Billing assignment
20794
+ # for shared Amazon EC2 Capacity Reservations][1].
20795
+ #
20796
+ #
20797
+ #
20798
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/transfer-billing.html
20799
+ #
20800
+ # @option params [Array<String>] :capacity_reservation_ids
20801
+ # The ID of the Capacity Reservation.
20802
+ #
20803
+ # @option params [required, String] :role
20804
+ # Specify one of the following:
20805
+ #
20806
+ # * `odcr-owner` - If you are the Capacity Reservation owner, specify
20807
+ # this value to view requests that you have initiated. Not supported
20808
+ # with the `requested-by` filter.
20809
+ #
20810
+ # * `unused-reservation-billing-owner` - If you are the consumer
20811
+ # account, specify this value to view requests that have been sent to
20812
+ # you. Not supported with the `unused-reservation-billing-owner`
20813
+ # filter.
20814
+ #
20815
+ # @option params [String] :next_token
20816
+ # The token to use to retrieve the next page of results.
20817
+ #
20818
+ # @option params [Integer] :max_results
20819
+ # The maximum number of items to return for this request. To get the
20820
+ # next page of items, make another request with the token returned in
20821
+ # the output. For more information, see [Pagination][1].
20822
+ #
20823
+ #
20824
+ #
20825
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
20826
+ #
20827
+ # @option params [Array<Types::Filter>] :filters
20828
+ # One or more filters.
20829
+ #
20830
+ # * `status` - The state of the request (`pending` \| `accepted` \|
20831
+ # `rejected` \| `cancelled` \| `revoked` \| `expired`).
20832
+ #
20833
+ # * `requested-by` - The account ID of the Capacity Reservation owner
20834
+ # that initiated the request. Not supported if you specify
20835
+ # `requested-by` for **Role**.
20836
+ #
20837
+ # * `unused-reservation-billing-owner` - The ID of the consumer account
20838
+ # to which the request was sent. Not supported if you specify
20839
+ # `unused-reservation-billing-owner` for **Role**.
20840
+ #
20841
+ # @option params [Boolean] :dry_run
20842
+ # Checks whether you have the required permissions for the action,
20843
+ # without actually making the request, and provides an error response.
20844
+ # If you have the required permissions, the error response is
20845
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
20846
+ #
20847
+ # @return [Types::DescribeCapacityReservationBillingRequestsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
20848
+ #
20849
+ # * {Types::DescribeCapacityReservationBillingRequestsResult#next_token #next_token} => String
20850
+ # * {Types::DescribeCapacityReservationBillingRequestsResult#capacity_reservation_billing_requests #capacity_reservation_billing_requests} => Array&lt;Types::CapacityReservationBillingRequest&gt;
20851
+ #
20852
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
20853
+ #
20854
+ # @example Request syntax with placeholder values
20855
+ #
20856
+ # resp = client.describe_capacity_reservation_billing_requests({
20857
+ # capacity_reservation_ids: ["CapacityReservationId"],
20858
+ # role: "odcr-owner", # required, accepts odcr-owner, unused-reservation-billing-owner
20859
+ # next_token: "String",
20860
+ # max_results: 1,
20861
+ # filters: [
20862
+ # {
20863
+ # name: "String",
20864
+ # values: ["String"],
20865
+ # },
20866
+ # ],
20867
+ # dry_run: false,
20868
+ # })
20869
+ #
20870
+ # @example Response structure
20871
+ #
20872
+ # resp.next_token #=> String
20873
+ # resp.capacity_reservation_billing_requests #=> Array
20874
+ # resp.capacity_reservation_billing_requests[0].capacity_reservation_id #=> String
20875
+ # resp.capacity_reservation_billing_requests[0].requested_by #=> String
20876
+ # resp.capacity_reservation_billing_requests[0].unused_reservation_billing_owner_id #=> String
20877
+ # resp.capacity_reservation_billing_requests[0].last_update_time #=> Time
20878
+ # resp.capacity_reservation_billing_requests[0].status #=> String, one of "pending", "accepted", "rejected", "cancelled", "revoked", "expired"
20879
+ # resp.capacity_reservation_billing_requests[0].status_message #=> String
20880
+ # resp.capacity_reservation_billing_requests[0].capacity_reservation_info.instance_type #=> String
20881
+ # resp.capacity_reservation_billing_requests[0].capacity_reservation_info.availability_zone #=> String
20882
+ # resp.capacity_reservation_billing_requests[0].capacity_reservation_info.tenancy #=> String, one of "default", "dedicated"
20883
+ #
20884
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationBillingRequests AWS API Documentation
20885
+ #
20886
+ # @overload describe_capacity_reservation_billing_requests(params = {})
20887
+ # @param [Hash] params ({})
20888
+ def describe_capacity_reservation_billing_requests(params = {}, options = {})
20889
+ req = build_request(:describe_capacity_reservation_billing_requests, params)
20890
+ req.send_request(options)
20891
+ end
20892
+
20705
20893
  # Describes one or more Capacity Reservation Fleets.
20706
20894
  #
20707
20895
  # @option params [Array<String>] :capacity_reservation_fleet_ids
@@ -20966,6 +21154,7 @@ module Aws::EC2
20966
21154
  # resp.capacity_reservations[0].capacity_allocations[0].allocation_type #=> String, one of "used"
20967
21155
  # resp.capacity_reservations[0].capacity_allocations[0].count #=> Integer
20968
21156
  # resp.capacity_reservations[0].reservation_type #=> String, one of "default", "capacity-block"
21157
+ # resp.capacity_reservations[0].unused_reservation_billing_owner_id #=> String
20969
21158
  #
20970
21159
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservations AWS API Documentation
20971
21160
  #
@@ -22058,9 +22247,7 @@ module Aws::EC2
22058
22247
  req.send_request(options)
22059
22248
  end
22060
22249
 
22061
- # <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
22062
- # workloads that require graphics acceleration, we recommend that you
22063
- # use Amazon EC2 G4, G5, or G6 instances.
22250
+ # <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
22064
22251
  #
22065
22252
  # </note>
22066
22253
  #
@@ -24003,11 +24190,11 @@ module Aws::EC2
24003
24190
  # * `sriov-net-support` - A value of `simple` indicates that enhanced
24004
24191
  # networking with the Intel 82599 VF interface is enabled.
24005
24192
  #
24006
- # * `tag`:&lt;key&gt; - The key/value combination of a tag assigned to
24007
- # the resource. Use the tag key in the filter name and the tag value
24008
- # as the filter value. For example, to find all resources that have a
24009
- # tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
24010
- # for the filter name and `TeamA` for the filter value.
24193
+ # * `tag:<key>` - The key/value combination of a tag assigned to the
24194
+ # resource. Use the tag key in the filter name and the tag value as
24195
+ # the filter value. For example, to find all resources that have a tag
24196
+ # with the key `Owner` and the value `TeamA`, specify `tag:Owner` for
24197
+ # the filter name and `TeamA` for the filter value.
24011
24198
  #
24012
24199
  # * `tag-key` - The key of a tag assigned to the resource. Use this
24013
24200
  # filter to find all resources assigned a tag with a specific key,
@@ -25761,9 +25948,6 @@ module Aws::EC2
25761
25948
  # * `iam-instance-profile.id` - The instance profile associated with the
25762
25949
  # instance. Specified as an ID.
25763
25950
  #
25764
- # * `iam-instance-profile.name` - The instance profile associated with
25765
- # the instance. Specified as an name.
25766
- #
25767
25951
  # * `image-id` - The ID of the image used to launch the instance.
25768
25952
  #
25769
25953
  # * `instance-id` - The ID of the instance.
@@ -39602,6 +39786,52 @@ module Aws::EC2
39602
39786
  req.send_request(options)
39603
39787
  end
39604
39788
 
39789
+ # Cancels a pending request to assign billing of the unused capacity of
39790
+ # a Capacity Reservation to a consumer account, or revokes a request
39791
+ # that has already been accepted. For more information, see [Billing
39792
+ # assignment for shared Amazon EC2 Capacity Reservations][1].
39793
+ #
39794
+ #
39795
+ #
39796
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/assign-billing.html
39797
+ #
39798
+ # @option params [Boolean] :dry_run
39799
+ # Checks whether you have the required permissions for the action,
39800
+ # without actually making the request, and provides an error response.
39801
+ # If you have the required permissions, the error response is
39802
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
39803
+ #
39804
+ # @option params [required, String] :capacity_reservation_id
39805
+ # The ID of the Capacity Reservation.
39806
+ #
39807
+ # @option params [required, String] :unused_reservation_billing_owner_id
39808
+ # The ID of the consumer account to which the request was sent.
39809
+ #
39810
+ # @return [Types::DisassociateCapacityReservationBillingOwnerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
39811
+ #
39812
+ # * {Types::DisassociateCapacityReservationBillingOwnerResult#return #return} => Boolean
39813
+ #
39814
+ # @example Request syntax with placeholder values
39815
+ #
39816
+ # resp = client.disassociate_capacity_reservation_billing_owner({
39817
+ # dry_run: false,
39818
+ # capacity_reservation_id: "CapacityReservationId", # required
39819
+ # unused_reservation_billing_owner_id: "AccountID", # required
39820
+ # })
39821
+ #
39822
+ # @example Response structure
39823
+ #
39824
+ # resp.return #=> Boolean
39825
+ #
39826
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateCapacityReservationBillingOwner AWS API Documentation
39827
+ #
39828
+ # @overload disassociate_capacity_reservation_billing_owner(params = {})
39829
+ # @param [Hash] params ({})
39830
+ def disassociate_capacity_reservation_billing_owner(params = {}, options = {})
39831
+ req = build_request(:disassociate_capacity_reservation_billing_owner, params)
39832
+ req.send_request(options)
39833
+ end
39834
+
39605
39835
  # Disassociates a target network from the specified Client VPN endpoint.
39606
39836
  # When you disassociate the last target network from a Client VPN, the
39607
39837
  # following happens:
@@ -39948,7 +40178,7 @@ module Aws::EC2
39948
40178
  #
39949
40179
  #
39950
40180
  #
39951
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html#nat-gateway-edit-secondary
40181
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-edit-secondary
39952
40182
  #
39953
40183
  # @option params [required, String] :nat_gateway_id
39954
40184
  # The ID of the NAT gateway.
@@ -47911,7 +48141,8 @@ module Aws::EC2
47911
48141
  # performance. The base cost of the instance remains unchanged.
47912
48142
  #
47913
48143
  # The number of active vCPUs equals the number of threads per CPU core
47914
- # multiplied by the number of cores.
48144
+ # multiplied by the number of cores. The instance must be in a `Stopped`
48145
+ # state before you make changes.
47915
48146
  #
47916
48147
  # <note markdown="1"> Some instance type options do not support this capability. For more
47917
48148
  # information, see [Supported CPU options][1] in the *Amazon EC2 User
@@ -49985,12 +50216,14 @@ module Aws::EC2
49985
50216
  # in this subnet should return synthetic IPv6 addresses for IPv4-only
49986
50217
  # destinations.
49987
50218
  #
49988
- # You must first configure a NAT gateway in a public subnet (separate
50219
+ # <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
49989
50220
  # from the subnet containing the IPv6-only workloads). For example, the
49990
50221
  # subnet containing the NAT gateway should have a `0.0.0.0/0` route
49991
50222
  # pointing to the internet gateway. For more information, see [Configure
49992
50223
  # DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
49993
50224
  #
50225
+ # </note>
50226
+ #
49994
50227
  #
49995
50228
  #
49996
50229
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
@@ -52727,6 +52960,7 @@ module Aws::EC2
52727
52960
  # resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
52728
52961
  # resp.source_capacity_reservation.capacity_allocations[0].count #=> Integer
52729
52962
  # resp.source_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
52963
+ # resp.source_capacity_reservation.unused_reservation_billing_owner_id #=> String
52730
52964
  # resp.destination_capacity_reservation.capacity_reservation_id #=> String
52731
52965
  # resp.destination_capacity_reservation.owner_id #=> String
52732
52966
  # resp.destination_capacity_reservation.capacity_reservation_arn #=> String
@@ -52755,6 +52989,7 @@ module Aws::EC2
52755
52989
  # resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
52756
52990
  # resp.destination_capacity_reservation.capacity_allocations[0].count #=> Integer
52757
52991
  # resp.destination_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
52992
+ # resp.destination_capacity_reservation.unused_reservation_billing_owner_id #=> String
52758
52993
  # resp.instance_count #=> Integer
52759
52994
  #
52760
52995
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveCapacityReservationInstances AWS API Documentation
@@ -53196,6 +53431,7 @@ module Aws::EC2
53196
53431
  # resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
53197
53432
  # resp.capacity_reservation.capacity_allocations[0].count #=> Integer
53198
53433
  # resp.capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
53434
+ # resp.capacity_reservation.unused_reservation_billing_owner_id #=> String
53199
53435
  #
53200
53436
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseCapacityBlock AWS API Documentation
53201
53437
  #
@@ -53978,6 +54214,47 @@ module Aws::EC2
53978
54214
  req.send_request(options)
53979
54215
  end
53980
54216
 
54217
+ # Rejects a request to assign billing of the available capacity of a
54218
+ # shared Capacity Reservation to your account. For more information, see
54219
+ # [ Billing assignment for shared Amazon EC2 Capacity Reservations][1].
54220
+ #
54221
+ #
54222
+ #
54223
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/assign-billing.html
54224
+ #
54225
+ # @option params [Boolean] :dry_run
54226
+ # Checks whether you have the required permissions for the action,
54227
+ # without actually making the request, and provides an error response.
54228
+ # If you have the required permissions, the error response is
54229
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
54230
+ #
54231
+ # @option params [required, String] :capacity_reservation_id
54232
+ # The ID of the Capacity Reservation for which to reject the request.
54233
+ #
54234
+ # @return [Types::RejectCapacityReservationBillingOwnershipResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
54235
+ #
54236
+ # * {Types::RejectCapacityReservationBillingOwnershipResult#return #return} => Boolean
54237
+ #
54238
+ # @example Request syntax with placeholder values
54239
+ #
54240
+ # resp = client.reject_capacity_reservation_billing_ownership({
54241
+ # dry_run: false,
54242
+ # capacity_reservation_id: "CapacityReservationId", # required
54243
+ # })
54244
+ #
54245
+ # @example Response structure
54246
+ #
54247
+ # resp.return #=> Boolean
54248
+ #
54249
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectCapacityReservationBillingOwnership AWS API Documentation
54250
+ #
54251
+ # @overload reject_capacity_reservation_billing_ownership(params = {})
54252
+ # @param [Hash] params ({})
54253
+ def reject_capacity_reservation_billing_ownership(params = {}, options = {})
54254
+ req = build_request(:reject_capacity_reservation_billing_ownership, params)
54255
+ req.send_request(options)
54256
+ end
54257
+
53981
54258
  # Rejects a request to associate cross-account subnets with a transit
53982
54259
  # gateway multicast domain.
53983
54260
  #
@@ -55704,7 +55981,7 @@ module Aws::EC2
55704
55981
  # image_id: "ImageId",
55705
55982
  # instance_type: "a1.medium", # accepts a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, 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.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6g.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gd.metal, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, c6i.large, c6i.xlarge, c6i.2xlarge, c6i.4xlarge, c6i.8xlarge, c6i.12xlarge, c6i.16xlarge, c6i.24xlarge, c6i.32xlarge, c6i.metal, cc1.4xlarge, cc2.8xlarge, cg1.4xlarge, cr1.8xlarge, 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, dl1.24xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, g5.xlarge, g5.2xlarge, g5.4xlarge, g5.8xlarge, g5.12xlarge, g5.16xlarge, g5.24xlarge, g5.48xlarge, g5g.xlarge, g5g.2xlarge, g5g.4xlarge, g5g.8xlarge, g5g.16xlarge, g5g.metal, hi1.4xlarge, hpc6a.48xlarge, hs1.8xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, 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, im4gn.large, im4gn.xlarge, im4gn.2xlarge, im4gn.4xlarge, im4gn.8xlarge, im4gn.16xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, is4gen.medium, is4gen.large, is4gen.xlarge, is4gen.2xlarge, is4gen.4xlarge, is4gen.8xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.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, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.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, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, m6a.large, m6a.xlarge, m6a.2xlarge, m6a.4xlarge, m6a.8xlarge, m6a.12xlarge, m6a.16xlarge, m6a.24xlarge, m6a.32xlarge, m6a.48xlarge, 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, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, m6i.metal, mac1.metal, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, 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, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.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, 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, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6g.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, r6gd.metal, r6i.large, r6i.xlarge, r6i.2xlarge, r6i.4xlarge, r6i.8xlarge, r6i.12xlarge, r6i.16xlarge, r6i.24xlarge, r6i.32xlarge, r6i.metal, 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, 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, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, x2iezn.2xlarge, x2iezn.4xlarge, x2iezn.6xlarge, x2iezn.8xlarge, x2iezn.12xlarge, x2iezn.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, x2idn.16xlarge, x2idn.24xlarge, x2idn.32xlarge, x2iedn.xlarge, x2iedn.2xlarge, x2iedn.4xlarge, x2iedn.8xlarge, x2iedn.16xlarge, x2iedn.24xlarge, x2iedn.32xlarge, c6a.large, c6a.xlarge, c6a.2xlarge, c6a.4xlarge, c6a.8xlarge, c6a.12xlarge, c6a.16xlarge, c6a.24xlarge, c6a.32xlarge, c6a.48xlarge, c6a.metal, m6a.metal, i4i.large, i4i.xlarge, i4i.2xlarge, i4i.4xlarge, i4i.8xlarge, i4i.16xlarge, i4i.32xlarge, i4i.metal, x2idn.metal, x2iedn.metal, c7g.medium, c7g.large, c7g.xlarge, c7g.2xlarge, c7g.4xlarge, c7g.8xlarge, c7g.12xlarge, c7g.16xlarge, mac2.metal, c6id.large, c6id.xlarge, c6id.2xlarge, c6id.4xlarge, c6id.8xlarge, c6id.12xlarge, c6id.16xlarge, c6id.24xlarge, c6id.32xlarge, c6id.metal, m6id.large, m6id.xlarge, m6id.2xlarge, m6id.4xlarge, m6id.8xlarge, m6id.12xlarge, m6id.16xlarge, m6id.24xlarge, m6id.32xlarge, m6id.metal, r6id.large, r6id.xlarge, r6id.2xlarge, r6id.4xlarge, r6id.8xlarge, r6id.12xlarge, r6id.16xlarge, r6id.24xlarge, r6id.32xlarge, r6id.metal, r6a.large, r6a.xlarge, r6a.2xlarge, r6a.4xlarge, r6a.8xlarge, r6a.12xlarge, r6a.16xlarge, r6a.24xlarge, r6a.32xlarge, r6a.48xlarge, r6a.metal, p4de.24xlarge, u-3tb1.56xlarge, u-18tb1.112xlarge, u-24tb1.112xlarge, trn1.2xlarge, trn1.32xlarge, hpc6id.32xlarge, c6in.large, c6in.xlarge, c6in.2xlarge, c6in.4xlarge, c6in.8xlarge, c6in.12xlarge, c6in.16xlarge, c6in.24xlarge, c6in.32xlarge, m6in.large, m6in.xlarge, m6in.2xlarge, m6in.4xlarge, m6in.8xlarge, m6in.12xlarge, m6in.16xlarge, m6in.24xlarge, m6in.32xlarge, m6idn.large, m6idn.xlarge, m6idn.2xlarge, m6idn.4xlarge, m6idn.8xlarge, m6idn.12xlarge, m6idn.16xlarge, m6idn.24xlarge, m6idn.32xlarge, r6in.large, r6in.xlarge, r6in.2xlarge, r6in.4xlarge, r6in.8xlarge, r6in.12xlarge, r6in.16xlarge, r6in.24xlarge, r6in.32xlarge, r6idn.large, r6idn.xlarge, r6idn.2xlarge, r6idn.4xlarge, r6idn.8xlarge, r6idn.12xlarge, r6idn.16xlarge, r6idn.24xlarge, r6idn.32xlarge, c7g.metal, m7g.medium, m7g.large, m7g.xlarge, m7g.2xlarge, m7g.4xlarge, m7g.8xlarge, m7g.12xlarge, m7g.16xlarge, m7g.metal, r7g.medium, r7g.large, r7g.xlarge, r7g.2xlarge, r7g.4xlarge, r7g.8xlarge, r7g.12xlarge, r7g.16xlarge, r7g.metal, c6in.metal, m6in.metal, m6idn.metal, r6in.metal, r6idn.metal, inf2.xlarge, inf2.8xlarge, inf2.24xlarge, inf2.48xlarge, trn1n.32xlarge, i4g.large, i4g.xlarge, i4g.2xlarge, i4g.4xlarge, i4g.8xlarge, i4g.16xlarge, hpc7g.4xlarge, hpc7g.8xlarge, hpc7g.16xlarge, c7gn.medium, c7gn.large, c7gn.xlarge, c7gn.2xlarge, c7gn.4xlarge, c7gn.8xlarge, c7gn.12xlarge, c7gn.16xlarge, p5.48xlarge, m7i.large, m7i.xlarge, m7i.2xlarge, m7i.4xlarge, m7i.8xlarge, m7i.12xlarge, m7i.16xlarge, m7i.24xlarge, m7i.48xlarge, m7i-flex.large, m7i-flex.xlarge, m7i-flex.2xlarge, m7i-flex.4xlarge, m7i-flex.8xlarge, m7a.medium, m7a.large, m7a.xlarge, m7a.2xlarge, m7a.4xlarge, m7a.8xlarge, m7a.12xlarge, m7a.16xlarge, m7a.24xlarge, m7a.32xlarge, m7a.48xlarge, m7a.metal-48xl, hpc7a.12xlarge, hpc7a.24xlarge, hpc7a.48xlarge, hpc7a.96xlarge, c7gd.medium, c7gd.large, c7gd.xlarge, c7gd.2xlarge, c7gd.4xlarge, c7gd.8xlarge, c7gd.12xlarge, c7gd.16xlarge, m7gd.medium, m7gd.large, m7gd.xlarge, m7gd.2xlarge, m7gd.4xlarge, m7gd.8xlarge, m7gd.12xlarge, m7gd.16xlarge, r7gd.medium, r7gd.large, r7gd.xlarge, r7gd.2xlarge, r7gd.4xlarge, r7gd.8xlarge, r7gd.12xlarge, r7gd.16xlarge, r7a.medium, r7a.large, r7a.xlarge, r7a.2xlarge, r7a.4xlarge, r7a.8xlarge, r7a.12xlarge, r7a.16xlarge, r7a.24xlarge, r7a.32xlarge, r7a.48xlarge, c7i.large, c7i.xlarge, c7i.2xlarge, c7i.4xlarge, c7i.8xlarge, c7i.12xlarge, c7i.16xlarge, c7i.24xlarge, c7i.48xlarge, mac2-m2pro.metal, r7iz.large, r7iz.xlarge, r7iz.2xlarge, r7iz.4xlarge, r7iz.8xlarge, r7iz.12xlarge, r7iz.16xlarge, r7iz.32xlarge, c7a.medium, c7a.large, c7a.xlarge, c7a.2xlarge, c7a.4xlarge, c7a.8xlarge, c7a.12xlarge, c7a.16xlarge, c7a.24xlarge, c7a.32xlarge, c7a.48xlarge, c7a.metal-48xl, r7a.metal-48xl, r7i.large, r7i.xlarge, r7i.2xlarge, r7i.4xlarge, r7i.8xlarge, r7i.12xlarge, r7i.16xlarge, r7i.24xlarge, r7i.48xlarge, dl2q.24xlarge, mac2-m2.metal, i4i.12xlarge, i4i.24xlarge, c7i.metal-24xl, c7i.metal-48xl, m7i.metal-24xl, m7i.metal-48xl, r7i.metal-24xl, r7i.metal-48xl, r7iz.metal-16xl, r7iz.metal-32xl, c7gd.metal, m7gd.metal, r7gd.metal, g6.xlarge, g6.2xlarge, g6.4xlarge, g6.8xlarge, g6.12xlarge, g6.16xlarge, g6.24xlarge, g6.48xlarge, gr6.4xlarge, gr6.8xlarge, c7i-flex.large, c7i-flex.xlarge, c7i-flex.2xlarge, c7i-flex.4xlarge, c7i-flex.8xlarge, u7i-12tb.224xlarge, u7in-16tb.224xlarge, u7in-24tb.224xlarge, u7in-32tb.224xlarge, u7ib-12tb.224xlarge, c7gn.metal, r8g.medium, r8g.large, r8g.xlarge, r8g.2xlarge, r8g.4xlarge, r8g.8xlarge, r8g.12xlarge, r8g.16xlarge, r8g.24xlarge, r8g.48xlarge, r8g.metal-24xl, r8g.metal-48xl, mac2-m1ultra.metal, g6e.xlarge, g6e.2xlarge, g6e.4xlarge, g6e.8xlarge, g6e.12xlarge, g6e.16xlarge, g6e.24xlarge, g6e.48xlarge
55706
55983
  # kernel_id: "KernelId",
55707
- # key_name: "KeyPairName",
55984
+ # key_name: "KeyPairNameWithResolver",
55708
55985
  # monitoring: {
55709
55986
  # enabled: false, # required
55710
55987
  # },
@@ -57082,15 +57359,10 @@ module Aws::EC2
57082
57359
  # @option params [Array<Types::ElasticInferenceAccelerator>] :elastic_inference_accelerators
57083
57360
  # An elastic inference accelerator to associate with the instance.
57084
57361
  #
57085
- # <note markdown="1"> Amazon Elastic Inference (EI) is no longer available to new customers.
57086
- # For more information, see [Amazon Elastic Inference FAQs][1].
57362
+ # <note markdown="1"> Amazon Elastic Inference is no longer available.
57087
57363
  #
57088
57364
  # </note>
57089
57365
  #
57090
- #
57091
- #
57092
- # [1]: http://aws.amazon.com/machine-learning/elastic-inference/faqs/
57093
- #
57094
57366
  # @option params [Array<Types::TagSpecification>] :tag_specifications
57095
57367
  # The tags to apply to the resources that are created during instance
57096
57368
  # launch.
@@ -59745,7 +60017,7 @@ module Aws::EC2
59745
60017
  #
59746
60018
  #
59747
60019
  #
59748
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html#nat-gateway-edit-secondary
60020
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-edit-secondary
59749
60021
  #
59750
60022
  # @option params [required, String] :nat_gateway_id
59751
60023
  # The ID of the NAT gateway.
@@ -60196,7 +60468,7 @@ module Aws::EC2
60196
60468
  tracer: tracer
60197
60469
  )
60198
60470
  context[:gem_name] = 'aws-sdk-ec2'
60199
- context[:gem_version] = '1.480.0'
60471
+ context[:gem_version] = '1.482.0'
60200
60472
  Seahorse::Client::Request.new(handlers, context)
60201
60473
  end
60202
60474