aws-sdk-ec2 1.482.0 → 1.483.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: 9a8ba711a72e6c6af643a163f00f3ad1a483bd1017a258743b2c6b4b07e88fb3
4
- data.tar.gz: 7c289a2f1aea597400cc4b4aa64bb58da84db16c2f07401a655952f0f5cb9e01
3
+ metadata.gz: 61507c99d5a0c838063f36f866b1ff1d45394d4577d4112b903c4760f6e0efc9
4
+ data.tar.gz: 82181c6da7afdb947f07d153ffc3c53de38246df81233aa73059224a4673b2e8
5
5
  SHA512:
6
- metadata.gz: 2593987279da20b81312ca0b96ee1562fc767a85a125633cee7125922a95b80e63802eeedbe3b3455039ee19906e71b7928057cfb47568d5c7351f0885cb71d6
7
- data.tar.gz: 743068aec54cbb00ea135457ffe3bc58529e80bd8048ab0a8808adea7f1371b6b965bfcb135629d5fe2d1f6065f32bc5c2045703da3d66cd4af69b416973792e
6
+ metadata.gz: c5c8d7770d14aee5bca05edb5762a69553ff3acec04c59e31fbae1a627c4072b373e50a4ccc98d425fb29851e17fa879b562d780036cb1ddefd66762c54e8967
7
+ data.tar.gz: 71062a8ceb26c0a8c468f44233c8d2f9043ef5ddb17a7682ef509cc0757215ef12639eea489cdc6ad4dc54ab3e145eb44a3b6ec4ffa3b827f519cd38d53385eb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.483.0 (2024-10-21)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.482.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.482.0
1
+ 1.483.0
@@ -1627,7 +1627,7 @@ module Aws::EC2
1627
1627
  #
1628
1628
  #
1629
1629
  #
1630
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-working-with
1630
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
1631
1631
  #
1632
1632
  # @option params [required, String] :nat_gateway_id
1633
1633
  # The ID of the NAT gateway.
@@ -1823,7 +1823,7 @@ module Aws::EC2
1823
1823
  # The ID of the Capacity Reservation.
1824
1824
  #
1825
1825
  # @option params [required, String] :unused_reservation_billing_owner_id
1826
- # The ID of the consumer account to which assign billing.
1826
+ # The ID of the consumer account to which to assign billing.
1827
1827
  #
1828
1828
  # @return [Types::AssociateCapacityReservationBillingOwnerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1829
1829
  #
@@ -2343,9 +2343,9 @@ module Aws::EC2
2343
2343
  #
2344
2344
  #
2345
2345
  #
2346
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-working-with
2346
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
2347
2347
  # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html#vpc-limits-eips
2348
- # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#allocate-eip
2348
+ # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/WorkWithEIPs.html
2349
2349
  #
2350
2350
  # @option params [required, String] :nat_gateway_id
2351
2351
  # The ID of the NAT gateway.
@@ -6157,7 +6157,7 @@ module Aws::EC2
6157
6157
  #
6158
6158
  #
6159
6159
  #
6160
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/default-vpc.html#create-default-subnet
6160
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/work-with-default-vpc.html#create-default-subnet
6161
6161
  #
6162
6162
  # @option params [required, String] :availability_zone
6163
6163
  # The Availability Zone in which to create the default subnet.
@@ -6924,7 +6924,7 @@ module Aws::EC2
6924
6924
  #
6925
6925
  #
6926
6926
  #
6927
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records
6927
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-log-records.html
6928
6928
  # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html
6929
6929
  #
6930
6930
  # @option params [Boolean] :dry_run
@@ -7020,7 +7020,7 @@ module Aws::EC2
7020
7020
  #
7021
7021
  #
7022
7022
  #
7023
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records
7023
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-log-records.html
7024
7024
  # [2]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-flow-logs.html#flow-log-records
7025
7025
  #
7026
7026
  # @option params [Array<Types::TagSpecification>] :tag_specifications
@@ -9801,7 +9801,7 @@ module Aws::EC2
9801
9801
  #
9802
9802
  #
9803
9803
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html
9804
- # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#allocate-eip
9804
+ # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/WorkWithEIPs.html
9805
9805
  #
9806
9806
  # @option params [String] :allocation_id
9807
9807
  # \[Public NAT gateways only\] The allocation ID of an Elastic IP
@@ -9851,7 +9851,7 @@ module Aws::EC2
9851
9851
  #
9852
9852
  #
9853
9853
  #
9854
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9854
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9855
9855
  #
9856
9856
  # @option params [Array<String>] :secondary_private_ip_addresses
9857
9857
  # Secondary private IPv4 addresses. For more information about secondary
@@ -9860,7 +9860,7 @@ module Aws::EC2
9860
9860
  #
9861
9861
  #
9862
9862
  #
9863
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9863
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9864
9864
  #
9865
9865
  # @option params [Integer] :secondary_private_ip_address_count
9866
9866
  # \[Private NAT gateway only\] The number of secondary private IPv4
@@ -9870,7 +9870,7 @@ module Aws::EC2
9870
9870
  #
9871
9871
  #
9872
9872
  #
9873
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9873
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9874
9874
  #
9875
9875
  # @return [Types::CreateNatGatewayResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9876
9876
  #
@@ -10833,7 +10833,7 @@ module Aws::EC2
10833
10833
  # },
10834
10834
  # ],
10835
10835
  # ipv_6_prefix_count: 1,
10836
- # interface_type: "efa", # accepts efa, branch, trunk
10836
+ # interface_type: "efa", # accepts efa, efa-only, branch, trunk
10837
10837
  # tag_specifications: [
10838
10838
  # {
10839
10839
  # resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, ipam-external-resource-verification-token
@@ -10900,7 +10900,7 @@ module Aws::EC2
10900
10900
  # resp.network_interface.groups #=> Array
10901
10901
  # resp.network_interface.groups[0].group_id #=> String
10902
10902
  # resp.network_interface.groups[0].group_name #=> String
10903
- # resp.network_interface.interface_type #=> String, one of "interface", "natGateway", "efa", "trunk", "load_balancer", "network_load_balancer", "vpc_endpoint", "branch", "transit_gateway", "lambda", "quicksight", "global_accelerator_managed", "api_gateway_managed", "gateway_load_balancer", "gateway_load_balancer_endpoint", "iot_rules_managed", "aws_codestar_connections_managed"
10903
+ # resp.network_interface.interface_type #=> String, one of "interface", "natGateway", "efa", "efa-only", "trunk", "load_balancer", "network_load_balancer", "vpc_endpoint", "branch", "transit_gateway", "lambda", "quicksight", "global_accelerator_managed", "api_gateway_managed", "gateway_load_balancer", "gateway_load_balancer_endpoint", "iot_rules_managed", "aws_codestar_connections_managed"
10904
10904
  # resp.network_interface.ipv_6_addresses #=> Array
10905
10905
  # resp.network_interface.ipv_6_addresses[0].ipv_6_address #=> String
10906
10906
  # resp.network_interface.ipv_6_addresses[0].is_primary_ipv_6 #=> Boolean
@@ -12501,13 +12501,14 @@ module Aws::EC2
12501
12501
  end
12502
12502
 
12503
12503
  # Creates a subnet CIDR reservation. For more information, see [Subnet
12504
- # CIDR reservations][1] in the *Amazon VPC User Guide* and [Assign
12505
- # prefixes to network interfaces][2] in the *Amazon EC2 User Guide*.
12504
+ # CIDR reservations][1] in the *Amazon VPC User Guide* and [Manage
12505
+ # prefixes for your network interfaces][2] in the *Amazon EC2 User
12506
+ # Guide*.
12506
12507
  #
12507
12508
  #
12508
12509
  #
12509
12510
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/subnet-cidr-reservation.html
12510
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-eni.html
12511
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/work-with-prefixes.html
12511
12512
  #
12512
12513
  # @option params [required, String] :subnet_id
12513
12514
  # The ID of the subnet.
@@ -19151,7 +19152,10 @@ module Aws::EC2
19151
19152
  # delete all security groups associated with the VPC (except the default
19152
19153
  # one), delete all route tables associated with the VPC (except the
19153
19154
  # default one), and so on. When you delete the VPC, it deletes the
19154
- # VPC's default security group, network ACL, and route table.
19155
+ # default security group, network ACL, and route table for the VPC.
19156
+ #
19157
+ # If you created a flow log for the VPC that you are deleting, note that
19158
+ # flow logs for deleted VPCs are eventually automatically removed.
19155
19159
  #
19156
19160
  # @option params [required, String] :vpc_id
19157
19161
  # The ID of the VPC.
@@ -30765,7 +30769,7 @@ module Aws::EC2
30765
30769
  # resp.network_interfaces[0].groups #=> Array
30766
30770
  # resp.network_interfaces[0].groups[0].group_id #=> String
30767
30771
  # resp.network_interfaces[0].groups[0].group_name #=> String
30768
- # resp.network_interfaces[0].interface_type #=> String, one of "interface", "natGateway", "efa", "trunk", "load_balancer", "network_load_balancer", "vpc_endpoint", "branch", "transit_gateway", "lambda", "quicksight", "global_accelerator_managed", "api_gateway_managed", "gateway_load_balancer", "gateway_load_balancer_endpoint", "iot_rules_managed", "aws_codestar_connections_managed"
30772
+ # resp.network_interfaces[0].interface_type #=> String, one of "interface", "natGateway", "efa", "efa-only", "trunk", "load_balancer", "network_load_balancer", "vpc_endpoint", "branch", "transit_gateway", "lambda", "quicksight", "global_accelerator_managed", "api_gateway_managed", "gateway_load_balancer", "gateway_load_balancer_endpoint", "iot_rules_managed", "aws_codestar_connections_managed"
30769
30773
  # resp.network_interfaces[0].ipv_6_addresses #=> Array
30770
30774
  # resp.network_interfaces[0].ipv_6_addresses[0].ipv_6_address #=> String
30771
30775
  # resp.network_interfaces[0].ipv_6_addresses[0].is_primary_ipv_6 #=> Boolean
@@ -39264,7 +39268,7 @@ module Aws::EC2
39264
39268
  #
39265
39269
  #
39266
39270
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html
39267
- # [2]: http://amazonaws.com/AWSEC2/latest/APIReference/API_EnableImage.html
39271
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EnableImage.html
39268
39272
  # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/disable-an-ami.html
39269
39273
  #
39270
39274
  # @option params [required, String] :image_id
@@ -40178,7 +40182,7 @@ module Aws::EC2
40178
40182
  #
40179
40183
  #
40180
40184
  #
40181
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-edit-secondary
40185
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html#nat-gateway-edit-secondary
40182
40186
  #
40183
40187
  # @option params [required, String] :nat_gateway_id
40184
40188
  # The ID of the NAT gateway.
@@ -42662,20 +42666,18 @@ module Aws::EC2
42662
42666
  # specified values.
42663
42667
  #
42664
42668
  # For more information, see [Preview instance types with specified
42665
- # attributes][1], [Attribute-based instance type selection for EC2
42666
- # Fleet][2], [Attribute-based instance type selection for Spot
42667
- # Fleet][3], and [Spot placement score][4] in the *Amazon EC2 User
42668
- # Guide*, and [Creating an Auto Scaling group using attribute-based
42669
- # instance type selection][5] in the *Amazon EC2 Auto Scaling User
42670
- # Guide*.
42669
+ # attributes][1], [Specify attributes for instance type selection for
42670
+ # EC2 Fleet or Spot Fleet][2], and [Spot placement score][3] in the
42671
+ # *Amazon EC2 User Guide*, and [Creating mixed instance groups using
42672
+ # attribute-based instance type selection][4] in the *Amazon EC2 Auto
42673
+ # Scaling User Guide*.
42671
42674
  #
42672
42675
  #
42673
42676
  #
42674
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html#spotfleet-get-instance-types-from-instance-requirements
42677
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-get-instance-types-from-instance-requirements
42675
42678
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html
42676
- # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html
42677
- # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
42678
- # [5]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-asg-instance-type-requirements.html
42679
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
42680
+ # [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-asg-instance-type-requirements.html
42679
42681
  #
42680
42682
  # @option params [Boolean] :dry_run
42681
42683
  # Checks whether you have the required permissions for the action,
@@ -50216,14 +50218,12 @@ module Aws::EC2
50216
50218
  # in this subnet should return synthetic IPv6 addresses for IPv4-only
50217
50219
  # destinations.
50218
50220
  #
50219
- # <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
50221
+ # You must first configure a NAT gateway in a public subnet (separate
50220
50222
  # from the subnet containing the IPv6-only workloads). For example, the
50221
50223
  # subnet containing the NAT gateway should have a `0.0.0.0/0` route
50222
50224
  # pointing to the internet gateway. For more information, see [Configure
50223
50225
  # DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
50224
50226
  #
50225
- # </note>
50226
- #
50227
50227
  #
50228
50228
  #
50229
50229
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
@@ -60017,7 +60017,7 @@ module Aws::EC2
60017
60017
  #
60018
60018
  #
60019
60019
  #
60020
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-edit-secondary
60020
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html#nat-gateway-edit-secondary
60021
60021
  #
60022
60022
  # @option params [required, String] :nat_gateway_id
60023
60023
  # The ID of the NAT gateway.
@@ -60468,7 +60468,7 @@ module Aws::EC2
60468
60468
  tracer: tracer
60469
60469
  )
60470
60470
  context[:gem_name] = 'aws-sdk-ec2'
60471
- context[:gem_version] = '1.482.0'
60471
+ context[:gem_version] = '1.483.0'
60472
60472
  Seahorse::Client::Request.new(handlers, context)
60473
60473
  end
60474
60474
 
@@ -775,7 +775,7 @@ module Aws::EC2
775
775
  #
776
776
  #
777
777
  #
778
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
778
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
779
779
  # @option options [Array<String>] :secondary_private_ip_addresses
780
780
  # Secondary private IPv4 addresses. For more information about secondary
781
781
  # addresses, see [Create a NAT gateway][1] in the *Amazon VPC User
@@ -783,7 +783,7 @@ module Aws::EC2
783
783
  #
784
784
  #
785
785
  #
786
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
786
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
787
787
  # @option options [Integer] :secondary_private_ip_address_count
788
788
  # \[Private NAT gateway only\] The number of secondary private IPv4
789
789
  # addresses you want to assign to the NAT gateway. For more information
@@ -792,7 +792,7 @@ module Aws::EC2
792
792
  #
793
793
  #
794
794
  #
795
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
795
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
796
796
  # @return [NatGateway]
797
797
  def create_nat_gateway(options = {})
798
798
  resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
@@ -868,7 +868,7 @@ module Aws::EC2
868
868
  # },
869
869
  # ],
870
870
  # ipv_6_prefix_count: 1,
871
- # interface_type: "efa", # accepts efa, branch, trunk
871
+ # interface_type: "efa", # accepts efa, efa-only, branch, trunk
872
872
  # tag_specifications: [
873
873
  # {
874
874
  # resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, ipam-external-resource-verification-token
@@ -870,7 +870,7 @@ module Aws::EC2
870
870
  # },
871
871
  # ],
872
872
  # ipv_6_prefix_count: 1,
873
- # interface_type: "efa", # accepts efa, branch, trunk
873
+ # interface_type: "efa", # accepts efa, efa-only, branch, trunk
874
874
  # tag_specifications: [
875
875
  # {
876
876
  # resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, ipam-external-resource-verification-token
@@ -1971,7 +1971,7 @@ module Aws::EC2
1971
1971
  # @return [String]
1972
1972
  #
1973
1973
  # @!attribute [rw] unused_reservation_billing_owner_id
1974
- # The ID of the consumer account to which assign billing.
1974
+ # The ID of the consumer account to which to assign billing.
1975
1975
  # @return [String]
1976
1976
  #
1977
1977
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateCapacityReservationBillingOwnerRequest AWS API Documentation
@@ -8280,7 +8280,7 @@ module Aws::EC2
8280
8280
  #
8281
8281
  #
8282
8282
  #
8283
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records
8283
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/flow-log-records.html
8284
8284
  # [2]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-flow-logs.html#flow-log-records
8285
8285
  # @return [String]
8286
8286
  #
@@ -9722,7 +9722,7 @@ module Aws::EC2
9722
9722
  #
9723
9723
  #
9724
9724
  #
9725
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9725
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9726
9726
  # @return [Array<String>]
9727
9727
  #
9728
9728
  # @!attribute [rw] secondary_private_ip_addresses
@@ -9732,7 +9732,7 @@ module Aws::EC2
9732
9732
  #
9733
9733
  #
9734
9734
  #
9735
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9735
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9736
9736
  # @return [Array<String>]
9737
9737
  #
9738
9738
  # @!attribute [rw] secondary_private_ip_address_count
@@ -9743,7 +9743,7 @@ module Aws::EC2
9743
9743
  #
9744
9744
  #
9745
9745
  #
9746
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
9746
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html
9747
9747
  # @return [Integer]
9748
9748
  #
9749
9749
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNatGatewayRequest AWS API Documentation
@@ -30767,8 +30767,8 @@ module Aws::EC2
30767
30767
  # @return [String]
30768
30768
  #
30769
30769
  # @!attribute [rw] kms_key_id
30770
- # Identifier (key ID, key alias, ID ARN, or alias ARN) for a customer
30771
- # managed CMK under which the EBS volume is encrypted.
30770
+ # Identifier (key ID, key alias, key ARN, or alias ARN) of the
30771
+ # customer managed KMS key to use for EBS encryption.
30772
30772
  #
30773
30773
  # This parameter is only supported on `BlockDeviceMapping` objects
30774
30774
  # called by [RunInstances][1], [RequestSpotFleet][2], and
@@ -41239,12 +41239,11 @@ module Aws::EC2
41239
41239
  #
41240
41240
  # </note>
41241
41241
  #
41242
- # For more information, see [Create a mixed instances group using
41242
+ # For more information, see [Create mixed instances group using
41243
41243
  # attribute-based instance type selection][3] in the *Amazon EC2 Auto
41244
- # Scaling User Guide*, and also [Attribute-based instance type selection
41245
- # for EC2 Fleet][4], [Attribute-based instance type selection for Spot
41246
- # Fleet][5], and [Spot placement score][6] in the *Amazon EC2 User
41247
- # Guide*.
41244
+ # Scaling User Guide*, and also [Specify attributes for instance type
41245
+ # selection for EC2 Fleet or Spot Fleet][4] and [Spot placement
41246
+ # score][5] in the *Amazon EC2 User Guide*.
41248
41247
  #
41249
41248
  #
41250
41249
  #
@@ -41252,8 +41251,7 @@ module Aws::EC2
41252
41251
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
41253
41252
  # [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-mixed-instances-group-attribute-based-instance-type-selection.html
41254
41253
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html
41255
- # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html
41256
- # [6]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
41254
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
41257
41255
  #
41258
41256
  # @!attribute [rw] v_cpu_count
41259
41257
  # The minimum and maximum number of vCPUs.
@@ -41708,10 +41706,9 @@ module Aws::EC2
41708
41706
  #
41709
41707
  # </note>
41710
41708
  #
41711
- # For more information, see [Attribute-based instance type selection for
41712
- # EC2 Fleet][4], [Attribute-based instance type selection for Spot
41713
- # Fleet][5], and [Spot placement score][6] in the *Amazon EC2 User
41714
- # Guide*.
41709
+ # For more information, see [Specify attributes for instance type
41710
+ # selection for EC2 Fleet or Spot Fleet][4] and [Spot placement
41711
+ # score][5] in the *Amazon EC2 User Guide*.
41715
41712
  #
41716
41713
  #
41717
41714
  #
@@ -41719,8 +41716,7 @@ module Aws::EC2
41719
41716
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
41720
41717
  # [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html
41721
41718
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html
41722
- # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html
41723
- # [6]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
41719
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
41724
41720
  #
41725
41721
  # @!attribute [rw] v_cpu_count
41726
41722
  # The minimum and maximum number of vCPUs.
@@ -50268,14 +50264,12 @@ module Aws::EC2
50268
50264
  # Resolver in this subnet should return synthetic IPv6 addresses for
50269
50265
  # IPv4-only destinations.
50270
50266
  #
50271
- # <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
50267
+ # You must first configure a NAT gateway in a public subnet (separate
50272
50268
  # from the subnet containing the IPv6-only workloads). For example,
50273
50269
  # the subnet containing the NAT gateway should have a `0.0.0.0/0`
50274
50270
  # route pointing to the internet gateway. For more information, see
50275
50271
  # [Configure DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
50276
50272
  #
50277
- # </note>
50278
- #
50279
50273
  #
50280
50274
  #
50281
50275
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
@@ -57786,10 +57780,9 @@ module Aws::EC2
57786
57780
  #
57787
57781
  # </note>
57788
57782
  #
57789
- # For more information, see [Attribute-based instance type selection
57790
- # for EC2 Fleet][4], [Attribute-based instance type selection for Spot
57791
- # Fleet][5], and [Spot placement score][6] in the *Amazon EC2 User
57792
- # Guide*.
57783
+ # For more information, see [Specify attributes for instance type
57784
+ # selection for EC2 Fleet or Spot Fleet][4] and [Spot placement
57785
+ # score][5] in the *Amazon EC2 User Guide*.
57793
57786
  #
57794
57787
  #
57795
57788
  #
@@ -57797,8 +57790,7 @@ module Aws::EC2
57797
57790
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
57798
57791
  # [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html
57799
57792
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html
57800
- # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html
57801
- # [6]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
57793
+ # [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html
57802
57794
  # @return [Types::InstanceRequirementsRequest]
57803
57795
  #
57804
57796
  # @!attribute [rw] private_dns_name_options
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.482.0'
81
+ GEM_VERSION = '1.483.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -2796,7 +2796,7 @@ module Aws
2796
2796
  },
2797
2797
  ],
2798
2798
  ?ipv_6_prefix_count: ::Integer,
2799
- ?interface_type: ("efa" | "branch" | "trunk"),
2799
+ ?interface_type: ("efa" | "efa-only" | "branch" | "trunk"),
2800
2800
  ?tag_specifications: Array[
2801
2801
  {
2802
2802
  resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "ipam-external-resource-verification-token")?,
@@ -34,7 +34,7 @@ module Aws
34
34
  def groups: () -> ::Array[Types::GroupIdentifier]
35
35
 
36
36
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkInterface.html#interface_type-instance_method
37
- def interface_type: () -> ("interface" | "natGateway" | "efa" | "trunk" | "load_balancer" | "network_load_balancer" | "vpc_endpoint" | "branch" | "transit_gateway" | "lambda" | "quicksight" | "global_accelerator_managed" | "api_gateway_managed" | "gateway_load_balancer" | "gateway_load_balancer_endpoint" | "iot_rules_managed" | "aws_codestar_connections_managed")
37
+ def interface_type: () -> ("interface" | "natGateway" | "efa" | "efa-only" | "trunk" | "load_balancer" | "network_load_balancer" | "vpc_endpoint" | "branch" | "transit_gateway" | "lambda" | "quicksight" | "global_accelerator_managed" | "api_gateway_managed" | "gateway_load_balancer" | "gateway_load_balancer_endpoint" | "iot_rules_managed" | "aws_codestar_connections_managed")
38
38
 
39
39
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkInterface.html#ipv_6_addresses-instance_method
40
40
  def ipv_6_addresses: () -> ::Array[Types::NetworkInterfaceIpv6Address]
data/sig/resource.rbs CHANGED
@@ -394,7 +394,7 @@ module Aws
394
394
  },
395
395
  ],
396
396
  ?ipv_6_prefix_count: ::Integer,
397
- ?interface_type: ("efa" | "branch" | "trunk"),
397
+ ?interface_type: ("efa" | "efa-only" | "branch" | "trunk"),
398
398
  ?tag_specifications: Array[
399
399
  {
400
400
  resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "ipam-external-resource-verification-token")?,
data/sig/subnet.rbs CHANGED
@@ -303,7 +303,7 @@ module Aws
303
303
  },
304
304
  ],
305
305
  ?ipv_6_prefix_count: ::Integer,
306
- ?interface_type: ("efa" | "branch" | "trunk"),
306
+ ?interface_type: ("efa" | "efa-only" | "branch" | "trunk"),
307
307
  ?tag_specifications: Array[
308
308
  {
309
309
  resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "ipam-external-resource-verification-token")?,
data/sig/types.rbs CHANGED
@@ -2297,7 +2297,7 @@ module Aws::EC2
2297
2297
  attr_accessor ipv_4_prefix_count: ::Integer
2298
2298
  attr_accessor ipv_6_prefixes: ::Array[Types::Ipv6PrefixSpecificationRequest]
2299
2299
  attr_accessor ipv_6_prefix_count: ::Integer
2300
- attr_accessor interface_type: ("efa" | "branch" | "trunk")
2300
+ attr_accessor interface_type: ("efa" | "efa-only" | "branch" | "trunk")
2301
2301
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2302
2302
  attr_accessor client_token: ::String
2303
2303
  attr_accessor enable_primary_ipv_6: bool
@@ -11703,7 +11703,7 @@ module Aws::EC2
11703
11703
  attr_accessor connection_tracking_configuration: Types::ConnectionTrackingConfiguration
11704
11704
  attr_accessor description: ::String
11705
11705
  attr_accessor groups: ::Array[Types::GroupIdentifier]
11706
- attr_accessor interface_type: ("interface" | "natGateway" | "efa" | "trunk" | "load_balancer" | "network_load_balancer" | "vpc_endpoint" | "branch" | "transit_gateway" | "lambda" | "quicksight" | "global_accelerator_managed" | "api_gateway_managed" | "gateway_load_balancer" | "gateway_load_balancer_endpoint" | "iot_rules_managed" | "aws_codestar_connections_managed")
11706
+ attr_accessor interface_type: ("interface" | "natGateway" | "efa" | "efa-only" | "trunk" | "load_balancer" | "network_load_balancer" | "vpc_endpoint" | "branch" | "transit_gateway" | "lambda" | "quicksight" | "global_accelerator_managed" | "api_gateway_managed" | "gateway_load_balancer" | "gateway_load_balancer_endpoint" | "iot_rules_managed" | "aws_codestar_connections_managed")
11707
11707
  attr_accessor ipv_6_addresses: ::Array[Types::NetworkInterfaceIpv6Address]
11708
11708
  attr_accessor mac_address: ::String
11709
11709
  attr_accessor network_interface_id: ::String
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.482.0
4
+ version: 1.483.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-10-18 00:00:00.000000000 Z
11
+ date: 2024-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core