aws-sdk-ec2 1.480.0 → 1.481.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +307 -35
- data/lib/aws-sdk-ec2/client_api.rb +122 -0
- data/lib/aws-sdk-ec2/endpoints.rb +55 -0
- data/lib/aws-sdk-ec2/instance.rb +6 -4
- data/lib/aws-sdk-ec2/placement_group.rb +0 -3
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-ec2/resource.rb +4 -12
- data/lib/aws-sdk-ec2/subnet.rb +1 -9
- data/lib/aws-sdk-ec2/types.rb +369 -90
- data/lib/aws-sdk-ec2/vpc.rb +0 -3
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +67 -0
- data/sig/types.rbs +81 -0
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -139,6 +139,39 @@ module Aws::EC2
|
|
139
139
|
include Aws::Structure
|
140
140
|
end
|
141
141
|
|
142
|
+
# @!attribute [rw] dry_run
|
143
|
+
# Checks whether you have the required permissions for the action,
|
144
|
+
# without actually making the request, and provides an error response.
|
145
|
+
# If you have the required permissions, the error response is
|
146
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
147
|
+
# @return [Boolean]
|
148
|
+
#
|
149
|
+
# @!attribute [rw] capacity_reservation_id
|
150
|
+
# The ID of the Capacity Reservation for which to accept the request.
|
151
|
+
# @return [String]
|
152
|
+
#
|
153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptCapacityReservationBillingOwnershipRequest AWS API Documentation
|
154
|
+
#
|
155
|
+
class AcceptCapacityReservationBillingOwnershipRequest < Struct.new(
|
156
|
+
:dry_run,
|
157
|
+
:capacity_reservation_id)
|
158
|
+
SENSITIVE = []
|
159
|
+
include Aws::Structure
|
160
|
+
end
|
161
|
+
|
162
|
+
# @!attribute [rw] return
|
163
|
+
# Returns `true` if the request succeeds; otherwise, it returns an
|
164
|
+
# error.
|
165
|
+
# @return [Boolean]
|
166
|
+
#
|
167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptCapacityReservationBillingOwnershipResult AWS API Documentation
|
168
|
+
#
|
169
|
+
class AcceptCapacityReservationBillingOwnershipResult < Struct.new(
|
170
|
+
:return)
|
171
|
+
SENSITIVE = []
|
172
|
+
include Aws::Structure
|
173
|
+
end
|
174
|
+
|
142
175
|
# Contains the parameters for accepting the quote.
|
143
176
|
#
|
144
177
|
# @!attribute [rw] dry_run
|
@@ -1926,6 +1959,44 @@ module Aws::EC2
|
|
1926
1959
|
include Aws::Structure
|
1927
1960
|
end
|
1928
1961
|
|
1962
|
+
# @!attribute [rw] dry_run
|
1963
|
+
# Checks whether you have the required permissions for the action,
|
1964
|
+
# without actually making the request, and provides an error response.
|
1965
|
+
# If you have the required permissions, the error response is
|
1966
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1967
|
+
# @return [Boolean]
|
1968
|
+
#
|
1969
|
+
# @!attribute [rw] capacity_reservation_id
|
1970
|
+
# The ID of the Capacity Reservation.
|
1971
|
+
# @return [String]
|
1972
|
+
#
|
1973
|
+
# @!attribute [rw] unused_reservation_billing_owner_id
|
1974
|
+
# The ID of the consumer account to which assign billing.
|
1975
|
+
# @return [String]
|
1976
|
+
#
|
1977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateCapacityReservationBillingOwnerRequest AWS API Documentation
|
1978
|
+
#
|
1979
|
+
class AssociateCapacityReservationBillingOwnerRequest < Struct.new(
|
1980
|
+
:dry_run,
|
1981
|
+
:capacity_reservation_id,
|
1982
|
+
:unused_reservation_billing_owner_id)
|
1983
|
+
SENSITIVE = []
|
1984
|
+
include Aws::Structure
|
1985
|
+
end
|
1986
|
+
|
1987
|
+
# @!attribute [rw] return
|
1988
|
+
# Returns `true` if the request succeeds; otherwise, it returns an
|
1989
|
+
# error.
|
1990
|
+
# @return [Boolean]
|
1991
|
+
#
|
1992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateCapacityReservationBillingOwnerResult AWS API Documentation
|
1993
|
+
#
|
1994
|
+
class AssociateCapacityReservationBillingOwnerResult < Struct.new(
|
1995
|
+
:return)
|
1996
|
+
SENSITIVE = []
|
1997
|
+
include Aws::Structure
|
1998
|
+
end
|
1999
|
+
|
1929
2000
|
# @!attribute [rw] client_vpn_endpoint_id
|
1930
2001
|
# The ID of the Client VPN endpoint.
|
1931
2002
|
# @return [String]
|
@@ -4588,6 +4659,11 @@ module Aws::EC2
|
|
4588
4659
|
# The type of Capacity Reservation.
|
4589
4660
|
# @return [String]
|
4590
4661
|
#
|
4662
|
+
# @!attribute [rw] unused_reservation_billing_owner_id
|
4663
|
+
# The ID of the Amazon Web Services account to which billing of the
|
4664
|
+
# unused capacity of the Capacity Reservation is assigned.
|
4665
|
+
# @return [String]
|
4666
|
+
#
|
4591
4667
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservation AWS API Documentation
|
4592
4668
|
#
|
4593
4669
|
class CapacityReservation < Struct.new(
|
@@ -4614,7 +4690,62 @@ module Aws::EC2
|
|
4614
4690
|
:capacity_reservation_fleet_id,
|
4615
4691
|
:placement_group_arn,
|
4616
4692
|
:capacity_allocations,
|
4617
|
-
:reservation_type
|
4693
|
+
:reservation_type,
|
4694
|
+
:unused_reservation_billing_owner_id)
|
4695
|
+
SENSITIVE = []
|
4696
|
+
include Aws::Structure
|
4697
|
+
end
|
4698
|
+
|
4699
|
+
# Information about a request to assign billing of the unused capacity
|
4700
|
+
# of a Capacity Reservation.
|
4701
|
+
#
|
4702
|
+
# @!attribute [rw] capacity_reservation_id
|
4703
|
+
# The ID of the Capacity Reservation.
|
4704
|
+
# @return [String]
|
4705
|
+
#
|
4706
|
+
# @!attribute [rw] requested_by
|
4707
|
+
# The ID of the Amazon Web Services account that initiated the
|
4708
|
+
# request.
|
4709
|
+
# @return [String]
|
4710
|
+
#
|
4711
|
+
# @!attribute [rw] unused_reservation_billing_owner_id
|
4712
|
+
# The ID of the Amazon Web Services account to which the request was
|
4713
|
+
# sent.
|
4714
|
+
# @return [String]
|
4715
|
+
#
|
4716
|
+
# @!attribute [rw] last_update_time
|
4717
|
+
# The date and time, in UTC time format, at which the request was
|
4718
|
+
# initiated.
|
4719
|
+
# @return [Time]
|
4720
|
+
#
|
4721
|
+
# @!attribute [rw] status
|
4722
|
+
# The status of the request. For more information, see [ View billing
|
4723
|
+
# assignment requests for a shared Amazon EC2 Capacity
|
4724
|
+
# Reservation][1].
|
4725
|
+
#
|
4726
|
+
#
|
4727
|
+
#
|
4728
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/view-billing-transfers.html
|
4729
|
+
# @return [String]
|
4730
|
+
#
|
4731
|
+
# @!attribute [rw] status_message
|
4732
|
+
# Information about the status.
|
4733
|
+
# @return [String]
|
4734
|
+
#
|
4735
|
+
# @!attribute [rw] capacity_reservation_info
|
4736
|
+
# Information about the Capacity Reservation.
|
4737
|
+
# @return [Types::CapacityReservationInfo]
|
4738
|
+
#
|
4739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationBillingRequest AWS API Documentation
|
4740
|
+
#
|
4741
|
+
class CapacityReservationBillingRequest < Struct.new(
|
4742
|
+
:capacity_reservation_id,
|
4743
|
+
:requested_by,
|
4744
|
+
:unused_reservation_billing_owner_id,
|
4745
|
+
:last_update_time,
|
4746
|
+
:status,
|
4747
|
+
:status_message,
|
4748
|
+
:capacity_reservation_info)
|
4618
4749
|
SENSITIVE = []
|
4619
4750
|
include Aws::Structure
|
4620
4751
|
end
|
@@ -4804,6 +4935,30 @@ module Aws::EC2
|
|
4804
4935
|
include Aws::Structure
|
4805
4936
|
end
|
4806
4937
|
|
4938
|
+
# Information about a Capacity Reservation.
|
4939
|
+
#
|
4940
|
+
# @!attribute [rw] instance_type
|
4941
|
+
# The instance type for the Capacity Reservation.
|
4942
|
+
# @return [String]
|
4943
|
+
#
|
4944
|
+
# @!attribute [rw] availability_zone
|
4945
|
+
# The Availability Zone for the Capacity Reservation.
|
4946
|
+
# @return [String]
|
4947
|
+
#
|
4948
|
+
# @!attribute [rw] tenancy
|
4949
|
+
# The tenancy of the Capacity Reservation.
|
4950
|
+
# @return [String]
|
4951
|
+
#
|
4952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationInfo AWS API Documentation
|
4953
|
+
#
|
4954
|
+
class CapacityReservationInfo < Struct.new(
|
4955
|
+
:instance_type,
|
4956
|
+
:availability_zone,
|
4957
|
+
:tenancy)
|
4958
|
+
SENSITIVE = []
|
4959
|
+
include Aws::Structure
|
4960
|
+
end
|
4961
|
+
|
4807
4962
|
# Describes the strategy for using unused Capacity Reservations for
|
4808
4963
|
# fulfilling On-Demand capacity.
|
4809
4964
|
#
|
@@ -8125,7 +8280,7 @@ module Aws::EC2
|
|
8125
8280
|
#
|
8126
8281
|
#
|
8127
8282
|
#
|
8128
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-log-records
|
8283
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records
|
8129
8284
|
# [2]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-flow-logs.html#flow-log-records
|
8130
8285
|
# @return [String]
|
8131
8286
|
#
|
@@ -9567,7 +9722,7 @@ module Aws::EC2
|
|
9567
9722
|
#
|
9568
9723
|
#
|
9569
9724
|
#
|
9570
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-
|
9725
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
|
9571
9726
|
# @return [Array<String>]
|
9572
9727
|
#
|
9573
9728
|
# @!attribute [rw] secondary_private_ip_addresses
|
@@ -9577,7 +9732,7 @@ module Aws::EC2
|
|
9577
9732
|
#
|
9578
9733
|
#
|
9579
9734
|
#
|
9580
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-
|
9735
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
|
9581
9736
|
# @return [Array<String>]
|
9582
9737
|
#
|
9583
9738
|
# @!attribute [rw] secondary_private_ip_address_count
|
@@ -9588,7 +9743,7 @@ module Aws::EC2
|
|
9588
9743
|
#
|
9589
9744
|
#
|
9590
9745
|
#
|
9591
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-
|
9746
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
|
9592
9747
|
# @return [Integer]
|
9593
9748
|
#
|
9594
9749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNatGatewayRequest AWS API Documentation
|
@@ -12065,8 +12220,8 @@ module Aws::EC2
|
|
12065
12220
|
# Enables you to reference a security group across VPCs attached to a
|
12066
12221
|
# transit gateway to simplify security group management.
|
12067
12222
|
#
|
12068
|
-
# This option is
|
12069
|
-
#
|
12223
|
+
# This option is set to `enable` by default. However, at the transit
|
12224
|
+
# gateway level the default is set to `disable`.
|
12070
12225
|
#
|
12071
12226
|
# For more information about security group referencing, see [Security
|
12072
12227
|
# group referencing ][1] in the *Amazon Web Services Transit Gateways
|
@@ -17091,6 +17246,90 @@ module Aws::EC2
|
|
17091
17246
|
include Aws::Structure
|
17092
17247
|
end
|
17093
17248
|
|
17249
|
+
# @!attribute [rw] capacity_reservation_ids
|
17250
|
+
# The ID of the Capacity Reservation.
|
17251
|
+
# @return [Array<String>]
|
17252
|
+
#
|
17253
|
+
# @!attribute [rw] role
|
17254
|
+
# Specify one of the following:
|
17255
|
+
#
|
17256
|
+
# * `odcr-owner` - If you are the Capacity Reservation owner, specify
|
17257
|
+
# this value to view requests that you have initiated. Not supported
|
17258
|
+
# with the `requested-by` filter.
|
17259
|
+
#
|
17260
|
+
# * `unused-reservation-billing-owner` - If you are the consumer
|
17261
|
+
# account, specify this value to view requests that have been sent
|
17262
|
+
# to you. Not supported with the `unused-reservation-billing-owner`
|
17263
|
+
# filter.
|
17264
|
+
# @return [String]
|
17265
|
+
#
|
17266
|
+
# @!attribute [rw] next_token
|
17267
|
+
# The token to use to retrieve the next page of results.
|
17268
|
+
# @return [String]
|
17269
|
+
#
|
17270
|
+
# @!attribute [rw] max_results
|
17271
|
+
# The maximum number of items to return for this request. To get the
|
17272
|
+
# next page of items, make another request with the token returned in
|
17273
|
+
# the output. For more information, see [Pagination][1].
|
17274
|
+
#
|
17275
|
+
#
|
17276
|
+
#
|
17277
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
17278
|
+
# @return [Integer]
|
17279
|
+
#
|
17280
|
+
# @!attribute [rw] filters
|
17281
|
+
# One or more filters.
|
17282
|
+
#
|
17283
|
+
# * `status` - The state of the request (`pending` \| `accepted` \|
|
17284
|
+
# `rejected` \| `cancelled` \| `revoked` \| `expired`).
|
17285
|
+
#
|
17286
|
+
# * `requested-by` - The account ID of the Capacity Reservation owner
|
17287
|
+
# that initiated the request. Not supported if you specify
|
17288
|
+
# `requested-by` for **Role**.
|
17289
|
+
#
|
17290
|
+
# * `unused-reservation-billing-owner` - The ID of the consumer
|
17291
|
+
# account to which the request was sent. Not supported if you
|
17292
|
+
# specify `unused-reservation-billing-owner` for **Role**.
|
17293
|
+
# @return [Array<Types::Filter>]
|
17294
|
+
#
|
17295
|
+
# @!attribute [rw] dry_run
|
17296
|
+
# Checks whether you have the required permissions for the action,
|
17297
|
+
# without actually making the request, and provides an error response.
|
17298
|
+
# If you have the required permissions, the error response is
|
17299
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
17300
|
+
# @return [Boolean]
|
17301
|
+
#
|
17302
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationBillingRequestsRequest AWS API Documentation
|
17303
|
+
#
|
17304
|
+
class DescribeCapacityReservationBillingRequestsRequest < Struct.new(
|
17305
|
+
:capacity_reservation_ids,
|
17306
|
+
:role,
|
17307
|
+
:next_token,
|
17308
|
+
:max_results,
|
17309
|
+
:filters,
|
17310
|
+
:dry_run)
|
17311
|
+
SENSITIVE = []
|
17312
|
+
include Aws::Structure
|
17313
|
+
end
|
17314
|
+
|
17315
|
+
# @!attribute [rw] next_token
|
17316
|
+
# The token to use to retrieve the next page of results. This value is
|
17317
|
+
# `null` when there are no more results to return.
|
17318
|
+
# @return [String]
|
17319
|
+
#
|
17320
|
+
# @!attribute [rw] capacity_reservation_billing_requests
|
17321
|
+
# Information about the request.
|
17322
|
+
# @return [Array<Types::CapacityReservationBillingRequest>]
|
17323
|
+
#
|
17324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationBillingRequestsResult AWS API Documentation
|
17325
|
+
#
|
17326
|
+
class DescribeCapacityReservationBillingRequestsResult < Struct.new(
|
17327
|
+
:next_token,
|
17328
|
+
:capacity_reservation_billing_requests)
|
17329
|
+
SENSITIVE = []
|
17330
|
+
include Aws::Structure
|
17331
|
+
end
|
17332
|
+
|
17094
17333
|
# @!attribute [rw] capacity_reservation_fleet_ids
|
17095
17334
|
# The IDs of the Capacity Reservation Fleets to describe.
|
17096
17335
|
# @return [Array<String>]
|
@@ -20691,9 +20930,6 @@ module Aws::EC2
|
|
20691
20930
|
# * `iam-instance-profile.id` - The instance profile associated with
|
20692
20931
|
# the instance. Specified as an ID.
|
20693
20932
|
#
|
20694
|
-
# * `iam-instance-profile.name` - The instance profile associated with
|
20695
|
-
# the instance. Specified as an name.
|
20696
|
-
#
|
20697
20933
|
# * `image-id` - The ID of the image used to launch the instance.
|
20698
20934
|
#
|
20699
20935
|
# * `instance-id` - The ID of the instance.
|
@@ -29670,6 +29906,44 @@ module Aws::EC2
|
|
29670
29906
|
include Aws::Structure
|
29671
29907
|
end
|
29672
29908
|
|
29909
|
+
# @!attribute [rw] dry_run
|
29910
|
+
# Checks whether you have the required permissions for the action,
|
29911
|
+
# without actually making the request, and provides an error response.
|
29912
|
+
# If you have the required permissions, the error response is
|
29913
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
29914
|
+
# @return [Boolean]
|
29915
|
+
#
|
29916
|
+
# @!attribute [rw] capacity_reservation_id
|
29917
|
+
# The ID of the Capacity Reservation.
|
29918
|
+
# @return [String]
|
29919
|
+
#
|
29920
|
+
# @!attribute [rw] unused_reservation_billing_owner_id
|
29921
|
+
# The ID of the consumer account to which the request was sent.
|
29922
|
+
# @return [String]
|
29923
|
+
#
|
29924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateCapacityReservationBillingOwnerRequest AWS API Documentation
|
29925
|
+
#
|
29926
|
+
class DisassociateCapacityReservationBillingOwnerRequest < Struct.new(
|
29927
|
+
:dry_run,
|
29928
|
+
:capacity_reservation_id,
|
29929
|
+
:unused_reservation_billing_owner_id)
|
29930
|
+
SENSITIVE = []
|
29931
|
+
include Aws::Structure
|
29932
|
+
end
|
29933
|
+
|
29934
|
+
# @!attribute [rw] return
|
29935
|
+
# Returns `true` if the request succeeds; otherwise, it returns an
|
29936
|
+
# error.
|
29937
|
+
# @return [Boolean]
|
29938
|
+
#
|
29939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateCapacityReservationBillingOwnerResult AWS API Documentation
|
29940
|
+
#
|
29941
|
+
class DisassociateCapacityReservationBillingOwnerResult < Struct.new(
|
29942
|
+
:return)
|
29943
|
+
SENSITIVE = []
|
29944
|
+
include Aws::Structure
|
29945
|
+
end
|
29946
|
+
|
29673
29947
|
# @!attribute [rw] client_vpn_endpoint_id
|
29674
29948
|
# The ID of the Client VPN endpoint from which to disassociate the
|
29675
29949
|
# target network.
|
@@ -30916,9 +31190,7 @@ module Aws::EC2
|
|
30916
31190
|
include Aws::Structure
|
30917
31191
|
end
|
30918
31192
|
|
30919
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
30920
|
-
# workloads that require graphics acceleration, we recommend that you
|
30921
|
-
# use Amazon EC2 G4, G5, or G6 instances.
|
31193
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
30922
31194
|
#
|
30923
31195
|
# </note>
|
30924
31196
|
#
|
@@ -30954,9 +31226,7 @@ module Aws::EC2
|
|
30954
31226
|
include Aws::Structure
|
30955
31227
|
end
|
30956
31228
|
|
30957
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
30958
|
-
# workloads that require graphics acceleration, we recommend that you
|
30959
|
-
# use Amazon EC2 G4, G5, or G6 instances.
|
31229
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
30960
31230
|
#
|
30961
31231
|
# </note>
|
30962
31232
|
#
|
@@ -30974,9 +31244,7 @@ module Aws::EC2
|
|
30974
31244
|
include Aws::Structure
|
30975
31245
|
end
|
30976
31246
|
|
30977
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
30978
|
-
# workloads that require graphics acceleration, we recommend that you
|
30979
|
-
# use Amazon EC2 G4, G5, or G6 instances.
|
31247
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
30980
31248
|
#
|
30981
31249
|
# </note>
|
30982
31250
|
#
|
@@ -30994,22 +31262,14 @@ module Aws::EC2
|
|
30994
31262
|
include Aws::Structure
|
30995
31263
|
end
|
30996
31264
|
|
30997
|
-
#
|
30998
|
-
#
|
30999
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
31000
|
-
# workloads that require graphics acceleration, we recommend that you
|
31001
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
31265
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
31002
31266
|
#
|
31003
31267
|
# </note>
|
31004
31268
|
#
|
31005
|
-
#
|
31006
|
-
# Deprecated.
|
31007
|
-
#
|
31008
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
31009
|
-
# workloads that require graphics acceleration, we recommend that you
|
31010
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
31269
|
+
# Describes an elastic GPU.
|
31011
31270
|
#
|
31012
|
-
#
|
31271
|
+
# @!attribute [rw] type
|
31272
|
+
# The elastic GPU type.
|
31013
31273
|
# @return [String]
|
31014
31274
|
#
|
31015
31275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ElasticGpuSpecificationResponse AWS API Documentation
|
@@ -31020,9 +31280,7 @@ module Aws::EC2
|
|
31020
31280
|
include Aws::Structure
|
31021
31281
|
end
|
31022
31282
|
|
31023
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
31024
|
-
# workloads that require graphics acceleration, we recommend that you
|
31025
|
-
# use Amazon EC2 G4, G5, or G6 instances.
|
31283
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
31026
31284
|
#
|
31027
31285
|
# </note>
|
31028
31286
|
#
|
@@ -31072,6 +31330,10 @@ module Aws::EC2
|
|
31072
31330
|
include Aws::Structure
|
31073
31331
|
end
|
31074
31332
|
|
31333
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
31334
|
+
#
|
31335
|
+
# </note>
|
31336
|
+
#
|
31075
31337
|
# Describes an elastic inference accelerator.
|
31076
31338
|
#
|
31077
31339
|
# @!attribute [rw] type
|
@@ -31096,6 +31358,10 @@ module Aws::EC2
|
|
31096
31358
|
include Aws::Structure
|
31097
31359
|
end
|
31098
31360
|
|
31361
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
31362
|
+
#
|
31363
|
+
# </note>
|
31364
|
+
#
|
31099
31365
|
# Describes the association between an instance and an elastic inference
|
31100
31366
|
# accelerator.
|
31101
31367
|
#
|
@@ -39165,6 +39431,10 @@ module Aws::EC2
|
|
39165
39431
|
include Aws::Structure
|
39166
39432
|
end
|
39167
39433
|
|
39434
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
39435
|
+
#
|
39436
|
+
# </note>
|
39437
|
+
#
|
39168
39438
|
# Describes the Inference accelerators for the instance type.
|
39169
39439
|
#
|
39170
39440
|
# @!attribute [rw] accelerators
|
@@ -39185,6 +39455,10 @@ module Aws::EC2
|
|
39185
39455
|
include Aws::Structure
|
39186
39456
|
end
|
39187
39457
|
|
39458
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
39459
|
+
#
|
39460
|
+
# </note>
|
39461
|
+
#
|
39188
39462
|
# Describes the Inference accelerators for the instance type.
|
39189
39463
|
#
|
39190
39464
|
# @!attribute [rw] count
|
@@ -39214,6 +39488,10 @@ module Aws::EC2
|
|
39214
39488
|
include Aws::Structure
|
39215
39489
|
end
|
39216
39490
|
|
39491
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
39492
|
+
#
|
39493
|
+
# </note>
|
39494
|
+
#
|
39217
39495
|
# Describes the memory available to the inference accelerator.
|
39218
39496
|
#
|
39219
39497
|
# @!attribute [rw] size_in_mi_b
|
@@ -39273,15 +39551,17 @@ module Aws::EC2
|
|
39273
39551
|
# @!attribute [rw] elastic_gpu_associations
|
39274
39552
|
# Deprecated.
|
39275
39553
|
#
|
39276
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
39277
|
-
# workloads that require graphics acceleration, we recommend that you
|
39278
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
39554
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
39279
39555
|
#
|
39280
39556
|
# </note>
|
39281
39557
|
# @return [Array<Types::ElasticGpuAssociation>]
|
39282
39558
|
#
|
39283
39559
|
# @!attribute [rw] elastic_inference_accelerator_associations
|
39284
|
-
#
|
39560
|
+
# Deprecated
|
39561
|
+
#
|
39562
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
39563
|
+
#
|
39564
|
+
# </note>
|
39285
39565
|
# @return [Array<Types::ElasticInferenceAcceleratorAssociation>]
|
39286
39566
|
#
|
39287
39567
|
# @!attribute [rw] network_interfaces
|
@@ -41233,9 +41513,6 @@ module Aws::EC2
|
|
41233
41513
|
#
|
41234
41514
|
# * For instance types with FPGA accelerators, specify `fpga`.
|
41235
41515
|
#
|
41236
|
-
# * For instance types with inference accelerators, specify
|
41237
|
-
# `inference`.
|
41238
|
-
#
|
41239
41516
|
# Default: Any accelerator type
|
41240
41517
|
# @return [Array<String>]
|
41241
41518
|
#
|
@@ -41703,9 +41980,6 @@ module Aws::EC2
|
|
41703
41980
|
#
|
41704
41981
|
# * To include instance types with FPGA hardware, specify `fpga`.
|
41705
41982
|
#
|
41706
|
-
# * To include instance types with inference hardware, specify
|
41707
|
-
# `inference`.
|
41708
|
-
#
|
41709
41983
|
# Default: Any accelerator type
|
41710
41984
|
# @return [Array<String>]
|
41711
41985
|
#
|
@@ -45002,6 +45276,10 @@ module Aws::EC2
|
|
45002
45276
|
include Aws::Structure
|
45003
45277
|
end
|
45004
45278
|
|
45279
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
45280
|
+
#
|
45281
|
+
# </note>
|
45282
|
+
#
|
45005
45283
|
# Describes an elastic inference accelerator.
|
45006
45284
|
#
|
45007
45285
|
# @!attribute [rw] type
|
@@ -45025,6 +45303,10 @@ module Aws::EC2
|
|
45025
45303
|
include Aws::Structure
|
45026
45304
|
end
|
45027
45305
|
|
45306
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
45307
|
+
#
|
45308
|
+
# </note>
|
45309
|
+
#
|
45028
45310
|
# Describes an elastic inference accelerator.
|
45029
45311
|
#
|
45030
45312
|
# @!attribute [rw] type
|
@@ -49986,12 +50268,14 @@ module Aws::EC2
|
|
49986
50268
|
# Resolver in this subnet should return synthetic IPv6 addresses for
|
49987
50269
|
# IPv4-only destinations.
|
49988
50270
|
#
|
49989
|
-
# You must first configure a NAT gateway in a public subnet (separate
|
50271
|
+
# <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
|
49990
50272
|
# from the subnet containing the IPv6-only workloads). For example,
|
49991
50273
|
# the subnet containing the NAT gateway should have a `0.0.0.0/0`
|
49992
50274
|
# route pointing to the internet gateway. For more information, see
|
49993
50275
|
# [Configure DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
|
49994
50276
|
#
|
50277
|
+
# </note>
|
50278
|
+
#
|
49995
50279
|
#
|
49996
50280
|
#
|
49997
50281
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
|
@@ -56271,6 +56555,39 @@ module Aws::EC2
|
|
56271
56555
|
include Aws::Structure
|
56272
56556
|
end
|
56273
56557
|
|
56558
|
+
# @!attribute [rw] dry_run
|
56559
|
+
# Checks whether you have the required permissions for the action,
|
56560
|
+
# without actually making the request, and provides an error response.
|
56561
|
+
# If you have the required permissions, the error response is
|
56562
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
56563
|
+
# @return [Boolean]
|
56564
|
+
#
|
56565
|
+
# @!attribute [rw] capacity_reservation_id
|
56566
|
+
# The ID of the Capacity Reservation for which to reject the request.
|
56567
|
+
# @return [String]
|
56568
|
+
#
|
56569
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectCapacityReservationBillingOwnershipRequest AWS API Documentation
|
56570
|
+
#
|
56571
|
+
class RejectCapacityReservationBillingOwnershipRequest < Struct.new(
|
56572
|
+
:dry_run,
|
56573
|
+
:capacity_reservation_id)
|
56574
|
+
SENSITIVE = []
|
56575
|
+
include Aws::Structure
|
56576
|
+
end
|
56577
|
+
|
56578
|
+
# @!attribute [rw] return
|
56579
|
+
# Returns `true` if the request succeeds; otherwise, it returns an
|
56580
|
+
# error.
|
56581
|
+
# @return [Boolean]
|
56582
|
+
#
|
56583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectCapacityReservationBillingOwnershipResult AWS API Documentation
|
56584
|
+
#
|
56585
|
+
class RejectCapacityReservationBillingOwnershipResult < Struct.new(
|
56586
|
+
:return)
|
56587
|
+
SENSITIVE = []
|
56588
|
+
include Aws::Structure
|
56589
|
+
end
|
56590
|
+
|
56274
56591
|
# @!attribute [rw] transit_gateway_multicast_domain_id
|
56275
56592
|
# The ID of the transit gateway multicast domain.
|
56276
56593
|
# @return [String]
|
@@ -57337,31 +57654,15 @@ module Aws::EC2
|
|
57337
57654
|
# @!attribute [rw] elastic_gpu_specifications
|
57338
57655
|
# Deprecated.
|
57339
57656
|
#
|
57340
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
57341
|
-
# workloads that require graphics acceleration, we recommend that you
|
57342
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
57657
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
57343
57658
|
#
|
57344
57659
|
# </note>
|
57345
57660
|
# @return [Array<Types::ElasticGpuSpecification>]
|
57346
57661
|
#
|
57347
57662
|
# @!attribute [rw] elastic_inference_accelerators
|
57348
|
-
#
|
57349
|
-
# Elastic inference accelerators are a resource you can attach to your
|
57350
|
-
# Amazon EC2 instances to accelerate your Deep Learning (DL) inference
|
57351
|
-
# workloads.
|
57352
|
-
#
|
57353
|
-
# You cannot specify accelerators from different generations in the
|
57354
|
-
# same request.
|
57663
|
+
# Deprecated.
|
57355
57664
|
#
|
57356
|
-
# <note markdown="1">
|
57357
|
-
# customers to Amazon Elastic Inference (EI), and will help current
|
57358
|
-
# customers migrate their workloads to options that offer better price
|
57359
|
-
# and performance. After April 15, 2023, new customers will not be
|
57360
|
-
# able to launch instances with Amazon EI accelerators in Amazon
|
57361
|
-
# SageMaker, Amazon ECS, or Amazon EC2. However, customers who have
|
57362
|
-
# used Amazon EI at least once during the past 30-day period are
|
57363
|
-
# considered current customers and will be able to continue using the
|
57364
|
-
# service.
|
57665
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
57365
57666
|
#
|
57366
57667
|
# </note>
|
57367
57668
|
# @return [Array<Types::LaunchTemplateElasticInferenceAccelerator>]
|
@@ -58797,31 +59098,15 @@ module Aws::EC2
|
|
58797
59098
|
# @!attribute [rw] elastic_gpu_specifications
|
58798
59099
|
# Deprecated.
|
58799
59100
|
#
|
58800
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
58801
|
-
# workloads that require graphics acceleration, we recommend that you
|
58802
|
-
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
59101
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
58803
59102
|
#
|
58804
59103
|
# </note>
|
58805
59104
|
# @return [Array<Types::ElasticGpuSpecificationResponse>]
|
58806
59105
|
#
|
58807
59106
|
# @!attribute [rw] elastic_inference_accelerators
|
58808
|
-
#
|
58809
|
-
# Elastic inference accelerators are a resource you can attach to your
|
58810
|
-
# Amazon EC2 instances to accelerate your Deep Learning (DL) inference
|
58811
|
-
# workloads.
|
58812
|
-
#
|
58813
|
-
# You cannot specify accelerators from different generations in the
|
58814
|
-
# same request.
|
59107
|
+
# Deprecated.
|
58815
59108
|
#
|
58816
|
-
# <note markdown="1">
|
58817
|
-
# customers to Amazon Elastic Inference (EI), and will help current
|
58818
|
-
# customers migrate their workloads to options that offer better price
|
58819
|
-
# and performance. After April 15, 2023, new customers will not be
|
58820
|
-
# able to launch instances with Amazon EI accelerators in Amazon
|
58821
|
-
# SageMaker, Amazon ECS, or Amazon EC2. However, customers who have
|
58822
|
-
# used Amazon EI at least once during the past 30-day period are
|
58823
|
-
# considered current customers and will be able to continue using the
|
58824
|
-
# service.
|
59109
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
58825
59110
|
#
|
58826
59111
|
# </note>
|
58827
59112
|
# @return [Array<Types::LaunchTemplateElasticInferenceAcceleratorResponse>]
|
@@ -59909,15 +60194,9 @@ module Aws::EC2
|
|
59909
60194
|
# @!attribute [rw] elastic_inference_accelerators
|
59910
60195
|
# An elastic inference accelerator to associate with the instance.
|
59911
60196
|
#
|
59912
|
-
# <note markdown="1"> Amazon Elastic Inference
|
59913
|
-
# customers. For more information, see [Amazon Elastic Inference
|
59914
|
-
# FAQs][1].
|
60197
|
+
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
59915
60198
|
#
|
59916
60199
|
# </note>
|
59917
|
-
#
|
59918
|
-
#
|
59919
|
-
#
|
59920
|
-
# [1]: http://aws.amazon.com/machine-learning/elastic-inference/faqs/
|
59921
60200
|
# @return [Array<Types::ElasticInferenceAccelerator>]
|
59922
60201
|
#
|
59923
60202
|
# @!attribute [rw] tag_specifications
|