aws-sdk-ec2 1.402.0 → 1.547.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.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +735 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-ec2/classic_address.rb +32 -20
  5. data/lib/aws-sdk-ec2/client.rb +14212 -4429
  6. data/lib/aws-sdk-ec2/client_api.rb +4004 -515
  7. data/lib/aws-sdk-ec2/customizations/instance.rb +18 -1
  8. data/lib/aws-sdk-ec2/customizations/resource.rb +46 -3
  9. data/lib/aws-sdk-ec2/customizations/tag.rb +13 -0
  10. data/lib/aws-sdk-ec2/customizations.rb +0 -22
  11. data/lib/aws-sdk-ec2/dhcp_options.rb +12 -12
  12. data/lib/aws-sdk-ec2/endpoint_parameters.rb +9 -6
  13. data/lib/aws-sdk-ec2/endpoint_provider.rb +16 -20
  14. data/lib/aws-sdk-ec2/endpoints.rb +2 -8314
  15. data/lib/aws-sdk-ec2/image.rb +207 -98
  16. data/lib/aws-sdk-ec2/instance.rb +514 -348
  17. data/lib/aws-sdk-ec2/internet_gateway.rb +7 -7
  18. data/lib/aws-sdk-ec2/key_pair.rb +14 -14
  19. data/lib/aws-sdk-ec2/key_pair_info.rb +30 -30
  20. data/lib/aws-sdk-ec2/nat_gateway.rb +7 -8
  21. data/lib/aws-sdk-ec2/network_acl.rb +70 -70
  22. data/lib/aws-sdk-ec2/network_interface.rb +150 -78
  23. data/lib/aws-sdk-ec2/network_interface_association.rb +3 -3
  24. data/lib/aws-sdk-ec2/placement_group.rb +123 -42
  25. data/lib/aws-sdk-ec2/plugins/endpoints.rb +23 -1202
  26. data/lib/aws-sdk-ec2/resource.rb +1118 -864
  27. data/lib/aws-sdk-ec2/route.rb +50 -34
  28. data/lib/aws-sdk-ec2/route_table.rb +47 -44
  29. data/lib/aws-sdk-ec2/route_table_association.rb +3 -3
  30. data/lib/aws-sdk-ec2/security_group.rb +212 -201
  31. data/lib/aws-sdk-ec2/snapshot.rb +169 -105
  32. data/lib/aws-sdk-ec2/subnet.rb +534 -406
  33. data/lib/aws-sdk-ec2/tag.rb +7 -4
  34. data/lib/aws-sdk-ec2/types.rb +18252 -4766
  35. data/lib/aws-sdk-ec2/volume.rb +160 -116
  36. data/lib/aws-sdk-ec2/vpc.rb +387 -262
  37. data/lib/aws-sdk-ec2/vpc_address.rb +37 -25
  38. data/lib/aws-sdk-ec2/vpc_peering_connection.rb +6 -6
  39. data/lib/aws-sdk-ec2/waiters.rb +146 -38
  40. data/lib/aws-sdk-ec2.rb +40 -36
  41. data/sig/classic_address.rbs +108 -0
  42. data/sig/client.rbs +14833 -0
  43. data/sig/dhcp_options.rbs +84 -0
  44. data/sig/errors.rbs +16 -0
  45. data/sig/image.rbs +232 -0
  46. data/sig/instance.rbs +576 -0
  47. data/sig/internet_gateway.rbs +91 -0
  48. data/sig/key_pair.rbs +54 -0
  49. data/sig/key_pair_info.rbs +63 -0
  50. data/sig/nat_gateway.rbs +107 -0
  51. data/sig/network_acl.rbs +144 -0
  52. data/sig/network_interface.rbs +249 -0
  53. data/sig/network_interface_association.rbs +62 -0
  54. data/sig/placement_group.rbs +78 -0
  55. data/sig/resource.rbs +1049 -0
  56. data/sig/route.rbs +120 -0
  57. data/sig/route_table.rbs +118 -0
  58. data/sig/route_table_association.rbs +69 -0
  59. data/sig/security_group.rbs +311 -0
  60. data/sig/snapshot.rbs +204 -0
  61. data/sig/subnet.rbs +442 -0
  62. data/sig/tag.rbs +63 -0
  63. data/sig/types.rbs +17078 -0
  64. data/sig/volume.rbs +213 -0
  65. data/sig/vpc.rbs +404 -0
  66. data/sig/vpc_address.rbs +104 -0
  67. data/sig/vpc_peering_connection.rbs +84 -0
  68. data/sig/waiters.rbs +700 -0
  69. metadata +45 -19
data/CHANGELOG.md CHANGED
@@ -1,6 +1,741 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.547.0 (2025-08-11)
5
+ ------------------
6
+
7
+ * Feature - This release adds AvailabilityZoneId support for CreateVolume, DescribeVolume, LaunchTemplates, RunInstances, DescribeInstances, CreateDefaultSubnet, SpotInstances, and CreateDefaultSubnet APIs.
8
+
9
+ 1.546.0 (2025-08-06)
10
+ ------------------
11
+
12
+ * Feature - Mark Elastic Inference Accelerators and Elastic Graphics Processor parameters as deprecated on the RunInstances and LaunchTemplate APIs.
13
+
14
+ 1.545.0 (2025-08-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.544.0 (2025-07-31)
20
+ ------------------
21
+
22
+ * Feature - Added support for the force option for the EC2 instance terminate command. This feature enables customers to recover resources associated with an instance stuck in the shutting-down state as a result of rare issues caused by a frozen operating system or an underlying hardware problem.
23
+
24
+ 1.543.0 (2025-07-30)
25
+ ------------------
26
+
27
+ * Feature - Release to show the next hop IP address for routes propagated by VPC Route Server into VPC route tables.
28
+
29
+ 1.542.0 (2025-07-25)
30
+ ------------------
31
+
32
+ * Feature - Transit Gateway native integration with AWS Network Firewall. Adding new enum value for the new Transit Gateway Attachment type.
33
+
34
+ 1.541.0 (2025-07-23)
35
+ ------------------
36
+
37
+ * Feature - Added support for skip-os-shutdown option for the EC2 instance stop and terminate operations. This feature enables customers to bypass the graceful OS shutdown, supporting faster state transitions when instance data preservation isn't critical.
38
+
39
+ 1.540.0 (2025-07-21)
40
+ ------------------
41
+
42
+ * Feature - This release adds support for C8gn, F2 and P6e-GB200 Instance types
43
+
44
+ 1.539.0 (2025-07-17)
45
+ ------------------
46
+
47
+ * Feature - AWS Free Tier Version2 Support
48
+
49
+ 1.538.0 (2025-07-15)
50
+ ------------------
51
+
52
+ * Feature - This release adds support for volume initialization status, which enables you to monitor when the initialization process for an EBS volume is completed. This release also adds IPv6 support to EC2 Instance Connect Endpoints, allowing you to connect to your EC2 Instance via a private IPv6 address.
53
+
54
+ 1.537.0 (2025-07-09)
55
+ ------------------
56
+
57
+ * Feature - Adds support to Capacity Blocks for ML for purchasing EC2 P6e-GB200 UltraServers. Customers can now purchase u-p6e-gb200x72 and u-p6e-gb200x36 UltraServers. Adds new DescribeCapacityBlocks andDescribeCapacityBlockStatus APIs. Adds support for CapacityBlockId to DescribeInstanceTopology.
58
+
59
+ 1.536.0 (2025-07-03)
60
+ ------------------
61
+
62
+ * Feature - This release adds GroupOwnerId as a response member to the DescribeSecurityGroupVpcAssociations API and also adds waiters for SecurityGroupVpcAssociations (SecurityGroupVpcAssociationAssociated and SecurityGroupVpcAssociationDisassociated).
63
+
64
+ 1.535.0 (2025-07-02)
65
+ ------------------
66
+
67
+ * Feature - AWS Site-to-Site VPN now supports IPv6 addresses on outer tunnel IPs, making it easier for customers to build or transition to IPv6-only networks.
68
+
69
+ 1.534.0 (2025-07-01)
70
+ ------------------
71
+
72
+ * Feature - Add Context to GetInstanceTypesFromInstanceRequirements API
73
+
74
+ 1.533.0 (2025-06-26)
75
+ ------------------
76
+
77
+ * Feature - This release adds support for OdbNetworkArn as a target in VPC Route Tables
78
+
79
+ 1.532.0 (2025-06-24)
80
+ ------------------
81
+
82
+ * Feature - This release allows you to create and register AMIs while maintaining their underlying EBS snapshots within Local Zones.
83
+
84
+ 1.531.0 (2025-06-09)
85
+ ------------------
86
+
87
+ * Feature - Release to support Elastic VMware Service (Amazon EVS) Subnet and Amazon EVS Network Interface Types.
88
+
89
+ 1.530.0 (2025-06-02)
90
+ ------------------
91
+
92
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
93
+
94
+ 1.529.0 (2025-05-28)
95
+ ------------------
96
+
97
+ * Feature - Enable the option to automatically delete underlying Amazon EBS snapshots when deregistering Amazon Machine Images (AMIs)
98
+
99
+ 1.528.0 (2025-05-27)
100
+ ------------------
101
+
102
+ * Feature - This release adds three features - option to store AWS Site-to-Site VPN pre-shared keys in AWS Secrets Manager, GetActiveVpnTunnelStatus API to check the in-use VPN algorithms, and SampleType option in GetVpnConnectionDeviceSampleConfiguration API to get recommended sample configs for VPN devices.
103
+
104
+ 1.527.0 (2025-05-23)
105
+ ------------------
106
+
107
+ * Feature - This release adds support for the C7i-flex, M7i-flex, I7i, I7ie, I8g, P6-b200, Trn2, C8gd, M8gd and R8gd instances
108
+
109
+ 1.526.0 (2025-05-21)
110
+ ------------------
111
+
112
+ * Feature - Release of Dualstack and Ipv6-only EC2 Public DNS hostnames
113
+
114
+ 1.525.0 (2025-05-20)
115
+ ------------------
116
+
117
+ * Feature - This release expands the ModifyInstanceMaintenanceOptions API to enable or disable instance migration during customer-initiated reboots for EC2 Scheduled Reboot Events.
118
+
119
+ 1.524.0 (2025-05-19)
120
+ ------------------
121
+
122
+ * Feature - This release includes new APIs for System Integrity Protection (SIP) configuration and automated root volume ownership delegation for EC2 Mac instances.
123
+
124
+ 1.523.0 (2025-05-12)
125
+ ------------------
126
+
127
+ * Feature - EC2 - Adding support for AvailabilityZoneId
128
+
129
+ 1.522.0 (2025-05-08)
130
+ ------------------
131
+
132
+ * Feature - Launching the feature to support ENA queues offering flexibility to support multiple queues per Enhanced Network Interface (ENI)
133
+
134
+ 1.521.0 (2025-05-07)
135
+ ------------------
136
+
137
+ * Feature - This release adds API support for Path Component Exclusion (Filter Out ARN) for Reachability Analyzer
138
+
139
+ 1.520.0 (2025-05-06)
140
+ ------------------
141
+
142
+ * Feature - This release adds support for Amazon EBS Provisioned Rate for Volume Initialization, which lets you specify a volume initialization rate to ensure that your EBS volumes are initialized in a predictable amount of time.
143
+
144
+ 1.519.0 (2025-05-05)
145
+ ------------------
146
+
147
+ * Feature - This update introduces API operations to manage and create local gateway VIF and VIF groups. It also includes API operations to describe Outpost LAGs and service link VIFs.
148
+
149
+ 1.518.0 (2025-05-01)
150
+ ------------------
151
+
152
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
153
+
154
+ 1.517.0 (2025-04-30)
155
+ ------------------
156
+
157
+ * Feature - Launch of cost distribution feature for IPAM owners to distribute costs to internal teams.
158
+
159
+ 1.516.0 (2025-04-22)
160
+ ------------------
161
+
162
+ * Feature - Added support for ClientRouteEnforcementOptions flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
163
+
164
+ 1.515.0 (2025-04-04)
165
+ ------------------
166
+
167
+ * Feature - Doc-only updates for Amazon EC2
168
+
169
+ 1.514.0 (2025-03-31)
170
+ ------------------
171
+
172
+ * Feature - Release VPC Route Server, a new feature allowing dynamic routing in VPCs.
173
+
174
+ 1.513.0 (2025-03-19)
175
+ ------------------
176
+
177
+ * Feature - Doc-only updates for EC2 for March 2025.
178
+
179
+ 1.512.0 (2025-03-13)
180
+ ------------------
181
+
182
+ * Feature - This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
183
+
184
+ 1.511.0 (2025-03-11)
185
+ ------------------
186
+
187
+ * Feature - This release adds the GroupLongName field to the response of the DescribeAvailabilityZones API.
188
+
189
+ 1.510.0 (2025-03-07)
190
+ ------------------
191
+
192
+ * Feature - Add serviceManaged field to DescribeAddresses API response.
193
+
194
+ 1.509.0 (2025-03-03)
195
+ ------------------
196
+
197
+ * Feature - Update the DescribeVpcs response
198
+
199
+ 1.508.0 (2025-02-26)
200
+ ------------------
201
+
202
+ * Feature - Amazon EC2 Fleet customers can now override the Block Device Mapping specified in the Launch Template when creating a new Fleet request, saving the effort of creating and associating new Launch Templates to customize the Block Device Mapping.
203
+
204
+ 1.507.0 (2025-02-25)
205
+ ------------------
206
+
207
+ * Feature - Adds support for time-based EBS-backed AMI copy operations. Time-based copy ensures that EBS-backed AMIs are copied within and across Regions in a specified timeframe.
208
+
209
+ 1.506.0 (2025-02-18)
210
+ ------------------
211
+
212
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
213
+
214
+ 1.505.0 (2025-02-11)
215
+ ------------------
216
+
217
+ * Feature - Adding support for the new fullSnapshotSizeInBytes field in the response of the EC2 EBS DescribeSnapshots API. This field represents the size of all the blocks that were written to the source volume at the time the snapshot was created.
218
+
219
+ 1.504.0 (2025-02-06)
220
+ ------------------
221
+
222
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
223
+
224
+ 1.503.0 (2025-01-28)
225
+ ------------------
226
+
227
+ * Feature - This release changes the CreateFleet CLI and SDK's such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
228
+
229
+ 1.502.0 (2025-01-23)
230
+ ------------------
231
+
232
+ * Feature - Added "future" allocation type for future dated capacity reservation
233
+
234
+ 1.501.0 (2025-01-17)
235
+ ------------------
236
+
237
+ * Feature - Release u7i-6tb.112xlarge, u7i-8tb.112xlarge, u7inh-32tb.480xlarge, p5e.48xlarge, p5en.48xlarge, f2.12xlarge, f2.48xlarge, trn2.48xlarge instance types.
238
+
239
+ 1.500.0 (2025-01-15)
240
+ ------------------
241
+
242
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
243
+
244
+ 1.499.0 (2025-01-13)
245
+ ------------------
246
+
247
+ * Feature - Add support for DisconnectOnSessionTimeout flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
248
+
249
+ 1.498.0 (2024-12-16)
250
+ ------------------
251
+
252
+ * Feature - This release adds support for EBS local snapshots in AWS Dedicated Local Zones, which allows you to store snapshots of EBS volumes locally in Dedicated Local Zones.
253
+
254
+ 1.497.0 (2024-12-13)
255
+ ------------------
256
+
257
+ * Feature - This release adds GroupId to the response for DeleteSecurityGroup.
258
+
259
+ 1.496.0 (2024-12-09)
260
+ ------------------
261
+
262
+ * Feature - This release includes a new API for modifying instance network-performance-options after launch.
263
+
264
+ 1.495.0 (2024-12-02)
265
+ ------------------
266
+
267
+ * Feature - Adds support for declarative policies that allow you to enforce desired configuration across an AWS organization through configuring account attributes. Adds support for Allowed AMIs that allows you to limit the use of AMIs in AWS accounts. Adds support for connectivity over non-HTTP protocols.
268
+
269
+ 1.494.0 (2024-11-26)
270
+ ------------------
271
+
272
+ * Feature - Adds support for Time-based Copy for EBS Snapshots and Cross Region PrivateLink. Time-based Copy ensures that EBS Snapshots are copied within and across AWS Regions in a specified timeframe. Cross Region PrivateLink enables customers to connect to VPC endpoint services hosted in other AWS Regions.
273
+
274
+ 1.493.0 (2024-11-21)
275
+ ------------------
276
+
277
+ * Feature - Adds support for requesting future-dated Capacity Reservations with a minimum commitment duration, enabling IPAM for organizational units within AWS Organizations, reserving EC2 Capacity Blocks that start in 30 minutes, and extending the end date of existing Capacity Blocks.
278
+
279
+ 1.492.0 (2024-11-20)
280
+ ------------------
281
+
282
+ * Feature - With this release, customers can express their desire to launch instances only in an ODCR or ODCR group rather than OnDemand capacity. Customers can express their baseline instances' CPU-performance in attribute-based Instance Requirements configuration by referencing an instance family.
283
+
284
+ 1.491.0 (2024-11-19)
285
+ ------------------
286
+
287
+ * Feature - This release adds VPC Block Public Access (VPC BPA), a new declarative control which blocks resources in VPCs and subnets that you own in a Region from reaching or being reached from the internet through internet gateways and egress-only internet gateways.
288
+
289
+ 1.490.0 (2024-11-18)
290
+ ------------------
291
+
292
+ * Feature - Adding request and response elements for managed resources.
293
+
294
+ 1.489.0 (2024-11-15)
295
+ ------------------
296
+
297
+ * Feature - Remove non-functional enum variants for FleetCapacityReservationUsageStrategy
298
+
299
+ 1.488.0 (2024-11-13)
300
+ ------------------
301
+
302
+ * Feature - This release adds the source AMI details in DescribeImages API
303
+
304
+ 1.487.0 (2024-11-06)
305
+ ------------------
306
+
307
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
308
+
309
+ 1.486.0 (2024-10-30)
310
+ ------------------
311
+
312
+ * Feature - This release adds two new capabilities to VPC Security Groups: Security Group VPC Associations and Shared Security Groups.
313
+
314
+ 1.485.0 (2024-10-24)
315
+ ------------------
316
+
317
+ * Feature - This release includes a new API to describe some details of the Amazon Machine Images (AMIs) that were used to launch EC2 instances, even if those AMIs are no longer available for use.
318
+
319
+ 1.484.0 (2024-10-23)
320
+ ------------------
321
+
322
+ * Feature - Amazon EC2 X8g, C8g and M8g instances are powered by AWS Graviton4 processors. X8g provide the lowest cost per GiB of memory among Graviton4 instances. C8g provide the best price performance for compute-intensive workloads. M8g provide the best price performance in for general purpose workloads.
323
+
324
+ 1.483.0 (2024-10-21)
325
+ ------------------
326
+
327
+ * Feature - Amazon EC2 now allows you to create network interfaces with just the EFA driver and no ENA driver by specifying the network interface type as efa-only.
328
+
329
+ 1.482.0 (2024-10-18)
330
+ ------------------
331
+
332
+ * Feature - RequestSpotInstances and RequestSpotFleet feature release.
333
+
334
+ 1.481.0 (2024-10-10)
335
+ ------------------
336
+
337
+ * Feature - This release adds support for assigning the billing of shared Amazon EC2 On-Demand Capacity Reservations.
338
+
339
+ 1.480.0 (2024-10-04)
340
+ ------------------
341
+
342
+ * Feature - Documentation updates for Amazon EC2.
343
+
344
+ 1.479.0 (2024-10-03)
345
+ ------------------
346
+
347
+ * Feature - This release includes a new API for modifying instance cpu-options after launch.
348
+
349
+ 1.478.0 (2024-09-25)
350
+ ------------------
351
+
352
+ * Feature - Updates to documentation for the transit gateway security group referencing feature.
353
+
354
+ 1.477.0 (2024-09-24)
355
+ ------------------
356
+
357
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
358
+
359
+ 1.476.0 (2024-09-23)
360
+ ------------------
361
+
362
+ * Feature - Amazon EC2 G6e instances powered by NVIDIA L40S Tensor Core GPUs are the most cost-efficient GPU instances for deploying generative AI models and the highest performance GPU instances for spatial computing workloads.
363
+
364
+ 1.475.0 (2024-09-20)
365
+ ------------------
366
+
367
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
368
+
369
+ 1.474.0 (2024-09-11)
370
+ ------------------
371
+
372
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
373
+
374
+ 1.473.0 (2024-09-10)
375
+ ------------------
376
+
377
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
378
+
379
+ 1.472.0 (2024-09-03)
380
+ ------------------
381
+
382
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
383
+
384
+ 1.471.0 (2024-08-28)
385
+ ------------------
386
+
387
+ * Feature - Amazon VPC IP Address Manager (IPAM) now allows customers to provision IPv4 CIDR blocks and allocate Elastic IP Addresses directly from IPAM pools with public IPv4 space
388
+
389
+ 1.470.0 (2024-08-21)
390
+ ------------------
391
+
392
+ * Feature - DescribeInstanceStatus now returns health information on EBS volumes attached to Nitro instances
393
+
394
+ 1.469.0 (2024-08-12)
395
+ ------------------
396
+
397
+ * Feature - This release adds new capabilities to manage On-Demand Capacity Reservations including the ability to split your reservation, move capacity between reservations, and modify the instance eligibility of your reservation.
398
+
399
+ 1.468.0 (2024-08-08)
400
+ ------------------
401
+
402
+ * Feature - Launch of private IPv6 addressing for VPCs and Subnets. VPC IPAM supports the planning and monitoring of private IPv6 usage.
403
+
404
+ 1.467.0 (2024-07-25)
405
+ ------------------
406
+
407
+ * Feature - EC2 Fleet now supports using custom identifiers to reference Amazon Machine Images (AMI) in launch requests that are configured to choose from a diversified list of instance types.
408
+
409
+ 1.466.0 (2024-07-18)
410
+ ------------------
411
+
412
+ * Feature - Amazon VPC IP Address Manager (IPAM) now supports Bring-Your-Own-IP (BYOIP) for IP addresses registered with any Internet Registry. This feature uses DNS TXT records to validate ownership of a public IP address range.
413
+
414
+ 1.465.0 (2024-07-10)
415
+ ------------------
416
+
417
+ * Feature - Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level
418
+
419
+ 1.464.0 (2024-07-02)
420
+ ------------------
421
+
422
+ * Feature - Documentation updates for Elastic Compute Cloud (EC2).
423
+
424
+ 1.463.0 (2024-06-25)
425
+ ------------------
426
+
427
+ * Feature - This release is for the launch of the new u7ib-12tb.224xlarge, R8g, c7gn.metal and mac2-m1ultra.metal instance types
428
+
429
+ 1.462.0 (2024-06-24)
430
+ ------------------
431
+
432
+ * Feature - Fix EC2 multi-protocol info in models.
433
+
434
+ 1.461.0 (2024-06-14)
435
+ ------------------
436
+
437
+ * Feature - Documentation updates for Amazon EC2.
438
+
439
+ 1.460.0 (2024-06-05)
440
+ ------------------
441
+
442
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
443
+
444
+ 1.459.0 (2024-06-04)
445
+ ------------------
446
+
447
+ * Feature - U7i instances with up to 32 TiB of DDR5 memory and 896 vCPUs are now available. C7i-flex instances are launched and are lower-priced variants of the Amazon EC2 C7i instances that offer a baseline level of CPU performance with the ability to scale up to the full compute performance 95% of the time.
448
+
449
+ 1.458.0 (2024-05-28)
450
+ ------------------
451
+
452
+ * Feature - Providing support to accept BgpAsnExtended attribute
453
+
454
+ 1.457.1 (2024-05-21)
455
+ ------------------
456
+
457
+ * Issue - Fix Aws::EC2::Resource not to set max_results automatically when the options contains the parameter that cannot be used with the parameter max_results.
458
+
459
+ 1.457.0 (2024-05-13)
460
+ ------------------
461
+
462
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
463
+
464
+ 1.456.0 (2024-05-08)
465
+ ------------------
466
+
467
+ * Feature - Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes
468
+
469
+ 1.455.0 (2024-05-02)
470
+ ------------------
471
+
472
+ * Feature - This release includes a new API for retrieving the public endorsement key of the EC2 instance's Nitro Trusted Platform Module (NitroTPM).
473
+
474
+ 1.454.0 (2024-05-01)
475
+ ------------------
476
+
477
+ * Feature - Documentation updates for Amazon EC2.
478
+
479
+ 1.453.0 (2024-04-25)
480
+ ------------------
481
+
482
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
483
+
484
+ 1.452.0 (2024-04-24)
485
+ ------------------
486
+
487
+ * Feature - Launching capability for customers to enable or disable automatic assignment of public IPv4 addresses to their network interface
488
+
489
+ 1.451.0 (2024-04-23)
490
+ ------------------
491
+
492
+ * Feature - This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API.
493
+
494
+ 1.450.0 (2024-04-17)
495
+ ------------------
496
+
497
+ * Feature - Documentation updates for Elastic Compute Cloud (EC2).
498
+
499
+ 1.449.0 (2024-04-16)
500
+ ------------------
501
+
502
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
503
+
504
+ 1.448.1 (2024-04-12)
505
+ ------------------
506
+
507
+ * Issue - Add default max_results value to Resource methods for legacy APIs that support un-paginated calls by default.
508
+
509
+ 1.448.0 (2024-04-04)
510
+ ------------------
511
+
512
+ * Feature - Amazon EC2 G6 instances powered by NVIDIA L4 Tensor Core GPUs can be used for a wide range of graphics-intensive and machine learning use cases. Gr6 instances also feature NVIDIA L4 GPUs and can be used for graphics workloads with higher memory requirements.
513
+
514
+ 1.447.0 (2024-03-28)
515
+ ------------------
516
+
517
+ * Feature - Amazon EC2 C7gd, M7gd and R7gd metal instances with up to 3.8 TB of local NVMe-based SSD block-level storage have up to 45% improved real-time NVMe storage performance than comparable Graviton2-based instances.
518
+
519
+ 1.446.0 (2024-03-26)
520
+ ------------------
521
+
522
+ * Feature - Documentation updates for Elastic Compute Cloud (EC2).
523
+
524
+ 1.445.0 (2024-03-25)
525
+ ------------------
526
+
527
+ * Feature - Added support for ModifyInstanceMetadataDefaults and GetInstanceMetadataDefaults to set Instance Metadata Service account defaults
528
+
529
+ 1.444.0 (2024-03-19)
530
+ ------------------
531
+
532
+ * Feature - This release adds the new DescribeMacHosts API operation for getting information about EC2 Mac Dedicated Hosts. Users can now see the latest macOS versions that their underlying Apple Mac can support without needing to be updated.
533
+
534
+ 1.443.0 (2024-03-15)
535
+ ------------------
536
+
537
+ * Feature - Add media accelerator and neuron device information on the describe instance types API.
538
+
539
+ 1.442.0 (2024-03-12)
540
+ ------------------
541
+
542
+ * Feature - Documentation updates for Amazon EC2.
543
+
544
+ 1.441.0 (2024-03-07)
545
+ ------------------
546
+
547
+ * Feature - This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation.
548
+
549
+ 1.440.0 (2024-03-01)
550
+ ------------------
551
+
552
+ * Feature - With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types.
553
+
554
+ 1.439.0 (2024-02-28)
555
+ ------------------
556
+
557
+ * Feature - This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
558
+
559
+ 1.438.0 (2024-02-14)
560
+ ------------------
561
+
562
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
563
+
564
+ 1.437.0 (2024-01-29)
565
+ ------------------
566
+
567
+ * Feature - EC2 Fleet customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type.
568
+
569
+ 1.436.0 (2024-01-26)
570
+ ------------------
571
+
572
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
573
+
574
+ 1.435.0 (2024-01-24)
575
+ ------------------
576
+
577
+ * Feature - Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs.
578
+
579
+ 1.434.0 (2024-01-22)
580
+ ------------------
581
+
582
+ * Feature - Documentation updates for Amazon EC2.
583
+
584
+ 1.433.0 (2024-01-11)
585
+ ------------------
586
+
587
+ * Feature - This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
588
+
589
+ 1.432.0 (2024-01-08)
590
+ ------------------
591
+
592
+ * Feature - Amazon EC2 R7iz bare metal instances are powered by custom 4th generation Intel Xeon Scalable processors.
593
+
594
+ 1.431.0 (2023-12-19)
595
+ ------------------
596
+
597
+ * Feature - Provision BYOIPv4 address ranges and advertise them by specifying the network border groups option in Los Angeles, Phoenix and Dallas AWS Local Zones.
598
+
599
+ 1.430.0 (2023-12-08)
600
+ ------------------
601
+
602
+ * Feature - M2 Mac instances are built on Apple M2 Mac mini computers. I4i instances are powered by 3rd generation Intel Xeon Scalable processors. C7i compute optimized, M7i general purpose and R7i memory optimized instances are powered by custom 4th Generation Intel Xeon Scalable processors.
603
+
604
+ 1.429.0 (2023-12-06)
605
+ ------------------
606
+
607
+ * Feature - Releasing the new cpuManufacturer attribute within the DescribeInstanceTypes API response which notifies our customers with information on who the Manufacturer is for the processor attached to the instance, for example: Intel.
608
+
609
+ 1.428.0 (2023-12-05)
610
+ ------------------
611
+
612
+ * Feature - Adds A10G, T4G, and H100 as accelerator name options and Habana as an accelerator manufacturer option for attribute based selection
613
+
614
+ 1.427.0 (2023-11-28)
615
+ ------------------
616
+
617
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
618
+
619
+ 1.426.0 (2023-11-22)
620
+ ------------------
621
+
622
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
623
+
624
+ 1.425.0 (2023-11-21)
625
+ ------------------
626
+
627
+ * Feature - Documentation updates for Amazon EC2.
628
+
629
+ 1.424.0 (2023-11-20)
630
+ ------------------
631
+
632
+ * Feature - This release adds support for Security group referencing over Transit gateways, enabling you to simplify Security group management and control of instance-to-instance traffic across VPCs that are connected by Transit gateway.
633
+
634
+ 1.423.0 (2023-11-17)
635
+ ------------------
636
+
637
+ * Feature - This release adds new features for Amazon VPC IP Address Manager (IPAM) Allowing a choice between Free and Advanced Tiers, viewing public IP address insights across regions and in Amazon Cloudwatch, use IPAM to plan your subnet IPs within a VPC and bring your own autonomous system number to IPAM.
638
+
639
+ 1.422.0 (2023-11-16)
640
+ ------------------
641
+
642
+ * Feature - Enable use of tenant-specific PublicSigningKeyUrl from device trust providers and onboard jumpcloud as a new device trust provider.
643
+
644
+ 1.421.0 (2023-11-15)
645
+ ------------------
646
+
647
+ * Feature - AWS EBS now supports Snapshot Lock, giving users the ability to lock an EBS Snapshot to prohibit deletion of the snapshot. This release introduces the LockSnapshot, UnlockSnapshot & DescribeLockedSnapshots APIs to manage lock configuration for snapshots. The release also includes the dl2q_24xlarge.
648
+
649
+ 1.420.0 (2023-11-13)
650
+ ------------------
651
+
652
+ * Feature - Adds the new EC2 DescribeInstanceTopology API, which you can use to retrieve the network topology of your running instances on select platform types to determine their relative proximity to each other.
653
+
654
+ 1.419.0 (2023-11-10)
655
+ ------------------
656
+
657
+ * Feature - EC2 adds API updates to enable ENA Express at instance launch time.
658
+
659
+ 1.418.0 (2023-11-09)
660
+ ------------------
661
+
662
+ * Feature - AWS EBS now supports Block Public Access for EBS Snapshots. This release introduces the EnableSnapshotBlockPublicAccess, DisableSnapshotBlockPublicAccess and GetSnapshotBlockPublicAccessState APIs to manage account-level public access settings for EBS Snapshots in an AWS Region.
663
+
664
+ 1.417.0 (2023-10-31)
665
+ ------------------
666
+
667
+ * Feature - Capacity Blocks for ML are a new EC2 purchasing option for reserving GPU instances on a future date to support short duration machine learning (ML) workloads. Capacity Blocks automatically place instances close together inside Amazon EC2 UltraClusters for low-latency, high-throughput networking.
668
+
669
+ 1.416.0 (2023-10-26)
670
+ ------------------
671
+
672
+ * Feature - Launching GetSecurityGroupsForVpc API. This API gets security groups that can be associated by the AWS account making the request with network interfaces in the specified VPC.
673
+
674
+ 1.415.0 (2023-10-24)
675
+ ------------------
676
+
677
+ * Feature - This release updates the documentation for InstanceInterruptionBehavior and HibernationOptionsRequest to more accurately describe the behavior of these two parameters when using Spot hibernation.
678
+
679
+ 1.414.0 (2023-10-19)
680
+ ------------------
681
+
682
+ * Feature - Amazon EC2 C7a instances, powered by 4th generation AMD EPYC processors, are ideal for high performance, compute-intensive workloads such as high performance computing. Amazon EC2 R7i instances are next-generation memory optimized and powered by custom 4th Generation Intel Xeon Scalable processors.
683
+
684
+ 1.413.0 (2023-10-12)
685
+ ------------------
686
+
687
+ * Feature - This release adds Ubuntu Pro as a supported platform for On-Demand Capacity Reservations and adds support for setting an Amazon Machine Image (AMI) to disabled state. Disabling the AMI makes it private if it was previously shared, and prevents new EC2 instance launches from it.
688
+
689
+ 1.412.0 (2023-10-06)
690
+ ------------------
691
+
692
+ * Feature - Documentation updates for Elastic Compute Cloud (EC2).
693
+
694
+ 1.411.0 (2023-10-02)
695
+ ------------------
696
+
697
+ * Feature - Introducing Amazon EC2 R7iz instances with 3.9 GHz sustained all-core turbo frequency and deliver up to 20% better performance than previous generation z1d instances.
698
+
699
+ 1.410.0 (2023-09-28)
700
+ ------------------
701
+
702
+ * Feature - Adds support for Customer Managed Key encryption for Amazon Verified Access resources
703
+
704
+ 1.409.0 (2023-09-27)
705
+ ------------------
706
+
707
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
708
+
709
+ 1.408.0 (2023-09-26)
710
+ ------------------
711
+
712
+ * Feature - The release includes AWS verified access to support FIPs compliance in North America regions
713
+
714
+ 1.407.0 (2023-09-22)
715
+ ------------------
716
+
717
+ * Feature - EC2 M2 Pro Mac instances are powered by Apple M2 Pro Mac Mini computers featuring 12 core CPU, 19 core GPU, 32 GiB of memory, and 16 core Apple Neural Engine and uniquely enabled by the AWS Nitro System through high-speed Thunderbolt connections.
718
+
719
+ 1.406.0 (2023-09-19)
720
+ ------------------
721
+
722
+ * Feature - This release adds support for C7i, and R7a instance types.
723
+
724
+ 1.405.0 (2023-09-12)
725
+ ------------------
726
+
727
+ * Feature - This release adds support for restricting public sharing of AMIs through AMI Block Public Access
728
+
729
+ 1.404.0 (2023-09-06)
730
+ ------------------
731
+
732
+ * Feature - This release adds 'outpost' location type to the DescribeInstanceTypeOfferings API, allowing customers that have been allowlisted for outpost to query their offerings in the API.
733
+
734
+ 1.403.0 (2023-09-05)
735
+ ------------------
736
+
737
+ * Feature - Introducing Amazon EC2 C7gd, M7gd, and R7gd Instances with up to 3.8 TB of local NVMe-based SSD block-level storage. These instances are powered by AWS Graviton3 processors, delivering up to 25% better performance over Graviton2-based instances.
738
+
4
739
  1.402.0 (2023-08-24)
5
740
  ------------------
6
741