aws-sdk-ec2 1.469.0 → 1.471.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: e21ca0d4a8c414edf0b8ee7a21c38e5b65726ec28dc8ce34d71d47706dc95287
4
- data.tar.gz: ec33ebfaad5835daa02a1c1197a7842393e8e3cab4d8fab8f89056f0809880ff
3
+ metadata.gz: c1d402b01d90a3c9e5fc1084946c8fe5e532bc67f31fddccf1843ef4a78d9e89
4
+ data.tar.gz: f8c16f31763fe418980b88aae7fef4a15352e8dcaee2b3f835502cdc9f5daba8
5
5
  SHA512:
6
- metadata.gz: 8a915465fa02505cb3844c0a91a441f7a87695e67c7d7d19e33b2e7f0021ab5c3c8f7cf3fe7058dc090a91da294927755decaff2d8cc443e2d88060642ba9d2b
7
- data.tar.gz: 5ef2b19b3fd5edada90347f9f4d8bb78ea0feb9c553f6394f017f37ec9b8ae2d72725a0db34fd60c8fbc1b1d7ac3d2bd4523416fb4718edbcf81abaac0557d10
6
+ metadata.gz: 9ff058d8c325ea21b7663de739e94c409472c9bfadd0c92683a0717b39bb5ffe45ec342fc10e20e81cbe42c9f77245fc89711b8696e359f22698f20657c17513
7
+ data.tar.gz: bad002863b26d6fa8d1217daa4d772118b66b4a855226885f5629d778e0772ca3a841a5cc5024a4acb54a24d3c391945822604d5dd3de2989b5c61b7fdde0a39
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.471.0 (2024-08-28)
5
+ ------------------
6
+
7
+ * 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
8
+
9
+ 1.470.0 (2024-08-21)
10
+ ------------------
11
+
12
+ * Feature - DescribeInstanceStatus now returns health information on EBS volumes attached to Nitro instances
13
+
4
14
  1.469.0 (2024-08-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.469.0
1
+ 1.471.0
@@ -969,6 +969,9 @@ module Aws::EC2
969
969
  # @option params [Array<Types::TagSpecification>] :tag_specifications
970
970
  # The tags to assign to the Elastic IP address.
971
971
  #
972
+ # @option params [String] :ipam_pool_id
973
+ # The ID of an IPAM pool.
974
+ #
972
975
  # @return [Types::AllocateAddressResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
973
976
  #
974
977
  # * {Types::AllocateAddressResult#public_ip #public_ip} => String
@@ -1017,6 +1020,7 @@ module Aws::EC2
1017
1020
  # ],
1018
1021
  # },
1019
1022
  # ],
1023
+ # ipam_pool_id: "IpamPoolId",
1020
1024
  # })
1021
1025
  #
1022
1026
  # @example Response structure
@@ -1291,7 +1295,7 @@ module Aws::EC2
1291
1295
  # resp.ipam_pool_allocation.ipam_pool_allocation_id #=> String
1292
1296
  # resp.ipam_pool_allocation.description #=> String
1293
1297
  # resp.ipam_pool_allocation.resource_id #=> String
1294
- # resp.ipam_pool_allocation.resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom", "subnet"
1298
+ # resp.ipam_pool_allocation.resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom", "subnet", "eip"
1295
1299
  # resp.ipam_pool_allocation.resource_region #=> String
1296
1300
  # resp.ipam_pool_allocation.resource_owner #=> String
1297
1301
  #
@@ -4482,36 +4486,28 @@ module Aws::EC2
4482
4486
  req.send_request(options)
4483
4487
  end
4484
4488
 
4485
- # Initiates the copy of an AMI. You can copy an AMI from one Region to
4486
- # another, or from a Region to an Outpost. You can't copy an AMI from
4487
- # an Outpost to a Region, from one Outpost to another, or within the
4488
- # same Outpost. To copy an AMI to another partition, see
4489
+ # Initiates an AMI copy operation. You can copy an AMI from one Region
4490
+ # to another, or from a Region to an Outpost. You can't copy an AMI
4491
+ # from an Outpost to a Region, from one Outpost to another, or within
4492
+ # the same Outpost. To copy an AMI to another partition, see
4489
4493
  # [CreateStoreImageTask][1].
4490
4494
  #
4491
- # To copy an AMI from one Region to another, specify the source Region
4492
- # using the **SourceRegion** parameter, and specify the destination
4493
- # Region using its endpoint. Copies of encrypted backing snapshots for
4494
- # the AMI are encrypted. Copies of unencrypted backing snapshots remain
4495
- # unencrypted, unless you set `Encrypted` during the copy operation. You
4496
- # cannot create an unencrypted copy of an encrypted backing snapshot.
4495
+ # When you copy an AMI from one Region to another, the destination
4496
+ # Region is the current Region.
4497
4497
  #
4498
- # To copy an AMI from a Region to an Outpost, specify the source Region
4499
- # using the **SourceRegion** parameter, and specify the ARN of the
4500
- # destination Outpost using **DestinationOutpostArn**. Backing snapshots
4501
- # copied to an Outpost are encrypted by default using the default
4502
- # encryption key for the Region, or a different key that you specify in
4503
- # the request using **KmsKeyId**. Outposts do not support unencrypted
4504
- # snapshots. For more information, [ Amazon EBS local snapshots on
4505
- # Outposts][2] in the *Amazon EBS User Guide*.
4498
+ # When you copy an AMI from a Region to an Outpost, specify the ARN of
4499
+ # the Outpost as the destination. Backing snapshots copied to an Outpost
4500
+ # are encrypted by default using the default encryption key for the
4501
+ # Region or the key that you specify. Outposts do not support
4502
+ # unencrypted snapshots.
4506
4503
  #
4507
- # For more information about the prerequisites and limits when copying
4508
- # an AMI, see [Copy an AMI][3] in the *Amazon EC2 User Guide*.
4504
+ # For information about the prerequisites when copying an AMI, see [Copy
4505
+ # an AMI][2] in the *Amazon EC2 User Guide*.
4509
4506
  #
4510
4507
  #
4511
4508
  #
4512
4509
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateStoreImageTask.html
4513
- # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
4514
- # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html
4510
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html
4515
4511
  #
4516
4512
  # @option params [String] :client_token
4517
4513
  # Unique, case-sensitive identifier you provide to ensure idempotency of
@@ -4531,12 +4527,12 @@ module Aws::EC2
4531
4527
  # you cannot create an unencrypted copy of an encrypted snapshot. The
4532
4528
  # default KMS key for Amazon EBS is used unless you specify a
4533
4529
  # non-default Key Management Service (KMS) KMS key using `KmsKeyId`. For
4534
- # more information, see [Amazon EBS encryption][1] in the *Amazon EBS
4535
- # User Guide*.
4530
+ # more information, see [Use encryption with EBS-backed AMIs][1] in the
4531
+ # *Amazon EC2 User Guide*.
4536
4532
  #
4537
4533
  #
4538
4534
  #
4539
- # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
4535
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AMIEncryption.html
4540
4536
  #
4541
4537
  # @option params [String] :kms_key_id
4542
4538
  # The identifier of the symmetric Key Management Service (KMS) KMS key
@@ -17739,7 +17735,7 @@ module Aws::EC2
17739
17735
  #
17740
17736
  # If you attempt to delete a security group that is associated with an
17741
17737
  # instance or network interface or is referenced by another security
17742
- # group, the operation fails with `DependencyViolation`.
17738
+ # group in the same VPC, the operation fails with `DependencyViolation`.
17743
17739
  #
17744
17740
  # @option params [String] :group_id
17745
17741
  # The ID of the security group.
@@ -24923,6 +24919,10 @@ module Aws::EC2
24923
24919
  # `impaired` \| `initializing` \| `insufficient-data` \|
24924
24920
  # `not-applicable`).
24925
24921
  #
24922
+ # * `attached-ebs-status.status` - The status of the attached EBS volume
24923
+ # for the instance (`ok` \| `impaired` \| `initializing` \|
24924
+ # `insufficient-data` \| `not-applicable`).
24925
+ #
24926
24926
  # @option params [Array<String>] :instance_ids
24927
24927
  # The instance IDs.
24928
24928
  #
@@ -25049,6 +25049,11 @@ module Aws::EC2
25049
25049
  # resp.instance_statuses[0].system_status.details[0].name #=> String, one of "reachability"
25050
25050
  # resp.instance_statuses[0].system_status.details[0].status #=> String, one of "passed", "failed", "insufficient-data", "initializing"
25051
25051
  # resp.instance_statuses[0].system_status.status #=> String, one of "ok", "impaired", "insufficient-data", "not-applicable", "initializing"
25052
+ # resp.instance_statuses[0].attached_ebs_status.details #=> Array
25053
+ # resp.instance_statuses[0].attached_ebs_status.details[0].impaired_since #=> Time
25054
+ # resp.instance_statuses[0].attached_ebs_status.details[0].name #=> String, one of "reachability"
25055
+ # resp.instance_statuses[0].attached_ebs_status.details[0].status #=> String, one of "passed", "failed", "insufficient-data", "initializing"
25056
+ # resp.instance_statuses[0].attached_ebs_status.status #=> String, one of "ok", "impaired", "insufficient-data", "not-applicable", "initializing"
25052
25057
  # resp.next_token #=> String
25053
25058
  #
25054
25059
  #
@@ -34060,9 +34065,9 @@ module Aws::EC2
34060
34065
 
34061
34066
  # Describes the stale security group rules for security groups in a
34062
34067
  # specified VPC. Rules are stale when they reference a deleted security
34063
- # group in the same VPC or peered VPC. Rules can also be stale if they
34064
- # reference a security group in a peer VPC for which the VPC peering
34065
- # connection has been deleted.
34068
+ # group in a peered VPC. Rules can also be stale if they reference a
34069
+ # security group in a peer VPC for which the VPC peering connection has
34070
+ # been deleted.
34066
34071
  #
34067
34072
  # @option params [Boolean] :dry_run
34068
34073
  # Checks whether you have the required permissions for the action,
@@ -39308,10 +39313,15 @@ module Aws::EC2
39308
39313
  # disable block public access for snapshots in a Region, users can
39309
39314
  # publicly share snapshots in that Region.
39310
39315
  #
39311
- # If block public access is enabled in `block-all-sharing` mode, and you
39312
- # disable block public access, all snapshots that were previously
39313
- # publicly shared are no longer treated as private and they become
39314
- # publicly accessible again.
39316
+ # Enabling block public access for snapshots in *block-all-sharing* mode
39317
+ # does not change the permissions for snapshots that are already
39318
+ # publicly shared. Instead, it prevents these snapshots from be publicly
39319
+ # visible and publicly accessible. Therefore, the attributes for these
39320
+ # snapshots still indicate that they are publicly shared, even though
39321
+ # they are not publicly available.
39322
+ #
39323
+ # If you disable block public access , these snapshots will become
39324
+ # publicly available again.
39315
39325
  #
39316
39326
  # For more information, see [ Block public access for snapshots][1] in
39317
39327
  # the *Amazon EBS User Guide* .
@@ -40946,10 +40956,15 @@ module Aws::EC2
40946
40956
  # that are already publicly shared are either treated as private or they
40947
40957
  # remain publicly shared, depending on the **State** that you specify.
40948
40958
  #
40949
- # If block public access is enabled in `block-all-sharing` mode, and you
40950
- # change the mode to `block-new-sharing`, all snapshots that were
40951
- # previously publicly shared are no longer treated as private and they
40952
- # become publicly accessible again.
40959
+ # Enabling block public access for snapshots in *block all sharing* mode
40960
+ # does not change the permissions for snapshots that are already
40961
+ # publicly shared. Instead, it prevents these snapshots from be publicly
40962
+ # visible and publicly accessible. Therefore, the attributes for these
40963
+ # snapshots still indicate that they are publicly shared, even though
40964
+ # they are not publicly available.
40965
+ #
40966
+ # If you later disable block public access or change the mode to *block
40967
+ # new sharing*, these snapshots will become publicly available again.
40953
40968
  #
40954
40969
  # For more information, see [ Block public access for snapshots][1] in
40955
40970
  # the *Amazon EBS User Guide*.
@@ -40968,16 +40983,6 @@ module Aws::EC2
40968
40983
  # publicly shared are treated as private and they are no longer
40969
40984
  # publicly available.
40970
40985
  #
40971
- # <note markdown="1"> If you enable block public access for snapshots in
40972
- # `block-all-sharing` mode, it does not change the permissions for
40973
- # snapshots that are already publicly shared. Instead, it prevents
40974
- # these snapshots from be publicly visible and publicly accessible.
40975
- # Therefore, the attributes for these snapshots still indicate that
40976
- # they are publicly shared, even though they are not publicly
40977
- # available.
40978
- #
40979
- # </note>
40980
- #
40981
40986
  # * `block-new-sharing` - Prevents only new public sharing of snapshots
40982
40987
  # in the Region. Users in the account will no longer be able to
40983
40988
  # request new public sharing. However, snapshots that are already
@@ -42799,7 +42804,7 @@ module Aws::EC2
42799
42804
  # resp.ipam_discovered_public_addresses[0].address_owner_id #=> String
42800
42805
  # resp.ipam_discovered_public_addresses[0].address_allocation_id #=> String
42801
42806
  # resp.ipam_discovered_public_addresses[0].association_status #=> String, one of "associated", "disassociated"
42802
- # resp.ipam_discovered_public_addresses[0].address_type #=> String, one of "service-managed-ip", "service-managed-byoip", "amazon-owned-eip", "byoip", "ec2-public-ip"
42807
+ # resp.ipam_discovered_public_addresses[0].address_type #=> String, one of "service-managed-ip", "service-managed-byoip", "amazon-owned-eip", "amazon-owned-contig", "byoip", "ec2-public-ip"
42803
42808
  # resp.ipam_discovered_public_addresses[0].service #=> String, one of "nat-gateway", "database-migration-service", "redshift", "elastic-container-service", "relational-database-service", "site-to-site-vpn", "load-balancer", "global-accelerator", "other"
42804
42809
  # resp.ipam_discovered_public_addresses[0].service_resource #=> String
42805
42810
  # resp.ipam_discovered_public_addresses[0].vpc_id #=> String
@@ -42980,7 +42985,7 @@ module Aws::EC2
42980
42985
  # resp.ipam_pool_allocations[0].ipam_pool_allocation_id #=> String
42981
42986
  # resp.ipam_pool_allocations[0].description #=> String
42982
42987
  # resp.ipam_pool_allocations[0].resource_id #=> String
42983
- # resp.ipam_pool_allocations[0].resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom", "subnet"
42988
+ # resp.ipam_pool_allocations[0].resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom", "subnet", "eip"
42984
42989
  # resp.ipam_pool_allocations[0].resource_region #=> String
42985
42990
  # resp.ipam_pool_allocations[0].resource_owner #=> String
42986
42991
  # resp.next_token #=> String
@@ -49896,6 +49901,18 @@ module Aws::EC2
49896
49901
  # in this subnet should return synthetic IPv6 addresses for IPv4-only
49897
49902
  # destinations.
49898
49903
  #
49904
+ # <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
49905
+ # from the subnet containing the IPv6-only workloads). For example, the
49906
+ # subnet containing the NAT gateway should have a `0.0.0.0/0` route
49907
+ # pointing to the internet gateway. For more information, see [Configure
49908
+ # DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
49909
+ #
49910
+ # </note>
49911
+ #
49912
+ #
49913
+ #
49914
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
49915
+ #
49899
49916
  # @option params [String] :private_dns_hostname_type_on_launch
49900
49917
  # The type of hostname to assign to instances in the subnet at launch.
49901
49918
  # For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
@@ -53417,8 +53434,9 @@ module Aws::EC2
53417
53434
 
53418
53435
  # Registers an AMI. When you're creating an instance-store backed AMI,
53419
53436
  # registering the AMI is the final step in the creation process. For
53420
- # more information about creating AMIs, see [Create your own AMI][1] in
53421
- # the *Amazon Elastic Compute Cloud User Guide*.
53437
+ # more information about creating AMIs, see [Create an AMI from a
53438
+ # snapshot][1] and [Create an instance-store backed AMI][2] in the
53439
+ # *Amazon EC2 User Guide*.
53422
53440
  #
53423
53441
  # <note markdown="1"> For Amazon EBS-backed instances, CreateImage creates and registers the
53424
53442
  # AMI in a single request, so you don't have to register the AMI
@@ -53441,28 +53459,28 @@ module Aws::EC2
53441
53459
  # encrypted, or encryption by default is enabled, the root volume of an
53442
53460
  # instance launched from the AMI is encrypted.
53443
53461
  #
53444
- # For more information, see [Create a Linux AMI from a snapshot][2] and
53445
- # [Use encryption with Amazon EBS-backed AMIs][3] in the *Amazon Elastic
53446
- # Compute Cloud User Guide*.
53462
+ # For more information, see [Create an AMI from a snapshot][1] and [Use
53463
+ # encryption with Amazon EBS-backed AMIs][3] in the *Amazon EC2 User
53464
+ # Guide*.
53447
53465
  #
53448
53466
  # **Amazon Web Services Marketplace product codes**
53449
53467
  #
53450
53468
  # If any snapshots have Amazon Web Services Marketplace product codes,
53451
53469
  # they are copied to the new AMI.
53452
53470
  #
53453
- # Windows and some Linux distributions, such as Red Hat Enterprise Linux
53454
- # (RHEL) and SUSE Linux Enterprise Server (SLES), use the Amazon EC2
53455
- # billing product code associated with an AMI to verify the subscription
53456
- # status for package updates. To create a new AMI for operating systems
53457
- # that require a billing product code, instead of registering the AMI,
53458
- # do the following to preserve the billing product code association:
53459
- #
53460
- # 1. Launch an instance from an existing AMI with that billing product
53461
- # code.
53462
- #
53463
- # 2. Customize the instance.
53464
- #
53465
- # 3. Create an AMI from the instance using CreateImage.
53471
+ # In most cases, AMIs for Windows, RedHat, SUSE, and SQL Server require
53472
+ # correct licensing information to be present on the AMI. For more
53473
+ # information, see [Understand AMI billing information][4] in the
53474
+ # *Amazon EC2 User Guide*. When creating an AMI from a snapshot, the
53475
+ # `RegisterImage` operation derives the correct billing information from
53476
+ # the snapshot's metadata, but this requires the appropriate metadata
53477
+ # to be present. To verify if the correct billing information was
53478
+ # applied, check the `PlatformDetails` field on the new AMI. If the
53479
+ # field is empty or doesn't match the expected operating system code
53480
+ # (for example, Windows, RedHat, SUSE, or SQL), the AMI creation was
53481
+ # unsuccessful, and you should discard the AMI and instead create the
53482
+ # AMI from an instance using CreateImage. For more information, see
53483
+ # [Create an AMI from an instance ][5] in the *Amazon EC2 User Guide*.
53466
53484
  #
53467
53485
  # If you purchase a Reserved Instance to apply to an On-Demand Instance
53468
53486
  # that was launched from an AMI with a billing product code, make sure
@@ -53475,10 +53493,11 @@ module Aws::EC2
53475
53493
  #
53476
53494
  #
53477
53495
  #
53478
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami.html
53479
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html#creating-launching-ami-from-snapshot
53496
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html#creating-launching-ami-from-snapshot
53497
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-instance-store.html
53480
53498
  # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AMIEncryption.html
53481
53499
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-billing-info.html
53500
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html#how-to-create-ebs-ami
53482
53501
  #
53483
53502
  # @option params [String] :image_location
53484
53503
  # The full path to your AMI manifest in Amazon S3 storage. The specified
@@ -60090,7 +60109,7 @@ module Aws::EC2
60090
60109
  params: params,
60091
60110
  config: config)
60092
60111
  context[:gem_name] = 'aws-sdk-ec2'
60093
- context[:gem_version] = '1.469.0'
60112
+ context[:gem_version] = '1.471.0'
60094
60113
  Seahorse::Client::Request.new(handlers, context)
60095
60114
  end
60096
60115
 
@@ -1255,6 +1255,9 @@ module Aws::EC2
1255
1255
  EbsNvmeSupport = Shapes::StringShape.new(name: 'EbsNvmeSupport')
1256
1256
  EbsOptimizedInfo = Shapes::StructureShape.new(name: 'EbsOptimizedInfo')
1257
1257
  EbsOptimizedSupport = Shapes::StringShape.new(name: 'EbsOptimizedSupport')
1258
+ EbsStatusDetails = Shapes::StructureShape.new(name: 'EbsStatusDetails')
1259
+ EbsStatusDetailsList = Shapes::ListShape.new(name: 'EbsStatusDetailsList')
1260
+ EbsStatusSummary = Shapes::StructureShape.new(name: 'EbsStatusSummary')
1258
1261
  Ec2InstanceConnectEndpoint = Shapes::StructureShape.new(name: 'Ec2InstanceConnectEndpoint')
1259
1262
  Ec2InstanceConnectEndpointState = Shapes::StringShape.new(name: 'Ec2InstanceConnectEndpointState')
1260
1263
  EfaInfo = Shapes::StructureShape.new(name: 'EfaInfo')
@@ -3421,6 +3424,7 @@ module Aws::EC2
3421
3424
  AllocateAddressRequest.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: String, location_name: "CustomerOwnedIpv4Pool"))
3422
3425
  AllocateAddressRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
3423
3426
  AllocateAddressRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
3427
+ AllocateAddressRequest.add_member(:ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "IpamPoolId"))
3424
3428
  AllocateAddressRequest.struct_class = Types::AllocateAddressRequest
3425
3429
 
3426
3430
  AllocateAddressResult.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
@@ -8367,6 +8371,17 @@ module Aws::EC2
8367
8371
  EbsOptimizedInfo.add_member(:maximum_iops, Shapes::ShapeRef.new(shape: MaximumIops, location_name: "maximumIops"))
8368
8372
  EbsOptimizedInfo.struct_class = Types::EbsOptimizedInfo
8369
8373
 
8374
+ EbsStatusDetails.add_member(:impaired_since, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "impairedSince"))
8375
+ EbsStatusDetails.add_member(:name, Shapes::ShapeRef.new(shape: StatusName, location_name: "name"))
8376
+ EbsStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: StatusType, location_name: "status"))
8377
+ EbsStatusDetails.struct_class = Types::EbsStatusDetails
8378
+
8379
+ EbsStatusDetailsList.member = Shapes::ShapeRef.new(shape: EbsStatusDetails, location_name: "item")
8380
+
8381
+ EbsStatusSummary.add_member(:details, Shapes::ShapeRef.new(shape: EbsStatusDetailsList, location_name: "details"))
8382
+ EbsStatusSummary.add_member(:status, Shapes::ShapeRef.new(shape: SummaryStatus, location_name: "status"))
8383
+ EbsStatusSummary.struct_class = Types::EbsStatusSummary
8384
+
8370
8385
  Ec2InstanceConnectEndpoint.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
8371
8386
  Ec2InstanceConnectEndpoint.add_member(:instance_connect_endpoint_id, Shapes::ShapeRef.new(shape: InstanceConnectEndpointId, location_name: "instanceConnectEndpointId"))
8372
8387
  Ec2InstanceConnectEndpoint.add_member(:instance_connect_endpoint_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "instanceConnectEndpointArn"))
@@ -10376,6 +10391,7 @@ module Aws::EC2
10376
10391
  InstanceStatus.add_member(:instance_state, Shapes::ShapeRef.new(shape: InstanceState, location_name: "instanceState"))
10377
10392
  InstanceStatus.add_member(:instance_status, Shapes::ShapeRef.new(shape: InstanceStatusSummary, location_name: "instanceStatus"))
10378
10393
  InstanceStatus.add_member(:system_status, Shapes::ShapeRef.new(shape: InstanceStatusSummary, location_name: "systemStatus"))
10394
+ InstanceStatus.add_member(:attached_ebs_status, Shapes::ShapeRef.new(shape: EbsStatusSummary, location_name: "attachedEbsStatus"))
10379
10395
  InstanceStatus.struct_class = Types::InstanceStatus
10380
10396
 
10381
10397
  InstanceStatusDetails.add_member(:impaired_since, Shapes::ShapeRef.new(shape: DateTime, location_name: "impairedSince"))
@@ -897,6 +897,10 @@ module Aws::EC2
897
897
  # The tags to assign to the Elastic IP address.
898
898
  # @return [Array<Types::TagSpecification>]
899
899
  #
900
+ # @!attribute [rw] ipam_pool_id
901
+ # The ID of an IPAM pool.
902
+ # @return [String]
903
+ #
900
904
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddressRequest AWS API Documentation
901
905
  #
902
906
  class AllocateAddressRequest < Struct.new(
@@ -906,7 +910,8 @@ module Aws::EC2
906
910
  :network_border_group,
907
911
  :customer_owned_ipv_4_pool,
908
912
  :dry_run,
909
- :tag_specifications)
913
+ :tag_specifications,
914
+ :ipam_pool_id)
910
915
  SENSITIVE = []
911
916
  include Aws::Structure
912
917
  end
@@ -6364,12 +6369,12 @@ module Aws::EC2
6364
6369
  # snapshot, but you cannot create an unencrypted copy of an encrypted
6365
6370
  # snapshot. The default KMS key for Amazon EBS is used unless you
6366
6371
  # specify a non-default Key Management Service (KMS) KMS key using
6367
- # `KmsKeyId`. For more information, see [Amazon EBS encryption][1] in
6368
- # the *Amazon EBS User Guide*.
6372
+ # `KmsKeyId`. For more information, see [Use encryption with
6373
+ # EBS-backed AMIs][1] in the *Amazon EC2 User Guide*.
6369
6374
  #
6370
6375
  #
6371
6376
  #
6372
- # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
6377
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AMIEncryption.html
6373
6378
  # @return [Boolean]
6374
6379
  #
6375
6380
  # @!attribute [rw] kms_key_id
@@ -13516,8 +13521,7 @@ module Aws::EC2
13516
13521
  # @return [String]
13517
13522
  #
13518
13523
  # @!attribute [rw] metric
13519
- # The metric, `aggregation-latency`, indicating that network latency
13520
- # is aggregated for the query. This is the only supported metric.
13524
+ # The metric used for the network performance request.
13521
13525
  # @return [String]
13522
13526
  #
13523
13527
  # @!attribute [rw] statistic
@@ -13561,9 +13565,7 @@ module Aws::EC2
13561
13565
  # @return [String]
13562
13566
  #
13563
13567
  # @!attribute [rw] metric
13564
- # The metric used for the network performance request. Only
13565
- # `aggregate-latency` is supported, which shows network latency during
13566
- # a specified period.
13568
+ # The metric used for the network performance request.
13567
13569
  # @return [String]
13568
13570
  #
13569
13571
  # @!attribute [rw] statistic
@@ -20122,6 +20124,10 @@ module Aws::EC2
20122
20124
  # * `system-status.status` - The system status of the instance (`ok`
20123
20125
  # \| `impaired` \| `initializing` \| `insufficient-data` \|
20124
20126
  # `not-applicable`).
20127
+ #
20128
+ # * `attached-ebs-status.status` - The status of the attached EBS
20129
+ # volume for the instance (`ok` \| `impaired` \| `initializing` \|
20130
+ # `insufficient-data` \| `not-applicable`).
20125
20131
  # @return [Array<Types::Filter>]
20126
20132
  #
20127
20133
  # @!attribute [rw] instance_ids
@@ -30724,6 +30730,49 @@ module Aws::EC2
30724
30730
  include Aws::Structure
30725
30731
  end
30726
30732
 
30733
+ # Describes the attached EBS status check for an instance.
30734
+ #
30735
+ # @!attribute [rw] impaired_since
30736
+ # The date and time when the attached EBS status check failed.
30737
+ # @return [Time]
30738
+ #
30739
+ # @!attribute [rw] name
30740
+ # The name of the attached EBS status check.
30741
+ # @return [String]
30742
+ #
30743
+ # @!attribute [rw] status
30744
+ # The result of the attached EBS status check.
30745
+ # @return [String]
30746
+ #
30747
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsStatusDetails AWS API Documentation
30748
+ #
30749
+ class EbsStatusDetails < Struct.new(
30750
+ :impaired_since,
30751
+ :name,
30752
+ :status)
30753
+ SENSITIVE = []
30754
+ include Aws::Structure
30755
+ end
30756
+
30757
+ # Provides a summary of the attached EBS volume status for an instance.
30758
+ #
30759
+ # @!attribute [rw] details
30760
+ # Details about the attached EBS status check for an instance.
30761
+ # @return [Array<Types::EbsStatusDetails>]
30762
+ #
30763
+ # @!attribute [rw] status
30764
+ # The current status.
30765
+ # @return [String]
30766
+ #
30767
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsStatusSummary AWS API Documentation
30768
+ #
30769
+ class EbsStatusSummary < Struct.new(
30770
+ :details,
30771
+ :status)
30772
+ SENSITIVE = []
30773
+ include Aws::Structure
30774
+ end
30775
+
30727
30776
  # The EC2 Instance Connect Endpoint.
30728
30777
  #
30729
30778
  # @!attribute [rw] owner_id
@@ -31828,16 +31877,6 @@ module Aws::EC2
31828
31877
  # publicly shared are treated as private and they are no longer
31829
31878
  # publicly available.
31830
31879
  #
31831
- # <note markdown="1"> If you enable block public access for snapshots in
31832
- # `block-all-sharing` mode, it does not change the permissions for
31833
- # snapshots that are already publicly shared. Instead, it prevents
31834
- # these snapshots from be publicly visible and publicly accessible.
31835
- # Therefore, the attributes for these snapshots still indicate that
31836
- # they are publicly shared, even though they are not publicly
31837
- # available.
31838
- #
31839
- # </note>
31840
- #
31841
31880
  # * `block-new-sharing` - Prevents only new public sharing of
31842
31881
  # snapshots in the Region. Users in the account will no longer be
31843
31882
  # able to request new public sharing. However, snapshots that are
@@ -41991,6 +42030,12 @@ module Aws::EC2
41991
42030
  # network connectivity problems.
41992
42031
  # @return [Types::InstanceStatusSummary]
41993
42032
  #
42033
+ # @!attribute [rw] attached_ebs_status
42034
+ # Reports impaired functionality that stems from an attached Amazon
42035
+ # EBS volume that is unreachable and unable to complete I/O
42036
+ # operations.
42037
+ # @return [Types::EbsStatusSummary]
42038
+ #
41994
42039
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStatus AWS API Documentation
41995
42040
  #
41996
42041
  class InstanceStatus < Struct.new(
@@ -42000,7 +42045,8 @@ module Aws::EC2
42000
42045
  :instance_id,
42001
42046
  :instance_state,
42002
42047
  :instance_status,
42003
- :system_status)
42048
+ :system_status,
42049
+ :attached_ebs_status)
42004
42050
  SENSITIVE = []
42005
42051
  include Aws::Structure
42006
42052
  end
@@ -49877,6 +49923,18 @@ module Aws::EC2
49877
49923
  # Indicates whether DNS queries made to the Amazon-provided DNS
49878
49924
  # Resolver in this subnet should return synthetic IPv6 addresses for
49879
49925
  # IPv4-only destinations.
49926
+ #
49927
+ # <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
49928
+ # from the subnet containing the IPv6-only workloads). For example,
49929
+ # the subnet containing the NAT gateway should have a `0.0.0.0/0`
49930
+ # route pointing to the internet gateway. For more information, see
49931
+ # [Configure DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
49932
+ #
49933
+ # </note>
49934
+ #
49935
+ #
49936
+ #
49937
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
49880
49938
  # @return [Types::AttributeBooleanValue]
49881
49939
  #
49882
49940
  # @!attribute [rw] private_dns_hostname_type_on_launch
@@ -50214,10 +50272,19 @@ module Aws::EC2
50214
50272
  # BGP session. The range is 64512 to 65534 for 16-bit ASNs and
50215
50273
  # 4200000000 to 4294967294 for 32-bit ASNs.
50216
50274
  #
50217
- # The modify ASN operation is not allowed on a transit gateway with
50218
- # active BGP sessions. You must first delete all transit gateway
50219
- # attachments that have BGP configured prior to modifying the ASN on
50220
- # the transit gateway.
50275
+ # The modify ASN operation is not allowed on a transit gateway if it
50276
+ # has the following attachments:
50277
+ #
50278
+ # * Dynamic VPN
50279
+ #
50280
+ # * Static VPN
50281
+ #
50282
+ # * Direct Connect Gateway
50283
+ #
50284
+ # * Connect
50285
+ #
50286
+ # You must first delete all transit gateway attachments configured
50287
+ # prior to modifying the ASN on the transit gateway.
50221
50288
  # @return [Integer]
50222
50289
  #
50223
50290
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayOptions AWS API Documentation
@@ -57070,7 +57137,7 @@ module Aws::EC2
57070
57137
  # @return [Array<Types::LaunchTemplateInstanceNetworkInterfaceSpecificationRequest>]
57071
57138
  #
57072
57139
  # @!attribute [rw] image_id
57073
- # The ID of the AMI in the format `ami-17characters00000`.
57140
+ # The ID of the AMI in the format `ami-0ac394d6a3example`.
57074
57141
  #
57075
57142
  # Alternatively, you can specify a Systems Manager parameter, using
57076
57143
  # one of the following formats. The Systems Manager parameter will
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.469.0'
79
+ GEM_VERSION = '1.471.0'
80
80
 
81
81
  end
data/sig/client.rbs CHANGED
@@ -212,7 +212,8 @@ module Aws
212
212
  },
213
213
  ]?
214
214
  },
215
- ]
215
+ ],
216
+ ?ipam_pool_id: ::String
216
217
  ) -> _AllocateAddressResponseSuccess
217
218
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AllocateAddressResponseSuccess
218
219
 
data/sig/types.rbs CHANGED
@@ -243,6 +243,7 @@ module Aws::EC2
243
243
  attr_accessor customer_owned_ipv_4_pool: ::String
244
244
  attr_accessor dry_run: bool
245
245
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
246
+ attr_accessor ipam_pool_id: ::String
246
247
  SENSITIVE: []
247
248
  end
248
249
 
@@ -6820,6 +6821,19 @@ module Aws::EC2
6820
6821
  SENSITIVE: []
6821
6822
  end
6822
6823
 
6824
+ class EbsStatusDetails
6825
+ attr_accessor impaired_since: ::Time
6826
+ attr_accessor name: ("reachability")
6827
+ attr_accessor status: ("passed" | "failed" | "insufficient-data" | "initializing")
6828
+ SENSITIVE: []
6829
+ end
6830
+
6831
+ class EbsStatusSummary
6832
+ attr_accessor details: ::Array[Types::EbsStatusDetails]
6833
+ attr_accessor status: ("ok" | "impaired" | "insufficient-data" | "not-applicable" | "initializing")
6834
+ SENSITIVE: []
6835
+ end
6836
+
6823
6837
  class Ec2InstanceConnectEndpoint
6824
6838
  attr_accessor owner_id: ::String
6825
6839
  attr_accessor instance_connect_endpoint_id: ::String
@@ -9210,6 +9224,7 @@ module Aws::EC2
9210
9224
  attr_accessor instance_state: Types::InstanceState
9211
9225
  attr_accessor instance_status: Types::InstanceStatusSummary
9212
9226
  attr_accessor system_status: Types::InstanceStatusSummary
9227
+ attr_accessor attached_ebs_status: Types::EbsStatusSummary
9213
9228
  SENSITIVE: []
9214
9229
  end
9215
9230
 
@@ -9406,7 +9421,7 @@ module Aws::EC2
9406
9421
  attr_accessor address_owner_id: ::String
9407
9422
  attr_accessor address_allocation_id: ::String
9408
9423
  attr_accessor association_status: ("associated" | "disassociated")
9409
- attr_accessor address_type: ("service-managed-ip" | "service-managed-byoip" | "amazon-owned-eip" | "byoip" | "ec2-public-ip")
9424
+ attr_accessor address_type: ("service-managed-ip" | "service-managed-byoip" | "amazon-owned-eip" | "amazon-owned-contig" | "byoip" | "ec2-public-ip")
9410
9425
  attr_accessor service: ("nat-gateway" | "database-migration-service" | "redshift" | "elastic-container-service" | "relational-database-service" | "site-to-site-vpn" | "load-balancer" | "global-accelerator" | "other")
9411
9426
  attr_accessor service_resource: ::String
9412
9427
  attr_accessor vpc_id: ::String
@@ -9498,7 +9513,7 @@ module Aws::EC2
9498
9513
  attr_accessor ipam_pool_allocation_id: ::String
9499
9514
  attr_accessor description: ::String
9500
9515
  attr_accessor resource_id: ::String
9501
- attr_accessor resource_type: ("ipam-pool" | "vpc" | "ec2-public-ipv4-pool" | "custom" | "subnet")
9516
+ attr_accessor resource_type: ("ipam-pool" | "vpc" | "ec2-public-ipv4-pool" | "custom" | "subnet" | "eip")
9502
9517
  attr_accessor resource_region: ::String
9503
9518
  attr_accessor resource_owner: ::String
9504
9519
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.469.0
4
+ version: 1.471.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-12 00:00:00.000000000 Z
11
+ date: 2024-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core