aws-sdk-ec2 1.397.0 → 1.399.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: 503039a7d3a0c2224ccf279659231116b060670dfc0024a44546d9c6c0e5fc5c
4
- data.tar.gz: 26506489850bcaf9a78f03cbaeb54ef4624752e1e50c56566e3645981588bc3d
3
+ metadata.gz: 1a7b52147cc1c38ae22dd42765ab564cba7fbe6aa0cb47ff2ffc1a874250dccf
4
+ data.tar.gz: eaee461e1afaf7178928ce2774af24e9fda7b060e1754d04d197873f05a405e8
5
5
  SHA512:
6
- metadata.gz: f43f1325a30a2b4b44e6f886984ffc2e69dd643e876fd042eb0904b6cd79c7dcf4e78e40e7befc82d0568ac4f172b553e23c64e732edc3e6be72ebe941658023
7
- data.tar.gz: 89240c406fd7787ba7d074b2dc5e7e87ff87de1920c4115f0798679f4a339ee6e35d96f3d867c01549fbe28065fe0366ec4a16b6f4ebfb26c4a5ea52c93fb3d4
6
+ metadata.gz: 25f60ff8dde776ccc451baa5bc17c39713ee7b3619618b49cd4621670fcc6d988e9261781d532f64420f5910912e95cc7c72499319db233de21977cd7a91c611
7
+ data.tar.gz: 6d841d40ecfb7abb985627e05962def6be027a64eb15725b9b2b7bbca4601f2d5c941c822857904841de7582fd57ecf65c4074faba050f306a17b2f8f0559e2b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.399.0 (2023-08-17)
5
+ ------------------
6
+
7
+ * Feature - Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints
8
+
9
+ 1.398.0 (2023-08-15)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for Elastic Compute Cloud (EC2).
13
+
4
14
  1.397.0 (2023-08-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.397.0
1
+ 1.399.0
@@ -6578,8 +6578,7 @@ module Aws::EC2
6578
6578
  # *Amazon Web Services Transit Gateway Guide*.
6579
6579
  #
6580
6580
  # Specify the fields using the `$\{field-id\}` format, separated by
6581
- # spaces. For the CLI, surround this parameter value with single quotes
6582
- # on Linux or double quotes on Windows.
6581
+ # spaces.
6583
6582
  #
6584
6583
  #
6585
6584
  #
@@ -11827,13 +11826,15 @@ module Aws::EC2
11827
11826
  req.send_request(options)
11828
11827
  end
11829
11828
 
11830
- # Creates a subnet CIDR reservation. For information about subnet CIDR
11831
- # reservations, see [Subnet CIDR reservations][1] in the *Amazon Virtual
11832
- # Private Cloud User Guide*.
11829
+ # Creates a subnet CIDR reservation. For more information, see [Subnet
11830
+ # CIDR reservations][1] in the *Amazon Virtual Private Cloud User Guide*
11831
+ # and [Assign prefixes to network interfaces][2] in the *Amazon Elastic
11832
+ # Compute Cloud User Guide*.
11833
11833
  #
11834
11834
  #
11835
11835
  #
11836
11836
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/subnet-cidr-reservation.html
11837
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-eni.html
11837
11838
  #
11838
11839
  # @option params [required, String] :subnet_id
11839
11840
  # The ID of the subnet.
@@ -11842,22 +11843,14 @@ module Aws::EC2
11842
11843
  # The IPv4 or IPV6 CIDR range to reserve.
11843
11844
  #
11844
11845
  # @option params [required, String] :reservation_type
11845
- # The type of reservation.
11846
- #
11847
- # The following are valid values:
11846
+ # The type of reservation. The reservation type determines how the
11847
+ # reserved IP addresses are assigned to resources.
11848
11848
  #
11849
- # * `prefix`: The Amazon EC2 Prefix Delegation feature assigns the IP
11850
- # addresses to network interfaces that are associated with an
11851
- # instance. For information about Prefix Delegation, see [Prefix
11852
- # Delegation for Amazon EC2 network interfaces][1] in the *Amazon
11853
- # Elastic Compute Cloud User Guide*.
11849
+ # * `prefix` - Amazon Web Services assigns the reserved IP addresses to
11850
+ # network interfaces.
11854
11851
  #
11855
- # * `explicit`: You manually assign the IP addresses to resources that
11856
- # reside in your subnet.
11857
- #
11858
- #
11859
- #
11860
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation.html
11852
+ # * `explicit` - You assign the reserved IP addresses to network
11853
+ # interfaces.
11861
11854
  #
11862
11855
  # @option params [String] :description
11863
11856
  # The description to assign to the subnet CIDR reservation.
@@ -12262,6 +12255,11 @@ module Aws::EC2
12262
12255
  # If you do not want to mirror the entire packet, use the `PacketLength`
12263
12256
  # parameter to specify the number of bytes in each packet to mirror.
12264
12257
  #
12258
+ # For sessions with Network Load Balancer (NLB) Traffic Mirror targets
12259
+ # the default `PacketLength` will be set to 8500. Valid values are
12260
+ # 1-8500. Setting a `PacketLength` greater than 8500 will result in an
12261
+ # error response.
12262
+ #
12265
12263
  # @option params [required, Integer] :session_number
12266
12264
  # The session number determines the order in which sessions are
12267
12265
  # evaluated when an interface is used by multiple sessions. The first
@@ -14274,13 +14272,13 @@ module Aws::EC2
14274
14272
  #
14275
14273
  # @option params [Array<String>] :subnet_ids
14276
14274
  # (Interface and Gateway Load Balancer endpoints) The IDs of the subnets
14277
- # in which to create an endpoint network interface. For a Gateway Load
14275
+ # in which to create endpoint network interfaces. For a Gateway Load
14278
14276
  # Balancer endpoint, you can specify only one subnet.
14279
14277
  #
14280
14278
  # @option params [Array<String>] :security_group_ids
14281
14279
  # (Interface endpoint) The IDs of the security groups to associate with
14282
- # the endpoint network interface. If this parameter is not specified, we
14283
- # use the default security group for the VPC.
14280
+ # the endpoint network interfaces. If this parameter is not specified,
14281
+ # we use the default security group for the VPC.
14284
14282
  #
14285
14283
  # @option params [String] :ip_address_type
14286
14284
  # The IP address type for the endpoint.
@@ -14316,6 +14314,9 @@ module Aws::EC2
14316
14314
  # @option params [Array<Types::TagSpecification>] :tag_specifications
14317
14315
  # The tags to associate with the endpoint.
14318
14316
  #
14317
+ # @option params [Array<Types::SubnetConfiguration>] :subnet_configurations
14318
+ # The subnet configurations for the endpoint.
14319
+ #
14319
14320
  # @return [Types::CreateVpcEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14320
14321
  #
14321
14322
  # * {Types::CreateVpcEndpointResult#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
@@ -14350,6 +14351,13 @@ module Aws::EC2
14350
14351
  # ],
14351
14352
  # },
14352
14353
  # ],
14354
+ # subnet_configurations: [
14355
+ # {
14356
+ # subnet_id: "SubnetId",
14357
+ # ipv_4: "String",
14358
+ # ipv_6: "String",
14359
+ # },
14360
+ # ],
14353
14361
  # })
14354
14362
  #
14355
14363
  # @example Response structure
@@ -16070,11 +16078,24 @@ module Aws::EC2
16070
16078
  req.send_request(options)
16071
16079
  end
16072
16080
 
16073
- # Deletes one or more versions of a launch template. You cannot delete
16074
- # the default version of a launch template; you must first assign a
16075
- # different version as the default. If the default version is the only
16076
- # version for the launch template, you must delete the entire launch
16077
- # template using DeleteLaunchTemplate.
16081
+ # Deletes one or more versions of a launch template.
16082
+ #
16083
+ # You can't delete the default version of a launch template; you must
16084
+ # first assign a different version as the default. If the default
16085
+ # version is the only version for the launch template, you must delete
16086
+ # the entire launch template using DeleteLaunchTemplate.
16087
+ #
16088
+ # You can delete up to 200 launch template versions in a single request.
16089
+ # To delete more than 200 versions in a single request, use
16090
+ # DeleteLaunchTemplate, which deletes the launch template and all of its
16091
+ # versions.
16092
+ #
16093
+ # For more information, see [Delete a launch template version][1] in the
16094
+ # *EC2 User Guide*.
16095
+ #
16096
+ #
16097
+ #
16098
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/manage-launch-template-versions.html#delete-launch-template-version
16078
16099
  #
16079
16100
  # @option params [Boolean] :dry_run
16080
16101
  # Checks whether you have the required permissions for the action,
@@ -16096,6 +16117,7 @@ module Aws::EC2
16096
16117
  #
16097
16118
  # @option params [required, Array<String>] :versions
16098
16119
  # The version numbers of one or more launch template versions to delete.
16120
+ # You can specify up to 200 launch template version numbers.
16099
16121
  #
16100
16122
  # @return [Types::DeleteLaunchTemplateVersionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16101
16123
  #
@@ -24503,7 +24525,7 @@ module Aws::EC2
24503
24525
  #
24504
24526
  # * `block-device-mapping.attach-time` - The attach time for an EBS
24505
24527
  # volume mapped to the instance, for example,
24506
- # `2010-09-15T17:15:20.000Z`.
24528
+ # `2022-09-15T17:15:20.000Z`.
24507
24529
  #
24508
24530
  # * `block-device-mapping.delete-on-termination` - A Boolean that
24509
24531
  # indicates whether the EBS volume is deleted on instance termination.
@@ -24516,14 +24538,39 @@ module Aws::EC2
24516
24538
  #
24517
24539
  # * `block-device-mapping.volume-id` - The volume ID of the EBS volume.
24518
24540
  #
24541
+ # * `boot-mode` - The boot mode that was specified by the AMI
24542
+ # (`legacy-bios` \| `uefi` \| `uefi-preferred`).
24543
+ #
24519
24544
  # * `capacity-reservation-id` - The ID of the Capacity Reservation into
24520
24545
  # which the instance was launched.
24521
24546
  #
24547
+ # * `capacity-reservation-specification.capacity-reservation-preference`
24548
+ # - The instance's Capacity Reservation preference (`open` \|
24549
+ # `none`).
24550
+ #
24551
+ # * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id`
24552
+ # - The ID of the targeted Capacity Reservation.
24553
+ #
24554
+ # * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn`
24555
+ # - The ARN of the targeted Capacity Reservation group.
24556
+ #
24522
24557
  # * `client-token` - The idempotency token you provided when you
24523
24558
  # launched the instance.
24524
24559
  #
24560
+ # * `current-instance-boot-mode` - The boot mode that is used to launch
24561
+ # the instance at launch or start (`legacy-bios` \| `uefi`).
24562
+ #
24525
24563
  # * `dns-name` - The public DNS name of the instance.
24526
24564
  #
24565
+ # * `ebs-optimized` - A Boolean that indicates whether the instance is
24566
+ # optimized for Amazon EBS I/O.
24567
+ #
24568
+ # * `ena-support` - A Boolean that indicates whether the instance is
24569
+ # enabled for enhanced networking with ENA.
24570
+ #
24571
+ # * `enclave-options.enabled` - A Boolean that indicates whether the
24572
+ # instance is enabled for Amazon Web Services Nitro Enclaves.
24573
+ #
24527
24574
  # * `hibernation-options.configured` - A Boolean that indicates whether
24528
24575
  # the instance is enabled for hibernation. A value of `true` means
24529
24576
  # that the instance is enabled for hibernation.
@@ -24537,6 +24584,12 @@ module Aws::EC2
24537
24584
  # * `iam-instance-profile.arn` - The instance profile associated with
24538
24585
  # the instance. Specified as an ARN.
24539
24586
  #
24587
+ # * `iam-instance-profile.id` - The instance profile associated with the
24588
+ # instance. Specified as an ID.
24589
+ #
24590
+ # * `iam-instance-profile.name` - The instance profile associated with
24591
+ # the instance. Specified as an name.
24592
+ #
24540
24593
  # * `image-id` - The ID of the image used to launch the instance.
24541
24594
  #
24542
24595
  # * `instance-id` - The ID of the instance.
@@ -24563,6 +24616,8 @@ module Aws::EC2
24563
24616
  #
24564
24617
  # * `ip-address` - The public IPv4 address of the instance.
24565
24618
  #
24619
+ # * `ipv6-address` - The IPv6 address of the instance.
24620
+ #
24566
24621
  # * `kernel-id` - The kernel ID.
24567
24622
  #
24568
24623
  # * `key-name` - The name of the key pair used when the instance was
@@ -24577,29 +24632,43 @@ module Aws::EC2
24577
24632
  # example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
24578
24633
  # for example, `2021-09-29T*`, which matches an entire day.
24579
24634
  #
24580
- # * `metadata-options.http-tokens` - The metadata request authorization
24581
- # state (`optional` \| `required`)
24635
+ # * `license-pool` -
24636
+ #
24637
+ # * `maintenance-options.auto-recovery` - The current automatic recovery
24638
+ # behavior of the instance (`disabled` \| `default`).
24639
+ #
24640
+ # * `metadata-options.http-endpoint` - The status of access to the HTTP
24641
+ # metadata endpoint on your instance (`enabled` \| `disabled`)
24642
+ #
24643
+ # * `metadata-options.http-protocol-ipv4` - Indicates whether the IPv4
24644
+ # endpoint is enabled (`disabled` \| `enabled`).
24645
+ #
24646
+ # * `metadata-options.http-protocol-ipv6` - Indicates whether the IPv6
24647
+ # endpoint is enabled (`disabled` \| `enabled`).
24582
24648
  #
24583
24649
  # * `metadata-options.http-put-response-hop-limit` - The HTTP metadata
24584
24650
  # request put response hop limit (integer, possible values `1` to
24585
24651
  # `64`)
24586
24652
  #
24587
- # * `metadata-options.http-endpoint` - The status of access to the HTTP
24588
- # metadata endpoint on your instance (`enabled` \| `disabled`)
24653
+ # * `metadata-options.http-tokens` - The metadata request authorization
24654
+ # state (`optional` \| `required`)
24589
24655
  #
24590
24656
  # * `metadata-options.instance-metadata-tags` - The status of access to
24591
24657
  # instance tags from the instance metadata (`enabled` \| `disabled`)
24592
24658
  #
24659
+ # * `metadata-options.state` - The state of the metadata option changes
24660
+ # (`pending` \| `applied`).
24661
+ #
24593
24662
  # * `monitoring-state` - Indicates whether detailed monitoring is
24594
24663
  # enabled (`disabled` \| `enabled`).
24595
24664
  #
24596
- # * `network-interface.addresses.private-ip-address` - The private IPv4
24597
- # address associated with the network interface.
24598
- #
24599
24665
  # * `network-interface.addresses.primary` - Specifies whether the IPv4
24600
24666
  # address of the network interface is the primary private IPv4
24601
24667
  # address.
24602
24668
  #
24669
+ # * `network-interface.addresses.private-ip-address` - The private IPv4
24670
+ # address associated with the network interface.
24671
+ #
24603
24672
  # * `network-interface.addresses.association.public-ip` - The ID of the
24604
24673
  # association of an Elastic IP address (IPv4) with a network
24605
24674
  # interface.
@@ -24704,8 +24773,31 @@ module Aws::EC2
24704
24773
  # * `platform` - The platform. To list only Windows instances, use
24705
24774
  # `windows`.
24706
24775
  #
24776
+ # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
24777
+ # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
24778
+ # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
24779
+ # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
24780
+ # \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
24781
+ # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
24782
+ # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
24783
+ # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
24784
+ # \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
24785
+ # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
24786
+ # SQL Server Web`).
24787
+ #
24707
24788
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
24708
24789
  #
24790
+ # * `private-dns-name-options.enable-resource-name-dns-a-record` - A
24791
+ # Boolean that indicates whether to respond to DNS queries for
24792
+ # instance hostnames with DNS A records.
24793
+ #
24794
+ # * `private-dns-name-options.enable-resource-name-dns-aaaa-record` - A
24795
+ # Boolean that indicates whether to respond to DNS queries for
24796
+ # instance hostnames with DNS AAAA records.
24797
+ #
24798
+ # * `private-dns-name-options.hostname-type` - The type of hostname
24799
+ # (`ip-name` \| `resource-name`).
24800
+ #
24709
24801
  # * `private-ip-address` - The private IPv4 address of the instance.
24710
24802
  #
24711
24803
  # * `product-code` - The product code associated with the AMI used to
@@ -24766,6 +24858,21 @@ module Aws::EC2
24766
24858
  # * `tenancy` - The tenancy of an instance (`dedicated` \| `default` \|
24767
24859
  # `host`).
24768
24860
  #
24861
+ # * `tpm-support` - Indicates if the instance is configured for NitroTPM
24862
+ # support (`v2.0`).
24863
+ #
24864
+ # * `usage-operation` - The usage operation value for the instance
24865
+ # (`RunInstances` \| `RunInstances:00g0` \| `RunInstances:0010` \|
24866
+ # `RunInstances:1010` \| `RunInstances:1014` \| `RunInstances:1110` \|
24867
+ # `RunInstances:0014` \| `RunInstances:0210` \| `RunInstances:0110` \|
24868
+ # `RunInstances:0100` \| `RunInstances:0004` \| `RunInstances:0200` \|
24869
+ # `RunInstances:000g` \| `RunInstances:0g00` \| `RunInstances:0002` \|
24870
+ # `RunInstances:0800` \| `RunInstances:0102` \| `RunInstances:0006` \|
24871
+ # `RunInstances:0202`).
24872
+ #
24873
+ # * `usage-operation-update-time` - The time that the usage operation
24874
+ # was last updated, for example, `2022-09-15T17:15:20.000Z`.
24875
+ #
24769
24876
  # * `virtualization-type` - The virtualization type of the instance
24770
24877
  # (`paravirtual` \| `hvm`).
24771
24878
  #
@@ -47202,6 +47309,11 @@ module Aws::EC2
47202
47309
  # target. Do not specify this parameter when you want to mirror the
47203
47310
  # entire packet.
47204
47311
  #
47312
+ # For sessions with Network Load Balancer (NLB) traffic mirror targets,
47313
+ # the default `PacketLength` will be set to 8500. Valid values are
47314
+ # 1-8500. Setting a `PacketLength` greater than 8500 will result in an
47315
+ # error response.
47316
+ #
47205
47317
  # @option params [Integer] :session_number
47206
47318
  # The session number determines the order in which sessions are
47207
47319
  # evaluated when an interface is used by multiple sessions. The first
@@ -48333,11 +48445,11 @@ module Aws::EC2
48333
48445
  #
48334
48446
  # @option params [Array<String>] :add_security_group_ids
48335
48447
  # (Interface endpoint) The IDs of the security groups to associate with
48336
- # the network interface.
48448
+ # the endpoint network interfaces.
48337
48449
  #
48338
48450
  # @option params [Array<String>] :remove_security_group_ids
48339
48451
  # (Interface endpoint) The IDs of the security groups to disassociate
48340
- # from the network interface.
48452
+ # from the endpoint network interfaces.
48341
48453
  #
48342
48454
  # @option params [String] :ip_address_type
48343
48455
  # The IP address type for the endpoint.
@@ -48349,6 +48461,9 @@ module Aws::EC2
48349
48461
  # (Interface endpoint) Indicates whether a private hosted zone is
48350
48462
  # associated with the VPC.
48351
48463
  #
48464
+ # @option params [Array<Types::SubnetConfiguration>] :subnet_configurations
48465
+ # The subnet configurations for the endpoint.
48466
+ #
48352
48467
  # @return [Types::ModifyVpcEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
48353
48468
  #
48354
48469
  # * {Types::ModifyVpcEndpointResult#return #return} => Boolean
@@ -48372,6 +48487,13 @@ module Aws::EC2
48372
48487
  # private_dns_only_for_inbound_resolver_endpoint: false,
48373
48488
  # },
48374
48489
  # private_dns_enabled: false,
48490
+ # subnet_configurations: [
48491
+ # {
48492
+ # subnet_id: "SubnetId",
48493
+ # ipv_4: "String",
48494
+ # ipv_6: "String",
48495
+ # },
48496
+ # ],
48375
48497
  # })
48376
48498
  #
48377
48499
  # @example Response structure
@@ -56609,7 +56731,7 @@ module Aws::EC2
56609
56731
  params: params,
56610
56732
  config: config)
56611
56733
  context[:gem_name] = 'aws-sdk-ec2'
56612
- context[:gem_version] = '1.397.0'
56734
+ context[:gem_version] = '1.399.0'
56613
56735
  Seahorse::Client::Request.new(handlers, context)
56614
56736
  end
56615
56737
 
@@ -2660,6 +2660,8 @@ module Aws::EC2
2660
2660
  SubnetCidrReservationId = Shapes::StringShape.new(name: 'SubnetCidrReservationId')
2661
2661
  SubnetCidrReservationList = Shapes::ListShape.new(name: 'SubnetCidrReservationList')
2662
2662
  SubnetCidrReservationType = Shapes::StringShape.new(name: 'SubnetCidrReservationType')
2663
+ SubnetConfiguration = Shapes::StructureShape.new(name: 'SubnetConfiguration')
2664
+ SubnetConfigurationsList = Shapes::ListShape.new(name: 'SubnetConfigurationsList')
2663
2665
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
2664
2666
  SubnetIdStringList = Shapes::ListShape.new(name: 'SubnetIdStringList')
2665
2667
  SubnetIpv6CidrBlockAssociation = Shapes::StructureShape.new(name: 'SubnetIpv6CidrBlockAssociation')
@@ -5243,6 +5245,7 @@ module Aws::EC2
5243
5245
  CreateVpcEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
5244
5246
  CreateVpcEndpointRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsEnabled"))
5245
5247
  CreateVpcEndpointRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5248
+ CreateVpcEndpointRequest.add_member(:subnet_configurations, Shapes::ShapeRef.new(shape: SubnetConfigurationsList, location_name: "SubnetConfiguration"))
5246
5249
  CreateVpcEndpointRequest.struct_class = Types::CreateVpcEndpointRequest
5247
5250
 
5248
5251
  CreateVpcEndpointResult.add_member(:vpc_endpoint, Shapes::ShapeRef.new(shape: VpcEndpoint, location_name: "vpcEndpoint"))
@@ -11359,6 +11362,7 @@ module Aws::EC2
11359
11362
  ModifyVpcEndpointRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
11360
11363
  ModifyVpcEndpointRequest.add_member(:dns_options, Shapes::ShapeRef.new(shape: DnsOptionsSpecification, location_name: "DnsOptions"))
11361
11364
  ModifyVpcEndpointRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsEnabled"))
11365
+ ModifyVpcEndpointRequest.add_member(:subnet_configurations, Shapes::ShapeRef.new(shape: SubnetConfigurationsList, location_name: "SubnetConfiguration"))
11362
11366
  ModifyVpcEndpointRequest.struct_class = Types::ModifyVpcEndpointRequest
11363
11367
 
11364
11368
  ModifyVpcEndpointResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
@@ -13734,6 +13738,13 @@ module Aws::EC2
13734
13738
 
13735
13739
  SubnetCidrReservationList.member = Shapes::ShapeRef.new(shape: SubnetCidrReservation, location_name: "item")
13736
13740
 
13741
+ SubnetConfiguration.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
13742
+ SubnetConfiguration.add_member(:ipv_4, Shapes::ShapeRef.new(shape: String, location_name: "Ipv4"))
13743
+ SubnetConfiguration.add_member(:ipv_6, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6"))
13744
+ SubnetConfiguration.struct_class = Types::SubnetConfiguration
13745
+
13746
+ SubnetConfigurationsList.member = Shapes::ShapeRef.new(shape: SubnetConfiguration, location_name: "item")
13747
+
13737
13748
  SubnetIdStringList.member = Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId")
13738
13749
 
13739
13750
  SubnetIpv6CidrBlockAssociation.add_member(:association_id, Shapes::ShapeRef.new(shape: SubnetCidrAssociationId, location_name: "associationId"))
@@ -265,7 +265,7 @@ module Aws::EC2
265
265
  #
266
266
  # * `block-device-mapping.attach-time` - The attach time for an EBS
267
267
  # volume mapped to the instance, for example,
268
- # `2010-09-15T17:15:20.000Z`.
268
+ # `2022-09-15T17:15:20.000Z`.
269
269
  #
270
270
  # * `block-device-mapping.delete-on-termination` - A Boolean that
271
271
  # indicates whether the EBS volume is deleted on instance termination.
@@ -278,14 +278,39 @@ module Aws::EC2
278
278
  #
279
279
  # * `block-device-mapping.volume-id` - The volume ID of the EBS volume.
280
280
  #
281
+ # * `boot-mode` - The boot mode that was specified by the AMI
282
+ # (`legacy-bios` \| `uefi` \| `uefi-preferred`).
283
+ #
281
284
  # * `capacity-reservation-id` - The ID of the Capacity Reservation into
282
285
  # which the instance was launched.
283
286
  #
287
+ # * `capacity-reservation-specification.capacity-reservation-preference`
288
+ # - The instance's Capacity Reservation preference (`open` \|
289
+ # `none`).
290
+ #
291
+ # * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id`
292
+ # - The ID of the targeted Capacity Reservation.
293
+ #
294
+ # * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn`
295
+ # - The ARN of the targeted Capacity Reservation group.
296
+ #
284
297
  # * `client-token` - The idempotency token you provided when you
285
298
  # launched the instance.
286
299
  #
300
+ # * `current-instance-boot-mode` - The boot mode that is used to launch
301
+ # the instance at launch or start (`legacy-bios` \| `uefi`).
302
+ #
287
303
  # * `dns-name` - The public DNS name of the instance.
288
304
  #
305
+ # * `ebs-optimized` - A Boolean that indicates whether the instance is
306
+ # optimized for Amazon EBS I/O.
307
+ #
308
+ # * `ena-support` - A Boolean that indicates whether the instance is
309
+ # enabled for enhanced networking with ENA.
310
+ #
311
+ # * `enclave-options.enabled` - A Boolean that indicates whether the
312
+ # instance is enabled for Amazon Web Services Nitro Enclaves.
313
+ #
289
314
  # * `hibernation-options.configured` - A Boolean that indicates whether
290
315
  # the instance is enabled for hibernation. A value of `true` means
291
316
  # that the instance is enabled for hibernation.
@@ -299,6 +324,12 @@ module Aws::EC2
299
324
  # * `iam-instance-profile.arn` - The instance profile associated with
300
325
  # the instance. Specified as an ARN.
301
326
  #
327
+ # * `iam-instance-profile.id` - The instance profile associated with the
328
+ # instance. Specified as an ID.
329
+ #
330
+ # * `iam-instance-profile.name` - The instance profile associated with
331
+ # the instance. Specified as an name.
332
+ #
302
333
  # * `image-id` - The ID of the image used to launch the instance.
303
334
  #
304
335
  # * `instance-id` - The ID of the instance.
@@ -325,6 +356,8 @@ module Aws::EC2
325
356
  #
326
357
  # * `ip-address` - The public IPv4 address of the instance.
327
358
  #
359
+ # * `ipv6-address` - The IPv6 address of the instance.
360
+ #
328
361
  # * `kernel-id` - The kernel ID.
329
362
  #
330
363
  # * `key-name` - The name of the key pair used when the instance was
@@ -339,29 +372,43 @@ module Aws::EC2
339
372
  # example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
340
373
  # for example, `2021-09-29T*`, which matches an entire day.
341
374
  #
342
- # * `metadata-options.http-tokens` - The metadata request authorization
343
- # state (`optional` \| `required`)
375
+ # * `license-pool` -
376
+ #
377
+ # * `maintenance-options.auto-recovery` - The current automatic recovery
378
+ # behavior of the instance (`disabled` \| `default`).
379
+ #
380
+ # * `metadata-options.http-endpoint` - The status of access to the HTTP
381
+ # metadata endpoint on your instance (`enabled` \| `disabled`)
382
+ #
383
+ # * `metadata-options.http-protocol-ipv4` - Indicates whether the IPv4
384
+ # endpoint is enabled (`disabled` \| `enabled`).
385
+ #
386
+ # * `metadata-options.http-protocol-ipv6` - Indicates whether the IPv6
387
+ # endpoint is enabled (`disabled` \| `enabled`).
344
388
  #
345
389
  # * `metadata-options.http-put-response-hop-limit` - The HTTP metadata
346
390
  # request put response hop limit (integer, possible values `1` to
347
391
  # `64`)
348
392
  #
349
- # * `metadata-options.http-endpoint` - The status of access to the HTTP
350
- # metadata endpoint on your instance (`enabled` \| `disabled`)
393
+ # * `metadata-options.http-tokens` - The metadata request authorization
394
+ # state (`optional` \| `required`)
351
395
  #
352
396
  # * `metadata-options.instance-metadata-tags` - The status of access to
353
397
  # instance tags from the instance metadata (`enabled` \| `disabled`)
354
398
  #
399
+ # * `metadata-options.state` - The state of the metadata option changes
400
+ # (`pending` \| `applied`).
401
+ #
355
402
  # * `monitoring-state` - Indicates whether detailed monitoring is
356
403
  # enabled (`disabled` \| `enabled`).
357
404
  #
358
- # * `network-interface.addresses.private-ip-address` - The private IPv4
359
- # address associated with the network interface.
360
- #
361
405
  # * `network-interface.addresses.primary` - Specifies whether the IPv4
362
406
  # address of the network interface is the primary private IPv4
363
407
  # address.
364
408
  #
409
+ # * `network-interface.addresses.private-ip-address` - The private IPv4
410
+ # address associated with the network interface.
411
+ #
365
412
  # * `network-interface.addresses.association.public-ip` - The ID of the
366
413
  # association of an Elastic IP address (IPv4) with a network
367
414
  # interface.
@@ -466,8 +513,31 @@ module Aws::EC2
466
513
  # * `platform` - The platform. To list only Windows instances, use
467
514
  # `windows`.
468
515
  #
516
+ # * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
517
+ # Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
518
+ # with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
519
+ # HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
520
+ # \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
521
+ # Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
522
+ # with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
523
+ # Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
524
+ # \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
525
+ # Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
526
+ # SQL Server Web`).
527
+ #
469
528
  # * `private-dns-name` - The private IPv4 DNS name of the instance.
470
529
  #
530
+ # * `private-dns-name-options.enable-resource-name-dns-a-record` - A
531
+ # Boolean that indicates whether to respond to DNS queries for
532
+ # instance hostnames with DNS A records.
533
+ #
534
+ # * `private-dns-name-options.enable-resource-name-dns-aaaa-record` - A
535
+ # Boolean that indicates whether to respond to DNS queries for
536
+ # instance hostnames with DNS AAAA records.
537
+ #
538
+ # * `private-dns-name-options.hostname-type` - The type of hostname
539
+ # (`ip-name` \| `resource-name`).
540
+ #
471
541
  # * `private-ip-address` - The private IPv4 address of the instance.
472
542
  #
473
543
  # * `product-code` - The product code associated with the AMI used to
@@ -528,6 +598,21 @@ module Aws::EC2
528
598
  # * `tenancy` - The tenancy of an instance (`dedicated` \| `default` \|
529
599
  # `host`).
530
600
  #
601
+ # * `tpm-support` - Indicates if the instance is configured for NitroTPM
602
+ # support (`v2.0`).
603
+ #
604
+ # * `usage-operation` - The usage operation value for the instance
605
+ # (`RunInstances` \| `RunInstances:00g0` \| `RunInstances:0010` \|
606
+ # `RunInstances:1010` \| `RunInstances:1014` \| `RunInstances:1110` \|
607
+ # `RunInstances:0014` \| `RunInstances:0210` \| `RunInstances:0110` \|
608
+ # `RunInstances:0100` \| `RunInstances:0004` \| `RunInstances:0200` \|
609
+ # `RunInstances:000g` \| `RunInstances:0g00` \| `RunInstances:0002` \|
610
+ # `RunInstances:0800` \| `RunInstances:0102` \| `RunInstances:0006` \|
611
+ # `RunInstances:0202`).
612
+ #
613
+ # * `usage-operation-update-time` - The time that the usage operation
614
+ # was last updated, for example, `2022-09-15T17:15:20.000Z`.
615
+ #
531
616
  # * `virtualization-type` - The virtualization type of the instance
532
617
  # (`paravirtual` \| `hvm`).
533
618
  #