aws-sdk-ec2 1.312.0 → 1.315.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: 3d2c43af6428c9fd6d5056e4fc76ff60a07ce310aa865e5a59bdebe11bccef65
4
- data.tar.gz: d636f87a15c97f2cfb5710eeab4f5ecf25b82cbc3751c23f14f3c8da84ebc5c8
3
+ metadata.gz: b55a0254465e7c429d128c11e4f1ca76343c5132148a43ad1992ae32e40b6124
4
+ data.tar.gz: cabea989bd3361b06d107ea9a29b899cac3d43d23d3434bf9a6c30eea9092e0f
5
5
  SHA512:
6
- metadata.gz: a258a17066ef662555d85a4b3abd1dd45b407e750bc3a0943a7292d4c52f30508f38a7913dc1bd6066cb45eba874860041fb35f4d856424de5febab0f1b38609
7
- data.tar.gz: af7e37c75e29aa546ecad0878f2a0ac7f4de708845b84621173aed468393ed857294dff60e986d35e0b19005d2ed005faa755b8a006227ce8b10d57dc6c4a1a7
6
+ metadata.gz: 83fc1ba3ec0bfe45b536b520d5e717a3fc9094a5627d92329cb313f7e104743b8169a04d251474c34dde6388566ade97112e7035cd2ab88cbe0ed11f984b5733
7
+ data.tar.gz: 6c8db5c1325953a1cbb7d89f5566e70053e0349f2c4e2c285710dbed475a562f78d7238a93f9521b704088654f257b2ffb50b654fa453f8bb8568fbf84d8c7f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.315.0 (2022-05-12)
5
+ ------------------
6
+
7
+ * Feature - This release introduces a target type Gateway Load Balancer Endpoint for mirrored traffic. Customers can now specify GatewayLoadBalancerEndpoint option during the creation of a traffic mirror target.
8
+
9
+ 1.314.0 (2022-05-11)
10
+ ------------------
11
+
12
+ * Feature - This release updates AWS PrivateLink APIs to support IPv6 for PrivateLink Services and Endpoints of type 'Interface'.
13
+
14
+ 1.313.0 (2022-05-10)
15
+ ------------------
16
+
17
+ * Feature - Added support for using NitroTPM and UEFI Secure Boot on EC2 instances.
18
+
4
19
  1.312.0 (2022-05-06)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.312.0
1
+ 1.315.0
@@ -10595,9 +10595,6 @@ module Aws::EC2
10595
10595
  #
10596
10596
  # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/subnet-cidr-reservation.html
10597
10597
  #
10598
- # @option params [Array<Types::TagSpecification>] :tag_specifications
10599
- # The tags to assign to the subnet CIDR reservation.
10600
- #
10601
10598
  # @option params [required, String] :subnet_id
10602
10599
  # The ID of the subnet.
10603
10600
  #
@@ -10631,6 +10628,9 @@ module Aws::EC2
10631
10628
  # If you have the required permissions, the error response is
10632
10629
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
10633
10630
  #
10631
+ # @option params [Array<Types::TagSpecification>] :tag_specifications
10632
+ # The tags to assign to the subnet CIDR reservation.
10633
+ #
10634
10634
  # @return [Types::CreateSubnetCidrReservationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10635
10635
  #
10636
10636
  # * {Types::CreateSubnetCidrReservationResult#subnet_cidr_reservation #subnet_cidr_reservation} => Types::SubnetCidrReservation
@@ -10638,6 +10638,11 @@ module Aws::EC2
10638
10638
  # @example Request syntax with placeholder values
10639
10639
  #
10640
10640
  # resp = client.create_subnet_cidr_reservation({
10641
+ # subnet_id: "SubnetId", # required
10642
+ # cidr: "String", # required
10643
+ # reservation_type: "prefix", # required, accepts prefix, explicit
10644
+ # description: "String",
10645
+ # dry_run: false,
10641
10646
  # tag_specifications: [
10642
10647
  # {
10643
10648
  # resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, 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-route-table, volume, vpc, vpc-endpoint, vpc-endpoint-service, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
@@ -10649,11 +10654,6 @@ module Aws::EC2
10649
10654
  # ],
10650
10655
  # },
10651
10656
  # ],
10652
- # subnet_id: "SubnetId", # required
10653
- # cidr: "String", # required
10654
- # reservation_type: "prefix", # required, accepts prefix, explicit
10655
- # description: "String",
10656
- # dry_run: false,
10657
10657
  # })
10658
10658
  #
10659
10659
  # @example Response structure
@@ -11123,8 +11123,8 @@ module Aws::EC2
11123
11123
  # appliances) can be in the same VPC, or in different VPCs connected via
11124
11124
  # VPC peering or a transit gateway.
11125
11125
  #
11126
- # A Traffic Mirror target can be a network interface, or a Network Load
11127
- # Balancer.
11126
+ # A Traffic Mirror target can be a network interface, a Network Load
11127
+ # Balancer, or a Gateway Load Balancer endpoint.
11128
11128
  #
11129
11129
  # To use the target in a Traffic Mirror session, use
11130
11130
  # [CreateTrafficMirrorSession][1].
@@ -11164,6 +11164,9 @@ module Aws::EC2
11164
11164
  #
11165
11165
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
11166
11166
  #
11167
+ # @option params [String] :gateway_load_balancer_endpoint_id
11168
+ # The ID of the Gateway Load Balancer endpoint.
11169
+ #
11167
11170
  # @return [Types::CreateTrafficMirrorTargetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11168
11171
  #
11169
11172
  # * {Types::CreateTrafficMirrorTargetResult#traffic_mirror_target #traffic_mirror_target} => Types::TrafficMirrorTarget
@@ -11188,6 +11191,7 @@ module Aws::EC2
11188
11191
  # ],
11189
11192
  # dry_run: false,
11190
11193
  # client_token: "String",
11194
+ # gateway_load_balancer_endpoint_id: "VpcEndpointId",
11191
11195
  # })
11192
11196
  #
11193
11197
  # @example Response structure
@@ -11195,12 +11199,13 @@ module Aws::EC2
11195
11199
  # resp.traffic_mirror_target.traffic_mirror_target_id #=> String
11196
11200
  # resp.traffic_mirror_target.network_interface_id #=> String
11197
11201
  # resp.traffic_mirror_target.network_load_balancer_arn #=> String
11198
- # resp.traffic_mirror_target.type #=> String, one of "network-interface", "network-load-balancer"
11202
+ # resp.traffic_mirror_target.type #=> String, one of "network-interface", "network-load-balancer", "gateway-load-balancer-endpoint"
11199
11203
  # resp.traffic_mirror_target.description #=> String
11200
11204
  # resp.traffic_mirror_target.owner_id #=> String
11201
11205
  # resp.traffic_mirror_target.tags #=> Array
11202
11206
  # resp.traffic_mirror_target.tags[0].key #=> String
11203
11207
  # resp.traffic_mirror_target.tags[0].value #=> String
11208
+ # resp.traffic_mirror_target.gateway_load_balancer_endpoint_id #=> String
11204
11209
  # resp.client_token #=> String
11205
11210
  #
11206
11211
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTrafficMirrorTarget AWS API Documentation
@@ -12460,6 +12465,12 @@ module Aws::EC2
12460
12465
  # (Interface endpoint) The ID of one or more security groups to
12461
12466
  # associate with the endpoint network interface.
12462
12467
  #
12468
+ # @option params [String] :ip_address_type
12469
+ # The IP address type for the endpoint.
12470
+ #
12471
+ # @option params [Types::DnsOptionsSpecification] :dns_options
12472
+ # The DNS options for the endpoint.
12473
+ #
12463
12474
  # @option params [String] :client_token
12464
12475
  # Unique, case-sensitive identifier that you provide to ensure the
12465
12476
  # idempotency of the request. For more information, see [How to ensure
@@ -12504,6 +12515,10 @@ module Aws::EC2
12504
12515
  # route_table_ids: ["RouteTableId"],
12505
12516
  # subnet_ids: ["SubnetId"],
12506
12517
  # security_group_ids: ["SecurityGroupId"],
12518
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
12519
+ # dns_options: {
12520
+ # dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
12521
+ # },
12507
12522
  # client_token: "String",
12508
12523
  # private_dns_enabled: false,
12509
12524
  # tag_specifications: [
@@ -12534,6 +12549,8 @@ module Aws::EC2
12534
12549
  # resp.vpc_endpoint.groups #=> Array
12535
12550
  # resp.vpc_endpoint.groups[0].group_id #=> String
12536
12551
  # resp.vpc_endpoint.groups[0].group_name #=> String
12552
+ # resp.vpc_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
12553
+ # resp.vpc_endpoint.dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
12537
12554
  # resp.vpc_endpoint.private_dns_enabled #=> Boolean
12538
12555
  # resp.vpc_endpoint.requester_managed #=> Boolean
12539
12556
  # resp.vpc_endpoint.network_interface_ids #=> Array
@@ -12682,6 +12699,10 @@ module Aws::EC2
12682
12699
  # The Amazon Resource Names (ARNs) of one or more Gateway Load
12683
12700
  # Balancers.
12684
12701
  #
12702
+ # @option params [Array<String>] :supported_ip_address_types
12703
+ # The supported IP address types. The possible values are `ipv4` and
12704
+ # `ipv6`.
12705
+ #
12685
12706
  # @option params [String] :client_token
12686
12707
  # Unique, case-sensitive identifier that you provide to ensure the
12687
12708
  # idempotency of the request. For more information, see [How to ensure
@@ -12707,6 +12728,7 @@ module Aws::EC2
12707
12728
  # private_dns_name: "String",
12708
12729
  # network_load_balancer_arns: ["String"],
12709
12730
  # gateway_load_balancer_arns: ["String"],
12731
+ # supported_ip_address_types: ["String"],
12710
12732
  # client_token: "String",
12711
12733
  # tag_specifications: [
12712
12734
  # {
@@ -12736,6 +12758,8 @@ module Aws::EC2
12736
12758
  # resp.service_configuration.network_load_balancer_arns[0] #=> String
12737
12759
  # resp.service_configuration.gateway_load_balancer_arns #=> Array
12738
12760
  # resp.service_configuration.gateway_load_balancer_arns[0] #=> String
12761
+ # resp.service_configuration.supported_ip_address_types #=> Array
12762
+ # resp.service_configuration.supported_ip_address_types[0] #=> String, one of "ipv4", "ipv6"
12739
12763
  # resp.service_configuration.base_endpoint_dns_names #=> Array
12740
12764
  # resp.service_configuration.base_endpoint_dns_names[0] #=> String
12741
12765
  # resp.service_configuration.private_dns_name #=> String
@@ -20130,6 +20154,8 @@ module Aws::EC2
20130
20154
  # * {Types::ImageAttribute#ramdisk_id #ramdisk_id} => Types::AttributeValue
20131
20155
  # * {Types::ImageAttribute#sriov_net_support #sriov_net_support} => Types::AttributeValue
20132
20156
  # * {Types::ImageAttribute#boot_mode #boot_mode} => Types::AttributeValue
20157
+ # * {Types::ImageAttribute#tpm_support #tpm_support} => Types::AttributeValue
20158
+ # * {Types::ImageAttribute#uefi_data #uefi_data} => Types::AttributeValue
20133
20159
  # * {Types::ImageAttribute#last_launched_time #last_launched_time} => Types::AttributeValue
20134
20160
  #
20135
20161
  #
@@ -20155,7 +20181,7 @@ module Aws::EC2
20155
20181
  # @example Request syntax with placeholder values
20156
20182
  #
20157
20183
  # resp = client.describe_image_attribute({
20158
- # attribute: "description", # required, accepts description, kernel, ramdisk, launchPermission, productCodes, blockDeviceMapping, sriovNetSupport, bootMode, lastLaunchedTime
20184
+ # attribute: "description", # required, accepts description, kernel, ramdisk, launchPermission, productCodes, blockDeviceMapping, sriovNetSupport, bootMode, tpmSupport, uefiData, lastLaunchedTime
20159
20185
  # image_id: "ImageId", # required
20160
20186
  # dry_run: false,
20161
20187
  # })
@@ -20189,6 +20215,8 @@ module Aws::EC2
20189
20215
  # resp.ramdisk_id #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
20190
20216
  # resp.sriov_net_support #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
20191
20217
  # resp.boot_mode #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
20218
+ # resp.tpm_support #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
20219
+ # resp.uefi_data #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
20192
20220
  # resp.last_launched_time #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
20193
20221
  #
20194
20222
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImageAttribute AWS API Documentation
@@ -20469,6 +20497,7 @@ module Aws::EC2
20469
20497
  # resp.images[0].tags[0].value #=> String
20470
20498
  # resp.images[0].virtualization_type #=> String, one of "hvm", "paravirtual"
20471
20499
  # resp.images[0].boot_mode #=> String, one of "legacy-bios", "uefi"
20500
+ # resp.images[0].tpm_support #=> String, one of "v2.0"
20472
20501
  # resp.images[0].deprecation_time #=> String
20473
20502
  #
20474
20503
  #
@@ -22186,6 +22215,7 @@ module Aws::EC2
22186
22215
  # resp.reservations[0].instances[0].private_dns_name_options.enable_resource_name_dns_a_record #=> Boolean
22187
22216
  # resp.reservations[0].instances[0].private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
22188
22217
  # resp.reservations[0].instances[0].ipv_6_address #=> String
22218
+ # resp.reservations[0].instances[0].tpm_support #=> String
22189
22219
  # resp.reservations[0].instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
22190
22220
  # resp.reservations[0].owner_id #=> String
22191
22221
  # resp.reservations[0].requester_id #=> String
@@ -29548,12 +29578,13 @@ module Aws::EC2
29548
29578
  # resp.traffic_mirror_targets[0].traffic_mirror_target_id #=> String
29549
29579
  # resp.traffic_mirror_targets[0].network_interface_id #=> String
29550
29580
  # resp.traffic_mirror_targets[0].network_load_balancer_arn #=> String
29551
- # resp.traffic_mirror_targets[0].type #=> String, one of "network-interface", "network-load-balancer"
29581
+ # resp.traffic_mirror_targets[0].type #=> String, one of "network-interface", "network-load-balancer", "gateway-load-balancer-endpoint"
29552
29582
  # resp.traffic_mirror_targets[0].description #=> String
29553
29583
  # resp.traffic_mirror_targets[0].owner_id #=> String
29554
29584
  # resp.traffic_mirror_targets[0].tags #=> Array
29555
29585
  # resp.traffic_mirror_targets[0].tags[0].key #=> String
29556
29586
  # resp.traffic_mirror_targets[0].tags[0].value #=> String
29587
+ # resp.traffic_mirror_targets[0].gateway_load_balancer_endpoint_id #=> String
29557
29588
  # resp.next_token #=> String
29558
29589
  #
29559
29590
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTrafficMirrorTargets AWS API Documentation
@@ -31318,6 +31349,8 @@ module Aws::EC2
31318
31349
  # @option params [Array<Types::Filter>] :filters
31319
31350
  # One or more filters.
31320
31351
  #
31352
+ # * `ip-address-type` - The IP address type (`ipv4` \| `ipv6`).
31353
+ #
31321
31354
  # * `service-id` - The ID of the service.
31322
31355
  #
31323
31356
  # * `vpc-endpoint-owner` - The ID of the Amazon Web Services account ID
@@ -31375,6 +31408,7 @@ module Aws::EC2
31375
31408
  # resp.vpc_endpoint_connections[0].network_load_balancer_arns[0] #=> String
31376
31409
  # resp.vpc_endpoint_connections[0].gateway_load_balancer_arns #=> Array
31377
31410
  # resp.vpc_endpoint_connections[0].gateway_load_balancer_arns[0] #=> String
31411
+ # resp.vpc_endpoint_connections[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
31378
31412
  # resp.next_token #=> String
31379
31413
  #
31380
31414
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointConnections AWS API Documentation
@@ -31408,6 +31442,9 @@ module Aws::EC2
31408
31442
  # * `service-state` - The state of the service (`Pending` \| `Available`
31409
31443
  # \| `Deleting` \| `Deleted` \| `Failed`).
31410
31444
  #
31445
+ # * `supported-ip-address-types` - The IP address type (`ipv4` \|
31446
+ # `ipv6`).
31447
+ #
31411
31448
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
31412
31449
  # the resource. Use the tag key in the filter name and the tag value
31413
31450
  # as the filter value. For example, to find all resources that have a
@@ -31466,6 +31503,8 @@ module Aws::EC2
31466
31503
  # resp.service_configurations[0].network_load_balancer_arns[0] #=> String
31467
31504
  # resp.service_configurations[0].gateway_load_balancer_arns #=> Array
31468
31505
  # resp.service_configurations[0].gateway_load_balancer_arns[0] #=> String
31506
+ # resp.service_configurations[0].supported_ip_address_types #=> Array
31507
+ # resp.service_configurations[0].supported_ip_address_types[0] #=> String, one of "ipv4", "ipv6"
31469
31508
  # resp.service_configurations[0].base_endpoint_dns_names #=> Array
31470
31509
  # resp.service_configurations[0].base_endpoint_dns_names[0] #=> String
31471
31510
  # resp.service_configurations[0].private_dns_name #=> String
@@ -31582,6 +31621,9 @@ module Aws::EC2
31582
31621
  #
31583
31622
  # * `service-type` - The type of service (`Interface` \| `Gateway`).
31584
31623
  #
31624
+ # * `supported-ip-address-types` - The IP address type (`ipv4` \|
31625
+ # `ipv6`).
31626
+ #
31585
31627
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
31586
31628
  # the resource. Use the tag key in the filter name and the tag value
31587
31629
  # as the filter value. For example, to find all resources that have a
@@ -31650,6 +31692,8 @@ module Aws::EC2
31650
31692
  # resp.service_details[0].tags[0].key #=> String
31651
31693
  # resp.service_details[0].tags[0].value #=> String
31652
31694
  # resp.service_details[0].private_dns_name_verification_state #=> String, one of "pendingVerification", "verified", "failed"
31695
+ # resp.service_details[0].supported_ip_address_types #=> Array
31696
+ # resp.service_details[0].supported_ip_address_types[0] #=> String, one of "ipv4", "ipv6"
31653
31697
  # resp.next_token #=> String
31654
31698
  #
31655
31699
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServices AWS API Documentation
@@ -31675,6 +31719,8 @@ module Aws::EC2
31675
31719
  # @option params [Array<Types::Filter>] :filters
31676
31720
  # One or more filters.
31677
31721
  #
31722
+ # * `ip-address-type` - The IP address type (`ipv4` \| `ipv6`).
31723
+ #
31678
31724
  # * `service-name` - The name of the service.
31679
31725
  #
31680
31726
  # * `vpc-id` - The ID of the VPC in which the endpoint resides.
@@ -31748,6 +31794,8 @@ module Aws::EC2
31748
31794
  # resp.vpc_endpoints[0].groups #=> Array
31749
31795
  # resp.vpc_endpoints[0].groups[0].group_id #=> String
31750
31796
  # resp.vpc_endpoints[0].groups[0].group_name #=> String
31797
+ # resp.vpc_endpoints[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
31798
+ # resp.vpc_endpoints[0].dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
31751
31799
  # resp.vpc_endpoints[0].private_dns_enabled #=> Boolean
31752
31800
  # resp.vpc_endpoints[0].requester_managed #=> Boolean
31753
31801
  # resp.vpc_endpoints[0].network_interface_ids #=> Array
@@ -35266,6 +35314,62 @@ module Aws::EC2
35266
35314
  req.send_request(options)
35267
35315
  end
35268
35316
 
35317
+ # A binary representation of the UEFI variable store. Only non-volatile
35318
+ # variables are stored. This is a base64 encoded and zlib compressed
35319
+ # binary value that must be properly encoded.
35320
+ #
35321
+ # When you use [register-image][1] to create an AMI, you can create an
35322
+ # exact copy of your variable store by passing the UEFI data in the
35323
+ # `UefiData` parameter. You can modify the UEFI data by using the
35324
+ # [python-uefivars tool][2] on GitHub. You can use the tool to convert
35325
+ # the UEFI data into a human-readable format (JSON), which you can
35326
+ # inspect and modify, and then convert back into the binary format to
35327
+ # use with register-image.
35328
+ #
35329
+ # For more information, see [UEFI Secure Boot][3] in the *Amazon EC2
35330
+ # User Guide*.
35331
+ #
35332
+ #
35333
+ #
35334
+ # [1]: https://docs.aws.amazon.com/cli/latest/reference/ec2/register-image.html
35335
+ # [2]: https://github.com/awslabs/python-uefivars
35336
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/uefi-secure-boot.html
35337
+ #
35338
+ # @option params [required, String] :instance_id
35339
+ # The ID of the instance from which to retrieve the UEFI data.
35340
+ #
35341
+ # @option params [Boolean] :dry_run
35342
+ # Checks whether you have the required permissions for the action,
35343
+ # without actually making the request, and provides an error response.
35344
+ # If you have the required permissions, the error response is
35345
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
35346
+ #
35347
+ # @return [Types::GetInstanceUefiDataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
35348
+ #
35349
+ # * {Types::GetInstanceUefiDataResult#instance_id #instance_id} => String
35350
+ # * {Types::GetInstanceUefiDataResult#uefi_data #uefi_data} => String
35351
+ #
35352
+ # @example Request syntax with placeholder values
35353
+ #
35354
+ # resp = client.get_instance_uefi_data({
35355
+ # instance_id: "InstanceId", # required
35356
+ # dry_run: false,
35357
+ # })
35358
+ #
35359
+ # @example Response structure
35360
+ #
35361
+ # resp.instance_id #=> String
35362
+ # resp.uefi_data #=> String
35363
+ #
35364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetInstanceUefiData AWS API Documentation
35365
+ #
35366
+ # @overload get_instance_uefi_data(params = {})
35367
+ # @param [Hash] params ({})
35368
+ def get_instance_uefi_data(params = {}, options = {})
35369
+ req = build_request(:get_instance_uefi_data, params)
35370
+ req.send_request(options)
35371
+ end
35372
+
35269
35373
  # Retrieve historical information about a CIDR within an IPAM scope. For
35270
35374
  # more information, see [View the history of IP
35271
35375
  # addresses](/vpc/latest/ipam/view-history-cidr-ipam.html) in the
@@ -41996,6 +42100,12 @@ module Aws::EC2
41996
42100
  # (Interface endpoint) One or more security group IDs to disassociate
41997
42101
  # from the network interface.
41998
42102
  #
42103
+ # @option params [String] :ip_address_type
42104
+ # The IP address type for the endpoint.
42105
+ #
42106
+ # @option params [Types::DnsOptionsSpecification] :dns_options
42107
+ # The DNS options for the endpoint.
42108
+ #
41999
42109
  # @option params [Boolean] :private_dns_enabled
42000
42110
  # (Interface endpoint) Indicates whether a private hosted zone is
42001
42111
  # associated with the VPC.
@@ -42017,6 +42127,10 @@ module Aws::EC2
42017
42127
  # remove_subnet_ids: ["SubnetId"],
42018
42128
  # add_security_group_ids: ["SecurityGroupId"],
42019
42129
  # remove_security_group_ids: ["SecurityGroupId"],
42130
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
42131
+ # dns_options: {
42132
+ # dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
42133
+ # },
42020
42134
  # private_dns_enabled: false,
42021
42135
  # })
42022
42136
  #
@@ -42125,6 +42239,12 @@ module Aws::EC2
42125
42239
  # The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove
42126
42240
  # from your service configuration.
42127
42241
  #
42242
+ # @option params [Array<String>] :add_supported_ip_address_types
42243
+ # The IP address types to add to your service configuration.
42244
+ #
42245
+ # @option params [Array<String>] :remove_supported_ip_address_types
42246
+ # The IP address types to remove from your service configuration.
42247
+ #
42128
42248
  # @return [Types::ModifyVpcEndpointServiceConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
42129
42249
  #
42130
42250
  # * {Types::ModifyVpcEndpointServiceConfigurationResult#return #return} => Boolean
@@ -42141,6 +42261,8 @@ module Aws::EC2
42141
42261
  # remove_network_load_balancer_arns: ["String"],
42142
42262
  # add_gateway_load_balancer_arns: ["String"],
42143
42263
  # remove_gateway_load_balancer_arns: ["String"],
42264
+ # add_supported_ip_address_types: ["String"],
42265
+ # remove_supported_ip_address_types: ["String"],
42144
42266
  # })
42145
42267
  #
42146
42268
  # @example Response structure
@@ -43789,6 +43911,28 @@ module Aws::EC2
43789
43911
  #
43790
43912
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html
43791
43913
  #
43914
+ # @option params [String] :tpm_support
43915
+ # Set to `v2.0` to enable Trusted Platform Module (TPM) support. For
43916
+ # more information, see [NitroTPM][1] in the *Amazon Elastic Compute
43917
+ # Cloud User Guide*.
43918
+ #
43919
+ #
43920
+ #
43921
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html
43922
+ #
43923
+ # @option params [String] :uefi_data
43924
+ # Base64 representation of the non-volatile UEFI variable store. To
43925
+ # retrieve the UEFI data, use the [GetInstanceUefiData][1] command. You
43926
+ # can inspect and modify the UEFI data by using the [python-uefivars
43927
+ # tool][2] on GitHub. For more information, see [UEFI Secure Boot][3] in
43928
+ # the *Amazon Elastic Compute Cloud User Guide*.
43929
+ #
43930
+ #
43931
+ #
43932
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetInstanceUefiData
43933
+ # [2]: https://github.com/awslabs/python-uefivars
43934
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/uefi-secure-boot.html
43935
+ #
43792
43936
  # @return [Types::RegisterImageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
43793
43937
  #
43794
43938
  # * {Types::RegisterImageResult#image_id #image_id} => String
@@ -43827,6 +43971,8 @@ module Aws::EC2
43827
43971
  # sriov_net_support: "String",
43828
43972
  # virtualization_type: "String",
43829
43973
  # boot_mode: "legacy-bios", # accepts legacy-bios, uefi
43974
+ # tpm_support: "v2.0", # accepts v2.0
43975
+ # uefi_data: "StringType",
43830
43976
  # })
43831
43977
  #
43832
43978
  # @example Response structure
@@ -47604,6 +47750,7 @@ module Aws::EC2
47604
47750
  # resp.instances[0].private_dns_name_options.enable_resource_name_dns_a_record #=> Boolean
47605
47751
  # resp.instances[0].private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
47606
47752
  # resp.instances[0].ipv_6_address #=> String
47753
+ # resp.instances[0].tpm_support #=> String
47607
47754
  # resp.instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
47608
47755
  # resp.owner_id #=> String
47609
47756
  # resp.requester_id #=> String
@@ -49514,7 +49661,7 @@ module Aws::EC2
49514
49661
  params: params,
49515
49662
  config: config)
49516
49663
  context[:gem_name] = 'aws-sdk-ec2'
49517
- context[:gem_version] = '1.312.0'
49664
+ context[:gem_version] = '1.315.0'
49518
49665
  Seahorse::Client::Request.new(handlers, context)
49519
49666
  end
49520
49667