aws-sdk-ec2 1.563.0 → 1.564.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d4c1fb1d573ec32c26dffa6611e5d30c7191f647dab2cb2fec1a79e5ba7bd90
4
- data.tar.gz: d180a135b12de8032914f1d2accc90f4dfc8943d21304bd0a7857d1c913ebf2f
3
+ metadata.gz: 647af46171fec8659d9e486bf7addf499883d03dc0d8ac43dec102fd355804e5
4
+ data.tar.gz: 4d3c97936e6097d63fba1147818f4df9bd52f6e4a1177ecc31874532d8281757
5
5
  SHA512:
6
- metadata.gz: 79bbf7b7ea54f4c077fb5578b3ff61626f197578774daab0b11aeaabf62b283a601e11912f8262aaaa89215c98c14d8e54f21b9fb6e356ab6c4e55c10b838688
7
- data.tar.gz: f259db3bbcfdce7035626c0f2b5e55c542c8c57d7b69e8c313c478a4292f9e315b2b9bfef799fd99903ba5be3e2b90430ce8afdc5c681627059e99844ea724cf
6
+ metadata.gz: ec9c4ae4e6c28a43b56b830a2ed494cc99970fa3b77c649777f8d18bf995eb68d20eea4c5967760280cffa7ca396a6f9be1549e742151d2f05d10058db8dc9dc
7
+ data.tar.gz: 6eca1168d1aad4c65fe72a081727533bcd226eec4901a3fa9b67a3922625dc351140d655f2899b186371b9454d084e991ea467b0efef90863ecc3b424f38f480
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.564.0 (2025-10-17)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon EC2.
8
+
4
9
  1.563.0 (2025-10-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.563.0
1
+ 1.564.0
@@ -4571,6 +4571,19 @@ module Aws::EC2
4571
4571
  # and the instances continue to run until they are interrupted or you
4572
4572
  # terminate them manually.
4573
4573
  #
4574
+ # **Terminating an instance is permanent and irreversible.**
4575
+ #
4576
+ # After you terminate an instance, you can no longer connect to it, and
4577
+ # it can't be recovered. All attached Amazon EBS volumes that are
4578
+ # configured to be deleted on termination are also permanently deleted
4579
+ # and can't be recovered. All data stored on instance store volumes is
4580
+ # permanently lost. For more information, see [ How instance termination
4581
+ # works][1].
4582
+ #
4583
+ # Before you terminate an instance, ensure that you have backed up all
4584
+ # data that you need to retain after the termination to persistent
4585
+ # storage.
4586
+ #
4574
4587
  # **Restrictions**
4575
4588
  #
4576
4589
  # * You can delete up to 100 fleets in a single request. If you exceed
@@ -4578,6 +4591,10 @@ module Aws::EC2
4578
4591
  #
4579
4592
  # ^
4580
4593
  #
4594
+ #
4595
+ #
4596
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ec2-instance-termination-works.html
4597
+ #
4581
4598
  # @option params [Boolean] :dry_run
4582
4599
  # Checks whether you have the required permissions for the action,
4583
4600
  # without actually making the request, and provides an error response.
@@ -16854,31 +16871,31 @@ module Aws::EC2
16854
16871
  req.send_request(options)
16855
16872
  end
16856
16873
 
16857
- # Creates a VPC with the specified CIDR blocks. For more information,
16858
- # see [IP addressing for your VPCs and subnets][1] in the *Amazon VPC
16859
- # User Guide*.
16874
+ # Creates a VPC with the specified CIDR blocks.
16860
16875
  #
16861
- # You can optionally request an IPv6 CIDR block for the VPC. You can
16862
- # request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6
16863
- # addresses or an IPv6 CIDR block from an IPv6 address pool that you
16864
- # provisioned through bring your own IP addresses ([BYOIP][2]).
16876
+ # A VPC must have an associated IPv4 CIDR block. You can choose an IPv4
16877
+ # CIDR block or an IPAM-allocated IPv4 CIDR block. You can optionally
16878
+ # associate an IPv6 CIDR block with a VPC. You can choose an IPv6 CIDR
16879
+ # block, an Amazon-provided IPv6 CIDR block, an IPAM-allocated IPv6 CIDR
16880
+ # block, or an IPv6 CIDR block that you brought to Amazon Web Services.
16881
+ # For more information, see [IP addressing for your VPCs and subnets][1]
16882
+ # in the *Amazon VPC User Guide*.
16865
16883
  #
16866
16884
  # By default, each instance that you launch in the VPC has the default
16867
16885
  # DHCP options, which include only a default DNS server that we provide
16868
- # (AmazonProvidedDNS). For more information, see [DHCP option sets][3]
16886
+ # (AmazonProvidedDNS). For more information, see [DHCP option sets][2]
16869
16887
  # in the *Amazon VPC User Guide*.
16870
16888
  #
16871
- # You can specify the instance tenancy value for the VPC when you create
16872
- # it. You can't change this value for the VPC after you create it. For
16873
- # more information, see [Dedicated Instances][4] in the *Amazon EC2 User
16874
- # Guide*.
16889
+ # You can specify DNS options and tenancy for a VPC when you create it.
16890
+ # You can't change the tenancy of a VPC after you create it. For more
16891
+ # information, see [VPC configuration options][3] in the *Amazon VPC
16892
+ # User Guide*.
16875
16893
  #
16876
16894
  #
16877
16895
  #
16878
16896
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html
16879
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html
16880
- # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_DHCP_Options.html
16881
- # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-instance.html
16897
+ # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_DHCP_Options.html
16898
+ # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/create-vpc-options.html
16882
16899
  #
16883
16900
  # @option params [String] :cidr_block
16884
16901
  # The IPv4 network range for the VPC, in CIDR notation. For example,
@@ -18431,6 +18448,19 @@ module Aws::EC2
18431
18448
  # leaving 1000 or fewer. Then delete the fleet, and the remaining
18432
18449
  # instances will be terminated automatically.
18433
18450
  #
18451
+ # **Terminating an instance is permanent and irreversible.**
18452
+ #
18453
+ # After you terminate an instance, you can no longer connect to it, and
18454
+ # it can't be recovered. All attached Amazon EBS volumes that are
18455
+ # configured to be deleted on termination are also permanently deleted
18456
+ # and can't be recovered. All data stored on instance store volumes is
18457
+ # permanently lost. For more information, see [ How instance termination
18458
+ # works][1].
18459
+ #
18460
+ # Before you terminate an instance, ensure that you have backed up all
18461
+ # data that you need to retain after the termination to persistent
18462
+ # storage.
18463
+ #
18434
18464
  # **Restrictions**
18435
18465
  #
18436
18466
  # * You can delete up to 25 fleets of type `instant` in a single
@@ -18446,11 +18476,12 @@ module Aws::EC2
18446
18476
  # are deleted.
18447
18477
  #
18448
18478
  # For more information, see [Delete an EC2 Fleet request and the
18449
- # instances in the fleet][1] in the *Amazon EC2 User Guide*.
18479
+ # instances in the fleet][2] in the *Amazon EC2 User Guide*.
18450
18480
  #
18451
18481
  #
18452
18482
  #
18453
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/delete-fleet.html
18483
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ec2-instance-termination-works.html
18484
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/delete-fleet.html
18454
18485
  #
18455
18486
  # @option params [Boolean] :dry_run
18456
18487
  # Checks whether you have the required permissions for the action,
@@ -36967,21 +36998,11 @@ module Aws::EC2
36967
36998
  #
36968
36999
  # * `group-owner-id`: The group owner ID.
36969
37000
  #
36970
- # * `vpc-id`: The ID of the associated VPC.
36971
- #
36972
- # * `vpc-owner-id`: The account ID of the VPC owner.
36973
- #
36974
37001
  # * `state`: The state of the association.
36975
37002
  #
36976
- # * `tag:<key>`: The key/value combination of a tag assigned to the
36977
- # resource. Use the tag key in the filter name and the tag value as
36978
- # the filter value. For example, to find all resources that have a tag
36979
- # with the key `Owner` and the value `TeamA`, specify `tag:Owner` for
36980
- # the filter name and `TeamA` for the filter value.
37003
+ # * `vpc-id`: The ID of the associated VPC.
36981
37004
  #
36982
- # * `tag-key`: The key of a tag assigned to the resource. Use this
36983
- # filter to find all resources assigned a tag with a specific key,
36984
- # regardless of the tag value.
37005
+ # * `vpc-owner-id`: The account ID of the VPC owner.
36985
37006
  #
36986
37007
  # @option params [String] :next_token
36987
37008
  # The token returned from a previous paginated request. Pagination
@@ -67159,8 +67180,22 @@ module Aws::EC2
67159
67180
  req.send_request(options)
67160
67181
  end
67161
67182
 
67162
- # Shuts down the specified instances. This operation is [idempotent][1];
67163
- # if you terminate an instance more than once, each call succeeds.
67183
+ # Terminates (deletes) the specified instances. This operation is
67184
+ # [idempotent][1]; if you terminate an instance more than once, each
67185
+ # call succeeds.
67186
+ #
67187
+ # **Terminating an instance is permanent and irreversible.**
67188
+ #
67189
+ # After you terminate an instance, you can no longer connect to it, and
67190
+ # it can't be recovered. All attached Amazon EBS volumes that are
67191
+ # configured to be deleted on termination are also permanently deleted
67192
+ # and can't be recovered. All data stored on instance store volumes is
67193
+ # permanently lost. For more information, see [ How instance termination
67194
+ # works][2].
67195
+ #
67196
+ # Before you terminate an instance, ensure that you have backed up all
67197
+ # data that you need to retain after the termination to persistent
67198
+ # storage.
67164
67199
  #
67165
67200
  # If you specify multiple instances and the request fails (for example,
67166
67201
  # because of a single incorrect instance ID), none of the instances are
@@ -67218,22 +67253,23 @@ module Aws::EC2
67218
67253
  # volumes with the `DeleteOnTermination` block device mapping parameter
67219
67254
  # set to `true` are automatically deleted. For more information about
67220
67255
  # the differences between stopping and terminating instances, see
67221
- # [Amazon EC2 instance state changes][2] in the *Amazon EC2 User Guide*.
67256
+ # [Amazon EC2 instance state changes][3] in the *Amazon EC2 User Guide*.
67222
67257
  #
67223
67258
  # When you terminate an instance, we attempt to terminate it forcibly
67224
67259
  # after a short while. If your instance appears stuck in the
67225
67260
  # shutting-down state after a period of time, there might be an issue
67226
67261
  # with the underlying host computer. For more information about
67227
67262
  # terminating and troubleshooting terminating your instances, see
67228
- # [Terminate Amazon EC2 instances][3] and [Troubleshooting terminating
67229
- # your instance][4] in the *Amazon EC2 User Guide*.
67263
+ # [Terminate Amazon EC2 instances][4] and [Troubleshooting terminating
67264
+ # your instance][5] in the *Amazon EC2 User Guide*.
67230
67265
  #
67231
67266
  #
67232
67267
  #
67233
67268
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
67234
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html
67235
- # [3]: https://docs.aws.amazon.com/
67236
- # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesShuttingDown.html
67269
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ec2-instance-termination-works.html
67270
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html
67271
+ # [4]: https://docs.aws.amazon.com/
67272
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesShuttingDown.html
67237
67273
  #
67238
67274
  # @option params [required, Array<String>] :instance_ids
67239
67275
  # The IDs of the instances.
@@ -67930,7 +67966,7 @@ module Aws::EC2
67930
67966
  tracer: tracer
67931
67967
  )
67932
67968
  context[:gem_name] = 'aws-sdk-ec2'
67933
- context[:gem_version] = '1.563.0'
67969
+ context[:gem_version] = '1.564.0'
67934
67970
  Seahorse::Client::Request.new(handlers, context)
67935
67971
  end
67936
67972
 
@@ -29098,21 +29098,11 @@ module Aws::EC2
29098
29098
  #
29099
29099
  # * `group-owner-id`: The group owner ID.
29100
29100
  #
29101
- # * `vpc-id`: The ID of the associated VPC.
29102
- #
29103
- # * `vpc-owner-id`: The account ID of the VPC owner.
29104
- #
29105
29101
  # * `state`: The state of the association.
29106
29102
  #
29107
- # * `tag:<key>`: The key/value combination of a tag assigned to the
29108
- # resource. Use the tag key in the filter name and the tag value as
29109
- # the filter value. For example, to find all resources that have a
29110
- # tag with the key `Owner` and the value `TeamA`, specify
29111
- # `tag:Owner` for the filter name and `TeamA` for the filter value.
29103
+ # * `vpc-id`: The ID of the associated VPC.
29112
29104
  #
29113
- # * `tag-key`: The key of a tag assigned to the resource. Use this
29114
- # filter to find all resources assigned a tag with a specific key,
29115
- # regardless of the tag value.
29105
+ # * `vpc-owner-id`: The account ID of the VPC owner.
29116
29106
  # @return [Array<Types::Filter>]
29117
29107
  #
29118
29108
  # @!attribute [rw] next_token
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.563.0'
81
+ GEM_VERSION = '1.564.0'
82
82
 
83
83
  end
84
84
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.563.0
4
+ version: 1.564.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services