aws-sdk-ec2 1.302.0 → 1.305.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d25d5ebca25a69d2fd86016eda6d02253993cd816c1fcd7dbe23f7d1814a2b0
4
- data.tar.gz: 1553c457ca76445534318d595dffe0b35edcdb31cff3197781aee4174aba1aa7
3
+ metadata.gz: 3de3f7b49711429fd3f7d9cb5eead94dcd93c36601c04457bf560b170fa2fe77
4
+ data.tar.gz: 6f648fb43fcb6f193a5b084a27f9f3b6fa91ba874938ce81b5f692b39587e6c0
5
5
  SHA512:
6
- metadata.gz: a49c6366286e225400b3391fd258fbccb1f3de7955e5f712e327a9047a28afee749679088c6e426be3b6c47db4766c9cdc855290dd26a4621cb2d878e123de49
7
- data.tar.gz: 1f307001e8f84c7ddd308c21bae74c63ea6ac72f7abc0aea74c70d50f004a153126287880e7806f9b3d1006e602010055e2ebd21cc55abc3d6a1cba634319d2d
6
+ metadata.gz: 414ca5bb2c28896d55391aa21f95eab843a2f2b9ac2c8745b23195f85e4df9aba7d015f72267d6f809079b26cc4eb851c5e5bacb988a39b8e64fb02d600b3a46
7
+ data.tar.gz: 0ec4c960464e51a4a38e88f918b2a713eb6c45f730ef226aa6a1067fc98e330f004321814384a33f9bfd194f4bbc0c712de1caaf9d52ca9d2f9b495ec3f87ba8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.305.0 (2022-03-30)
5
+ ------------------
6
+
7
+ * Feature - This release simplifies the auto-recovery configuration process enabling customers to set the recovery behavior to disabled or default
8
+
9
+ 1.304.0 (2022-03-25)
10
+ ------------------
11
+
12
+ * Feature - This is release adds support for Amazon VPC Reachability Analyzer to analyze path through a Transit Gateway.
13
+
14
+ 1.303.0 (2022-03-15)
15
+ ------------------
16
+
17
+ * Feature - Adds the Cascade parameter to the DeleteIpam API. Customers can use this parameter to automatically delete their IPAM, including non-default scopes, pools, cidrs, and allocations. There mustn't be any pools provisioned in the default public scope to use this parameter.
18
+
4
19
  1.302.0 (2022-03-04)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.302.0
1
+ 1.305.0
@@ -7357,6 +7357,9 @@ module Aws::EC2
7357
7357
  # enable_resource_name_dns_a_record: false,
7358
7358
  # enable_resource_name_dns_aaaa_record: false,
7359
7359
  # },
7360
+ # maintenance_options: {
7361
+ # auto_recovery: "default", # accepts default, disabled
7362
+ # },
7360
7363
  # },
7361
7364
  # tag_specifications: [
7362
7365
  # {
@@ -7709,6 +7712,9 @@ module Aws::EC2
7709
7712
  # enable_resource_name_dns_a_record: false,
7710
7713
  # enable_resource_name_dns_aaaa_record: false,
7711
7714
  # },
7715
+ # maintenance_options: {
7716
+ # auto_recovery: "default", # accepts default, disabled
7717
+ # },
7712
7718
  # },
7713
7719
  # })
7714
7720
  #
@@ -7854,6 +7860,7 @@ module Aws::EC2
7854
7860
  # resp.launch_template_version.launch_template_data.private_dns_name_options.hostname_type #=> String, one of "ip-name", "resource-name"
7855
7861
  # resp.launch_template_version.launch_template_data.private_dns_name_options.enable_resource_name_dns_a_record #=> Boolean
7856
7862
  # resp.launch_template_version.launch_template_data.private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
7863
+ # resp.launch_template_version.launch_template_data.maintenance_options.auto_recovery #=> String, one of "default", "disabled"
7857
7864
  # resp.warning.errors #=> Array
7858
7865
  # resp.warning.errors[0].code #=> String
7859
7866
  # resp.warning.errors[0].message #=> String
@@ -13721,6 +13728,30 @@ module Aws::EC2
13721
13728
  # @option params [required, String] :ipam_id
13722
13729
  # The ID of the IPAM to delete.
13723
13730
  #
13731
+ # @option params [Boolean] :cascade
13732
+ # Enables you to quickly delete an IPAM, private scopes, pools in
13733
+ # private scopes, and any allocations in the pools in private scopes.
13734
+ # You cannot delete the IPAM with this option if there is a pool in your
13735
+ # public scope. If you use this option, IPAM does the following:
13736
+ #
13737
+ # * Deallocates any CIDRs allocated to VPC resources (such as VPCs) in
13738
+ # pools in private scopes.
13739
+ #
13740
+ # <note markdown="1"> No VPC resources are deleted as a result of enabling this option.
13741
+ # The CIDR associated with the resource will no longer be allocated
13742
+ # from an IPAM pool, but the CIDR itself will remain unchanged.
13743
+ #
13744
+ # </note>
13745
+ #
13746
+ # * Deprovisions all IPv4 CIDRs provisioned to IPAM pools in private
13747
+ # scopes.
13748
+ #
13749
+ # * Deletes all IPAM pools in private scopes.
13750
+ #
13751
+ # * Deletes all non-default private scopes in the IPAM.
13752
+ #
13753
+ # * Deletes the default public and private scopes and the IPAM.
13754
+ #
13724
13755
  # @return [Types::DeleteIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13725
13756
  #
13726
13757
  # * {Types::DeleteIpamResult#ipam #ipam} => Types::Ipam
@@ -13730,6 +13761,7 @@ module Aws::EC2
13730
13761
  # resp = client.delete_ipam({
13731
13762
  # dry_run: false,
13732
13763
  # ipam_id: "IpamId", # required
13764
+ # cascade: false,
13733
13765
  # })
13734
13766
  #
13735
13767
  # @example Response structure
@@ -18054,7 +18086,7 @@ module Aws::EC2
18054
18086
  # @example Request syntax with placeholder values
18055
18087
  #
18056
18088
  # resp = client.describe_coip_pools({
18057
- # pool_ids: ["CoipPoolId"],
18089
+ # pool_ids: ["Ipv4PoolCoipId"],
18058
18090
  # filters: [
18059
18091
  # {
18060
18092
  # name: "String",
@@ -22161,6 +22193,7 @@ module Aws::EC2
22161
22193
  # resp.reservations[0].instances[0].private_dns_name_options.enable_resource_name_dns_a_record #=> Boolean
22162
22194
  # resp.reservations[0].instances[0].private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
22163
22195
  # resp.reservations[0].instances[0].ipv_6_address #=> String
22196
+ # resp.reservations[0].instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
22164
22197
  # resp.reservations[0].owner_id #=> String
22165
22198
  # resp.reservations[0].requester_id #=> String
22166
22199
  # resp.reservations[0].reservation_id #=> String
@@ -23052,6 +23085,7 @@ module Aws::EC2
23052
23085
  # resp.launch_template_versions[0].launch_template_data.private_dns_name_options.hostname_type #=> String, one of "ip-name", "resource-name"
23053
23086
  # resp.launch_template_versions[0].launch_template_data.private_dns_name_options.enable_resource_name_dns_a_record #=> Boolean
23054
23087
  # resp.launch_template_versions[0].launch_template_data.private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
23088
+ # resp.launch_template_versions[0].launch_template_data.maintenance_options.auto_recovery #=> String, one of "default", "disabled"
23055
23089
  # resp.next_token #=> String
23056
23090
  #
23057
23091
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLaunchTemplateVersions AWS API Documentation
@@ -24340,7 +24374,7 @@ module Aws::EC2
24340
24374
  # The time when the network insights analyses ended.
24341
24375
  #
24342
24376
  # @option params [Array<Types::Filter>] :filters
24343
- # The filters. The following are possible values:
24377
+ # The filters. The following are the possible values:
24344
24378
  #
24345
24379
  # * PathFound - A Boolean value that indicates whether a feasible path
24346
24380
  # is found.
@@ -24466,6 +24500,21 @@ module Aws::EC2
24466
24500
  # resp.network_insights_analyses[0].forward_path_components[0].vpc.id #=> String
24467
24501
  # resp.network_insights_analyses[0].forward_path_components[0].vpc.arn #=> String
24468
24502
  # resp.network_insights_analyses[0].forward_path_components[0].vpc.name #=> String
24503
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details #=> Array
24504
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].additional_detail_type #=> String
24505
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.id #=> String
24506
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.arn #=> String
24507
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.name #=> String
24508
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.id #=> String
24509
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.arn #=> String
24510
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.name #=> String
24511
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
24512
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.state #=> String
24513
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.route_origin #=> String
24514
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
24515
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
24516
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.resource_id #=> String
24517
+ # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.resource_type #=> String
24469
24518
  # resp.network_insights_analyses[0].return_path_components #=> Array
24470
24519
  # resp.network_insights_analyses[0].return_path_components[0].sequence_number #=> Integer
24471
24520
  # resp.network_insights_analyses[0].return_path_components[0].acl_rule.cidr #=> String
@@ -24532,6 +24581,21 @@ module Aws::EC2
24532
24581
  # resp.network_insights_analyses[0].return_path_components[0].vpc.id #=> String
24533
24582
  # resp.network_insights_analyses[0].return_path_components[0].vpc.arn #=> String
24534
24583
  # resp.network_insights_analyses[0].return_path_components[0].vpc.name #=> String
24584
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details #=> Array
24585
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].additional_detail_type #=> String
24586
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.id #=> String
24587
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.arn #=> String
24588
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.name #=> String
24589
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway.id #=> String
24590
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway.arn #=> String
24591
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway.name #=> String
24592
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
24593
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.state #=> String
24594
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.route_origin #=> String
24595
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
24596
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
24597
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.resource_id #=> String
24598
+ # resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.resource_type #=> String
24535
24599
  # resp.network_insights_analyses[0].explanations #=> Array
24536
24600
  # resp.network_insights_analyses[0].explanations[0].acl.id #=> String
24537
24601
  # resp.network_insights_analyses[0].explanations[0].acl.arn #=> String
@@ -24663,6 +24727,22 @@ module Aws::EC2
24663
24727
  # resp.network_insights_analyses[0].explanations[0].vpn_gateway.id #=> String
24664
24728
  # resp.network_insights_analyses[0].explanations[0].vpn_gateway.arn #=> String
24665
24729
  # resp.network_insights_analyses[0].explanations[0].vpn_gateway.name #=> String
24730
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway.id #=> String
24731
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway.arn #=> String
24732
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway.name #=> String
24733
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table.id #=> String
24734
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table.arn #=> String
24735
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table.name #=> String
24736
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
24737
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.state #=> String
24738
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.route_origin #=> String
24739
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
24740
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.attachment_id #=> String
24741
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.resource_id #=> String
24742
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.resource_type #=> String
24743
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.id #=> String
24744
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.arn #=> String
24745
+ # resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.name #=> String
24666
24746
  # resp.network_insights_analyses[0].alternate_path_hints #=> Array
24667
24747
  # resp.network_insights_analyses[0].alternate_path_hints[0].component_id #=> String
24668
24748
  # resp.network_insights_analyses[0].alternate_path_hints[0].component_arn #=> String
@@ -24686,7 +24766,7 @@ module Aws::EC2
24686
24766
  # The IDs of the paths.
24687
24767
  #
24688
24768
  # @option params [Array<Types::Filter>] :filters
24689
- # The filters. The following are possible values:
24769
+ # The filters. The following are the possible values:
24690
24770
  #
24691
24771
  # * Destination - The ID of the resource.
24692
24772
  #
@@ -34602,7 +34682,7 @@ module Aws::EC2
34602
34682
  # @example Request syntax with placeholder values
34603
34683
  #
34604
34684
  # resp = client.get_coip_pool_usage({
34605
- # pool_id: "CoipPoolId", # required
34685
+ # pool_id: "Ipv4PoolCoipId", # required
34606
34686
  # filters: [
34607
34687
  # {
34608
34688
  # name: "String",
@@ -35735,6 +35815,7 @@ module Aws::EC2
35735
35815
  # resp.launch_template_data.private_dns_name_options.hostname_type #=> String, one of "ip-name", "resource-name"
35736
35816
  # resp.launch_template_data.private_dns_name_options.enable_resource_name_dns_a_record #=> Boolean
35737
35817
  # resp.launch_template_data.private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
35818
+ # resp.launch_template_data.maintenance_options.auto_recovery #=> String, one of "default", "disabled"
35738
35819
  #
35739
35820
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetLaunchTemplateData AWS API Documentation
35740
35821
  #
@@ -35963,6 +36044,21 @@ module Aws::EC2
35963
36044
  # resp.analysis_findings[0].finding_components[0].vpc.id #=> String
35964
36045
  # resp.analysis_findings[0].finding_components[0].vpc.arn #=> String
35965
36046
  # resp.analysis_findings[0].finding_components[0].vpc.name #=> String
36047
+ # resp.analysis_findings[0].finding_components[0].additional_details #=> Array
36048
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].additional_detail_type #=> String
36049
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].component.id #=> String
36050
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].component.arn #=> String
36051
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].component.name #=> String
36052
+ # resp.analysis_findings[0].finding_components[0].transit_gateway.id #=> String
36053
+ # resp.analysis_findings[0].finding_components[0].transit_gateway.arn #=> String
36054
+ # resp.analysis_findings[0].finding_components[0].transit_gateway.name #=> String
36055
+ # resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.destination_cidr #=> String
36056
+ # resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.state #=> String
36057
+ # resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.route_origin #=> String
36058
+ # resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
36059
+ # resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.attachment_id #=> String
36060
+ # resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.resource_id #=> String
36061
+ # resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.resource_type #=> String
35966
36062
  # resp.next_token #=> String
35967
36063
  #
35968
36064
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetNetworkInsightsAccessScopeAnalysisFindings AWS API Documentation
@@ -39552,6 +39648,56 @@ module Aws::EC2
39552
39648
  req.send_request(options)
39553
39649
  end
39554
39650
 
39651
+ # Modifies the recovery behavior of your instance to disable simplified
39652
+ # automatic recovery or set the recovery behavior to default. The
39653
+ # default configuration will not enable simplified automatic recovery
39654
+ # for an unsupported instance type. For more information, see
39655
+ # [Simplified automatic recovery][1].
39656
+ #
39657
+ #
39658
+ #
39659
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-recover.html#instance-configuration-recovery
39660
+ #
39661
+ # @option params [required, String] :instance_id
39662
+ # The ID of the instance.
39663
+ #
39664
+ # @option params [String] :auto_recovery
39665
+ # Disables the automatic recovery behavior of your instance or sets it
39666
+ # to default.
39667
+ #
39668
+ # @option params [Boolean] :dry_run
39669
+ # Checks whether you have the required permissions for the action,
39670
+ # without actually making the request, and provides an error response.
39671
+ # If you have the required permissions, the error response is
39672
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
39673
+ #
39674
+ # @return [Types::ModifyInstanceMaintenanceOptionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
39675
+ #
39676
+ # * {Types::ModifyInstanceMaintenanceOptionsResult#instance_id #instance_id} => String
39677
+ # * {Types::ModifyInstanceMaintenanceOptionsResult#auto_recovery #auto_recovery} => String
39678
+ #
39679
+ # @example Request syntax with placeholder values
39680
+ #
39681
+ # resp = client.modify_instance_maintenance_options({
39682
+ # instance_id: "InstanceId", # required
39683
+ # auto_recovery: "disabled", # accepts disabled, default
39684
+ # dry_run: false,
39685
+ # })
39686
+ #
39687
+ # @example Response structure
39688
+ #
39689
+ # resp.instance_id #=> String
39690
+ # resp.auto_recovery #=> String, one of "disabled", "default"
39691
+ #
39692
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceMaintenanceOptions AWS API Documentation
39693
+ #
39694
+ # @overload modify_instance_maintenance_options(params = {})
39695
+ # @param [Hash] params ({})
39696
+ def modify_instance_maintenance_options(params = {}, options = {})
39697
+ req = build_request(:modify_instance_maintenance_options, params)
39698
+ req.send_request(options)
39699
+ end
39700
+
39555
39701
  # Modify the instance metadata parameters on a running or stopped
39556
39702
  # instance. When you modify the parameters on a stopped instance, they
39557
39703
  # are applied when the instance is started. When you modify the
@@ -42888,6 +43034,12 @@ module Aws::EC2
42888
43034
 
42889
43035
  # Move an BYOIP IPv4 CIDR to IPAM from a public IPv4 pool.
42890
43036
  #
43037
+ # If you already have an IPv4 BYOIP CIDR with Amazon Web Services, you
43038
+ # can move the CIDR to IPAM from a public IPv4 pool. You cannot move an
43039
+ # IPv6 CIDR to IPAM. If you are bringing a new IP address to Amazon Web
43040
+ # Services for the first time, complete the steps in [Tutorial: BYOIP
43041
+ # address CIDRs to IPAM](/vpc/latest/ipam/tutorials-byoip-ipam.html).
43042
+ #
42891
43043
  # @option params [Boolean] :dry_run
42892
43044
  # A check for whether you have the required permissions for the action
42893
43045
  # without actually making the request and provides an error response. If
@@ -43033,7 +43185,7 @@ module Aws::EC2
43033
43185
  req.send_request(options)
43034
43186
  end
43035
43187
 
43036
- # Provision a CIDR to an IPAM pool. You can use thsi action to provision
43188
+ # Provision a CIDR to an IPAM pool. You can use this action to provision
43037
43189
  # new CIDRs to a top-level pool or to transfer a CIDR from a top-level
43038
43190
  # pool to a pool within it.
43039
43191
  #
@@ -44258,7 +44410,7 @@ module Aws::EC2
44258
44410
  # @option params [required, String] :cidr
44259
44411
  # The CIDR of the allocation you want to release.
44260
44412
  #
44261
- # @option params [String] :ipam_pool_allocation_id
44413
+ # @option params [required, String] :ipam_pool_allocation_id
44262
44414
  # The ID of the allocation.
44263
44415
  #
44264
44416
  # @return [Types::ReleaseIpamPoolAllocationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -44271,7 +44423,7 @@ module Aws::EC2
44271
44423
  # dry_run: false,
44272
44424
  # ipam_pool_id: "IpamPoolId", # required
44273
44425
  # cidr: "String", # required
44274
- # ipam_pool_allocation_id: "IpamPoolAllocationId",
44426
+ # ipam_pool_allocation_id: "IpamPoolAllocationId", # required
44275
44427
  # })
44276
44428
  #
44277
44429
  # @example Response structure
@@ -45881,8 +46033,7 @@ module Aws::EC2
45881
46033
  # The attribute to reset.
45882
46034
  #
45883
46035
  # You can only reset the following attributes: `kernel` \| `ramdisk` \|
45884
- # `sourceDestCheck`. To change an instance attribute, use
45885
- # ModifyInstanceAttribute.
46036
+ # `sourceDestCheck`.
45886
46037
  #
45887
46038
  # @option params [Boolean] :dry_run
45888
46039
  # Checks whether you have the required permissions for the action,
@@ -47079,6 +47230,9 @@ module Aws::EC2
47079
47230
  # The options for the instance hostname. The default values are
47080
47231
  # inherited from the subnet.
47081
47232
  #
47233
+ # @option params [Types::InstanceMaintenanceOptionsRequest] :maintenance_options
47234
+ # The maintenance and recovery options for the instance.
47235
+ #
47082
47236
  # @return [Types::Reservation] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
47083
47237
  #
47084
47238
  # * {Types::Reservation#groups #groups} => Array&lt;Types::GroupIdentifier&gt;
@@ -47304,6 +47458,9 @@ module Aws::EC2
47304
47458
  # enable_resource_name_dns_a_record: false,
47305
47459
  # enable_resource_name_dns_aaaa_record: false,
47306
47460
  # },
47461
+ # maintenance_options: {
47462
+ # auto_recovery: "disabled", # accepts disabled, default
47463
+ # },
47307
47464
  # })
47308
47465
  #
47309
47466
  # @example Response structure
@@ -47446,6 +47603,7 @@ module Aws::EC2
47446
47603
  # resp.instances[0].private_dns_name_options.enable_resource_name_dns_a_record #=> Boolean
47447
47604
  # resp.instances[0].private_dns_name_options.enable_resource_name_dns_aaaa_record #=> Boolean
47448
47605
  # resp.instances[0].ipv_6_address #=> String
47606
+ # resp.instances[0].maintenance_options.auto_recovery #=> String, one of "disabled", "default"
47449
47607
  # resp.owner_id #=> String
47450
47608
  # resp.requester_id #=> String
47451
47609
  # resp.reservation_id #=> String
@@ -48288,6 +48446,21 @@ module Aws::EC2
48288
48446
  # resp.network_insights_analysis.forward_path_components[0].vpc.id #=> String
48289
48447
  # resp.network_insights_analysis.forward_path_components[0].vpc.arn #=> String
48290
48448
  # resp.network_insights_analysis.forward_path_components[0].vpc.name #=> String
48449
+ # resp.network_insights_analysis.forward_path_components[0].additional_details #=> Array
48450
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].additional_detail_type #=> String
48451
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.id #=> String
48452
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.arn #=> String
48453
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.name #=> String
48454
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway.id #=> String
48455
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway.arn #=> String
48456
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway.name #=> String
48457
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
48458
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.state #=> String
48459
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.route_origin #=> String
48460
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
48461
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
48462
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.resource_id #=> String
48463
+ # resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.resource_type #=> String
48291
48464
  # resp.network_insights_analysis.return_path_components #=> Array
48292
48465
  # resp.network_insights_analysis.return_path_components[0].sequence_number #=> Integer
48293
48466
  # resp.network_insights_analysis.return_path_components[0].acl_rule.cidr #=> String
@@ -48354,6 +48527,21 @@ module Aws::EC2
48354
48527
  # resp.network_insights_analysis.return_path_components[0].vpc.id #=> String
48355
48528
  # resp.network_insights_analysis.return_path_components[0].vpc.arn #=> String
48356
48529
  # resp.network_insights_analysis.return_path_components[0].vpc.name #=> String
48530
+ # resp.network_insights_analysis.return_path_components[0].additional_details #=> Array
48531
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].additional_detail_type #=> String
48532
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].component.id #=> String
48533
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].component.arn #=> String
48534
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].component.name #=> String
48535
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway.id #=> String
48536
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway.arn #=> String
48537
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway.name #=> String
48538
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
48539
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.state #=> String
48540
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.route_origin #=> String
48541
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
48542
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
48543
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.resource_id #=> String
48544
+ # resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.resource_type #=> String
48357
48545
  # resp.network_insights_analysis.explanations #=> Array
48358
48546
  # resp.network_insights_analysis.explanations[0].acl.id #=> String
48359
48547
  # resp.network_insights_analysis.explanations[0].acl.arn #=> String
@@ -48485,6 +48673,22 @@ module Aws::EC2
48485
48673
  # resp.network_insights_analysis.explanations[0].vpn_gateway.id #=> String
48486
48674
  # resp.network_insights_analysis.explanations[0].vpn_gateway.arn #=> String
48487
48675
  # resp.network_insights_analysis.explanations[0].vpn_gateway.name #=> String
48676
+ # resp.network_insights_analysis.explanations[0].transit_gateway.id #=> String
48677
+ # resp.network_insights_analysis.explanations[0].transit_gateway.arn #=> String
48678
+ # resp.network_insights_analysis.explanations[0].transit_gateway.name #=> String
48679
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table.id #=> String
48680
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table.arn #=> String
48681
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table.name #=> String
48682
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
48683
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.state #=> String
48684
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.route_origin #=> String
48685
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
48686
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.attachment_id #=> String
48687
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.resource_id #=> String
48688
+ # resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.resource_type #=> String
48689
+ # resp.network_insights_analysis.explanations[0].transit_gateway_attachment.id #=> String
48690
+ # resp.network_insights_analysis.explanations[0].transit_gateway_attachment.arn #=> String
48691
+ # resp.network_insights_analysis.explanations[0].transit_gateway_attachment.name #=> String
48488
48692
  # resp.network_insights_analysis.alternate_path_hints #=> Array
48489
48693
  # resp.network_insights_analysis.alternate_path_hints[0].component_id #=> String
48490
48694
  # resp.network_insights_analysis.alternate_path_hints[0].component_arn #=> String
@@ -49312,7 +49516,7 @@ module Aws::EC2
49312
49516
  params: params,
49313
49517
  config: config)
49314
49518
  context[:gem_name] = 'aws-sdk-ec2'
49315
- context[:gem_version] = '1.302.0'
49519
+ context[:gem_version] = '1.305.0'
49316
49520
  Seahorse::Client::Request.new(handlers, context)
49317
49521
  end
49318
49522