aws-sdk-ec2 1.370.0 → 1.372.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1114,6 +1114,12 @@ module Aws::EC2
1114
1114
  # For more information, see [Allocate CIDRs][1] in the *Amazon VPC IPAM
1115
1115
  # User Guide*.
1116
1116
  #
1117
+ # <note markdown="1"> This action creates an allocation with strong consistency. The
1118
+ # returned CIDR will not overlap with any other allocations from the
1119
+ # same pool.
1120
+ #
1121
+ # </note>
1122
+ #
1117
1123
  #
1118
1124
  #
1119
1125
  # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/allocate-cidrs-ipam.html
@@ -9799,25 +9805,25 @@ module Aws::EC2
9799
9805
  #
9800
9806
  # Reachability Analyzer enables you to analyze and debug network
9801
9807
  # reachability between two resources in your virtual private cloud
9802
- # (VPC). For more information, see [What is Reachability Analyzer][1].
9808
+ # (VPC). For more information, see the [Reachability Analyzer Guide][1].
9803
9809
  #
9804
9810
  #
9805
9811
  #
9806
9812
  # [1]: https://docs.aws.amazon.com/vpc/latest/reachability/
9807
9813
  #
9808
9814
  # @option params [String] :source_ip
9809
- # The IP address of the Amazon Web Services resource that is the source
9810
- # of the path.
9815
+ # The IP address of the source.
9811
9816
  #
9812
9817
  # @option params [String] :destination_ip
9813
- # The IP address of the Amazon Web Services resource that is the
9814
- # destination of the path.
9818
+ # The IP address of the destination.
9815
9819
  #
9816
9820
  # @option params [required, String] :source
9817
- # The Amazon Web Services resource that is the source of the path.
9821
+ # The ID or ARN of the source. If the resource is in another account,
9822
+ # you must specify an ARN.
9818
9823
  #
9819
- # @option params [required, String] :destination
9820
- # The Amazon Web Services resource that is the destination of the path.
9824
+ # @option params [String] :destination
9825
+ # The ID or ARN of the destination. If the resource is in another
9826
+ # account, you must specify an ARN.
9821
9827
  #
9822
9828
  # @option params [required, String] :protocol
9823
9829
  # The protocol.
@@ -9846,6 +9852,16 @@ module Aws::EC2
9846
9852
  #
9847
9853
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
9848
9854
  #
9855
+ # @option params [Types::PathRequestFilter] :filter_at_source
9856
+ # Scopes the analysis to network paths that match specific filters at
9857
+ # the source. If you specify this parameter, you can't specify the
9858
+ # parameters for the source IP address or the destination port.
9859
+ #
9860
+ # @option params [Types::PathRequestFilter] :filter_at_destination
9861
+ # Scopes the analysis to network paths that match specific filters at
9862
+ # the destination. If you specify this parameter, you can't specify the
9863
+ # parameter for the destination IP address.
9864
+ #
9849
9865
  # @return [Types::CreateNetworkInsightsPathResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9850
9866
  #
9851
9867
  # * {Types::CreateNetworkInsightsPathResult#network_insights_path #network_insights_path} => Types::NetworkInsightsPath
@@ -9856,7 +9872,7 @@ module Aws::EC2
9856
9872
  # source_ip: "IpAddress",
9857
9873
  # destination_ip: "IpAddress",
9858
9874
  # source: "NetworkInsightsResourceId", # required
9859
- # destination: "NetworkInsightsResourceId", # required
9875
+ # destination: "NetworkInsightsResourceId",
9860
9876
  # protocol: "tcp", # required, accepts tcp, udp
9861
9877
  # destination_port: 1,
9862
9878
  # tag_specifications: [
@@ -9872,6 +9888,30 @@ module Aws::EC2
9872
9888
  # ],
9873
9889
  # dry_run: false,
9874
9890
  # client_token: "String", # required
9891
+ # filter_at_source: {
9892
+ # source_address: "IpAddress",
9893
+ # source_port_range: {
9894
+ # from_port: 1,
9895
+ # to_port: 1,
9896
+ # },
9897
+ # destination_address: "IpAddress",
9898
+ # destination_port_range: {
9899
+ # from_port: 1,
9900
+ # to_port: 1,
9901
+ # },
9902
+ # },
9903
+ # filter_at_destination: {
9904
+ # source_address: "IpAddress",
9905
+ # source_port_range: {
9906
+ # from_port: 1,
9907
+ # to_port: 1,
9908
+ # },
9909
+ # destination_address: "IpAddress",
9910
+ # destination_port_range: {
9911
+ # from_port: 1,
9912
+ # to_port: 1,
9913
+ # },
9914
+ # },
9875
9915
  # })
9876
9916
  #
9877
9917
  # @example Response structure
@@ -9890,6 +9930,18 @@ module Aws::EC2
9890
9930
  # resp.network_insights_path.tags #=> Array
9891
9931
  # resp.network_insights_path.tags[0].key #=> String
9892
9932
  # resp.network_insights_path.tags[0].value #=> String
9933
+ # resp.network_insights_path.filter_at_source.source_address #=> String
9934
+ # resp.network_insights_path.filter_at_source.source_port_range.from_port #=> Integer
9935
+ # resp.network_insights_path.filter_at_source.source_port_range.to_port #=> Integer
9936
+ # resp.network_insights_path.filter_at_source.destination_address #=> String
9937
+ # resp.network_insights_path.filter_at_source.destination_port_range.from_port #=> Integer
9938
+ # resp.network_insights_path.filter_at_source.destination_port_range.to_port #=> Integer
9939
+ # resp.network_insights_path.filter_at_destination.source_address #=> String
9940
+ # resp.network_insights_path.filter_at_destination.source_port_range.from_port #=> Integer
9941
+ # resp.network_insights_path.filter_at_destination.source_port_range.to_port #=> Integer
9942
+ # resp.network_insights_path.filter_at_destination.destination_address #=> String
9943
+ # resp.network_insights_path.filter_at_destination.destination_port_range.from_port #=> Integer
9944
+ # resp.network_insights_path.filter_at_destination.destination_port_range.to_port #=> Integer
9893
9945
  #
9894
9946
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInsightsPath AWS API Documentation
9895
9947
  #
@@ -11013,7 +11065,7 @@ module Aws::EC2
11013
11065
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
11014
11066
  #
11015
11067
  # @option params [required, String] :description
11016
- # A description for the security group. This is informational only.
11068
+ # A description for the security group.
11017
11069
  #
11018
11070
  # Constraints: Up to 255 characters in length
11019
11071
  #
@@ -11128,8 +11180,9 @@ module Aws::EC2
11128
11180
  # may remount and use your volume while the snapshot status is
11129
11181
  # `pending`.
11130
11182
  #
11131
- # To create a snapshot for Amazon EBS volumes that serve as root
11132
- # devices, you should stop the instance before taking the snapshot.
11183
+ # When you create a snapshot for an EBS volume that serves as a root
11184
+ # device, we recommend that you stop the instance before taking the
11185
+ # snapshot.
11133
11186
  #
11134
11187
  # Snapshots that are taken from encrypted volumes are automatically
11135
11188
  # encrypted. Volumes that are created from encrypted snapshots are also
@@ -13862,7 +13915,7 @@ module Aws::EC2
13862
13915
  # @example Request syntax with placeholder values
13863
13916
  #
13864
13917
  # resp = client.create_volume({
13865
- # availability_zone: "String", # required
13918
+ # availability_zone: "AvailabilityZoneName", # required
13866
13919
  # encrypted: false,
13867
13920
  # iops: 1,
13868
13921
  # kms_key_id: "KmsKeyId",
@@ -14730,6 +14783,7 @@ module Aws::EC2
14730
14783
  # log_output_format: "String",
14731
14784
  # },
14732
14785
  # },
14786
+ # enable_tunnel_lifecycle_control: false,
14733
14787
  # },
14734
14788
  # ],
14735
14789
  # local_ipv_4_network_cidr: "String",
@@ -14804,6 +14858,7 @@ module Aws::EC2
14804
14858
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_enabled #=> Boolean
14805
14859
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
14806
14860
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
14861
+ # resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
14807
14862
  # resp.vpn_connection.routes #=> Array
14808
14863
  # resp.vpn_connection.routes[0].destination_cidr_block #=> String
14809
14864
  # resp.vpn_connection.routes[0].source #=> String, one of "Static"
@@ -27338,6 +27393,9 @@ module Aws::EC2
27338
27393
  # resp.network_insights_analyses[0].forward_path_components[0].route_table_route.transit_gateway_id #=> String
27339
27394
  # resp.network_insights_analyses[0].forward_path_components[0].route_table_route.vpc_peering_connection_id #=> String
27340
27395
  # resp.network_insights_analyses[0].forward_path_components[0].route_table_route.state #=> String
27396
+ # resp.network_insights_analyses[0].forward_path_components[0].route_table_route.carrier_gateway_id #=> String
27397
+ # resp.network_insights_analyses[0].forward_path_components[0].route_table_route.core_network_arn #=> String
27398
+ # resp.network_insights_analyses[0].forward_path_components[0].route_table_route.local_gateway_id #=> String
27341
27399
  # resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.cidr #=> String
27342
27400
  # resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.direction #=> String
27343
27401
  # resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.security_group_id #=> String
@@ -27359,6 +27417,27 @@ module Aws::EC2
27359
27417
  # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.id #=> String
27360
27418
  # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.arn #=> String
27361
27419
  # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.name #=> String
27420
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].vpc_endpoint_service.id #=> String
27421
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].vpc_endpoint_service.arn #=> String
27422
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].vpc_endpoint_service.name #=> String
27423
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_options #=> Array
27424
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_options[0].keyword #=> String
27425
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_options[0].settings #=> Array
27426
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_options[0].settings[0] #=> String
27427
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_type_pairs #=> Array
27428
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_arn #=> String
27429
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_type #=> String
27430
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_rule_options_pairs #=> Array
27431
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_group_arn #=> String
27432
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options #=> Array
27433
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].keyword #=> String
27434
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings #=> Array
27435
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings[0] #=> String
27436
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].service_name #=> String
27437
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].load_balancers #=> Array
27438
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].load_balancers[0].id #=> String
27439
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].load_balancers[0].arn #=> String
27440
+ # resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].load_balancers[0].name #=> String
27362
27441
  # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.id #=> String
27363
27442
  # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.arn #=> String
27364
27443
  # resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.name #=> String
@@ -27462,6 +27541,9 @@ module Aws::EC2
27462
27541
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
27463
27542
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
27464
27543
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.state #=> String
27544
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.carrier_gateway_id #=> String
27545
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.core_network_arn #=> String
27546
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.local_gateway_id #=> String
27465
27547
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table.id #=> String
27466
27548
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table.arn #=> String
27467
27549
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table.name #=> String
@@ -27519,9 +27601,68 @@ module Aws::EC2
27519
27601
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
27520
27602
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].component_account #=> String
27521
27603
  # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].component_region #=> String
27604
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.rule_group_arn #=> String
27605
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.sources #=> Array
27606
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.sources[0] #=> String
27607
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.destinations #=> Array
27608
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.destinations[0] #=> String
27609
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.source_ports #=> Array
27610
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].from #=> Integer
27611
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].to #=> Integer
27612
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.destination_ports #=> Array
27613
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
27614
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
27615
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.protocols #=> Array
27616
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.protocols[0] #=> Integer
27617
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.rule_action #=> String
27618
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateless_rule.priority #=> Integer
27619
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.rule_group_arn #=> String
27620
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.sources #=> Array
27621
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.sources[0] #=> String
27622
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.destinations #=> Array
27623
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.destinations[0] #=> String
27624
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.source_ports #=> Array
27625
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].from #=> Integer
27626
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].to #=> Integer
27627
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.destination_ports #=> Array
27628
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
27629
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
27630
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.protocol #=> String
27631
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.rule_action #=> String
27632
+ # resp.network_insights_analyses[0].forward_path_components[0].explanations[0].firewall_stateful_rule.direction #=> String
27522
27633
  # resp.network_insights_analyses[0].forward_path_components[0].elastic_load_balancer_listener.id #=> String
27523
27634
  # resp.network_insights_analyses[0].forward_path_components[0].elastic_load_balancer_listener.arn #=> String
27524
27635
  # resp.network_insights_analyses[0].forward_path_components[0].elastic_load_balancer_listener.name #=> String
27636
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.rule_group_arn #=> String
27637
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.sources #=> Array
27638
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.sources[0] #=> String
27639
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.destinations #=> Array
27640
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.destinations[0] #=> String
27641
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.source_ports #=> Array
27642
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.source_ports[0].from #=> Integer
27643
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.source_ports[0].to #=> Integer
27644
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.destination_ports #=> Array
27645
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
27646
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
27647
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.protocols #=> Array
27648
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.protocols[0] #=> Integer
27649
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.rule_action #=> String
27650
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateless_rule.priority #=> Integer
27651
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.rule_group_arn #=> String
27652
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.sources #=> Array
27653
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.sources[0] #=> String
27654
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.destinations #=> Array
27655
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.destinations[0] #=> String
27656
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.source_ports #=> Array
27657
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.source_ports[0].from #=> Integer
27658
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.source_ports[0].to #=> Integer
27659
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.destination_ports #=> Array
27660
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
27661
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
27662
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.protocol #=> String
27663
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.rule_action #=> String
27664
+ # resp.network_insights_analyses[0].forward_path_components[0].firewall_stateful_rule.direction #=> String
27665
+ # resp.network_insights_analyses[0].forward_path_components[0].service_name #=> String
27525
27666
  # resp.network_insights_analyses[0].return_path_components #=> Array
27526
27667
  # resp.network_insights_analyses[0].return_path_components[0].sequence_number #=> Integer
27527
27668
  # resp.network_insights_analyses[0].return_path_components[0].acl_rule.cidr #=> String
@@ -27573,6 +27714,9 @@ module Aws::EC2
27573
27714
  # resp.network_insights_analyses[0].return_path_components[0].route_table_route.transit_gateway_id #=> String
27574
27715
  # resp.network_insights_analyses[0].return_path_components[0].route_table_route.vpc_peering_connection_id #=> String
27575
27716
  # resp.network_insights_analyses[0].return_path_components[0].route_table_route.state #=> String
27717
+ # resp.network_insights_analyses[0].return_path_components[0].route_table_route.carrier_gateway_id #=> String
27718
+ # resp.network_insights_analyses[0].return_path_components[0].route_table_route.core_network_arn #=> String
27719
+ # resp.network_insights_analyses[0].return_path_components[0].route_table_route.local_gateway_id #=> String
27576
27720
  # resp.network_insights_analyses[0].return_path_components[0].security_group_rule.cidr #=> String
27577
27721
  # resp.network_insights_analyses[0].return_path_components[0].security_group_rule.direction #=> String
27578
27722
  # resp.network_insights_analyses[0].return_path_components[0].security_group_rule.security_group_id #=> String
@@ -27594,6 +27738,27 @@ module Aws::EC2
27594
27738
  # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.id #=> String
27595
27739
  # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.arn #=> String
27596
27740
  # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.name #=> String
27741
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].vpc_endpoint_service.id #=> String
27742
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].vpc_endpoint_service.arn #=> String
27743
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].vpc_endpoint_service.name #=> String
27744
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_options #=> Array
27745
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_options[0].keyword #=> String
27746
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_options[0].settings #=> Array
27747
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_options[0].settings[0] #=> String
27748
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_type_pairs #=> Array
27749
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_arn #=> String
27750
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_type #=> String
27751
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_rule_options_pairs #=> Array
27752
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_group_arn #=> String
27753
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options #=> Array
27754
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].keyword #=> String
27755
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings #=> Array
27756
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings[0] #=> String
27757
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].service_name #=> String
27758
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].load_balancers #=> Array
27759
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].load_balancers[0].id #=> String
27760
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].load_balancers[0].arn #=> String
27761
+ # resp.network_insights_analyses[0].return_path_components[0].additional_details[0].load_balancers[0].name #=> String
27597
27762
  # resp.network_insights_analyses[0].return_path_components[0].transit_gateway.id #=> String
27598
27763
  # resp.network_insights_analyses[0].return_path_components[0].transit_gateway.arn #=> String
27599
27764
  # resp.network_insights_analyses[0].return_path_components[0].transit_gateway.name #=> String
@@ -27697,6 +27862,9 @@ module Aws::EC2
27697
27862
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
27698
27863
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
27699
27864
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.state #=> String
27865
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.carrier_gateway_id #=> String
27866
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.core_network_arn #=> String
27867
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.local_gateway_id #=> String
27700
27868
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table.id #=> String
27701
27869
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table.arn #=> String
27702
27870
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table.name #=> String
@@ -27754,9 +27922,68 @@ module Aws::EC2
27754
27922
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
27755
27923
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].component_account #=> String
27756
27924
  # resp.network_insights_analyses[0].return_path_components[0].explanations[0].component_region #=> String
27925
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.rule_group_arn #=> String
27926
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.sources #=> Array
27927
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.sources[0] #=> String
27928
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.destinations #=> Array
27929
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.destinations[0] #=> String
27930
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.source_ports #=> Array
27931
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].from #=> Integer
27932
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].to #=> Integer
27933
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.destination_ports #=> Array
27934
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
27935
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
27936
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.protocols #=> Array
27937
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.protocols[0] #=> Integer
27938
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.rule_action #=> String
27939
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateless_rule.priority #=> Integer
27940
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.rule_group_arn #=> String
27941
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.sources #=> Array
27942
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.sources[0] #=> String
27943
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.destinations #=> Array
27944
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.destinations[0] #=> String
27945
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.source_ports #=> Array
27946
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].from #=> Integer
27947
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].to #=> Integer
27948
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.destination_ports #=> Array
27949
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
27950
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
27951
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.protocol #=> String
27952
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.rule_action #=> String
27953
+ # resp.network_insights_analyses[0].return_path_components[0].explanations[0].firewall_stateful_rule.direction #=> String
27757
27954
  # resp.network_insights_analyses[0].return_path_components[0].elastic_load_balancer_listener.id #=> String
27758
27955
  # resp.network_insights_analyses[0].return_path_components[0].elastic_load_balancer_listener.arn #=> String
27759
27956
  # resp.network_insights_analyses[0].return_path_components[0].elastic_load_balancer_listener.name #=> String
27957
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.rule_group_arn #=> String
27958
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.sources #=> Array
27959
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.sources[0] #=> String
27960
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.destinations #=> Array
27961
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.destinations[0] #=> String
27962
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.source_ports #=> Array
27963
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.source_ports[0].from #=> Integer
27964
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.source_ports[0].to #=> Integer
27965
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.destination_ports #=> Array
27966
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
27967
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
27968
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.protocols #=> Array
27969
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.protocols[0] #=> Integer
27970
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.rule_action #=> String
27971
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateless_rule.priority #=> Integer
27972
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.rule_group_arn #=> String
27973
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.sources #=> Array
27974
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.sources[0] #=> String
27975
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.destinations #=> Array
27976
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.destinations[0] #=> String
27977
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.source_ports #=> Array
27978
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.source_ports[0].from #=> Integer
27979
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.source_ports[0].to #=> Integer
27980
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.destination_ports #=> Array
27981
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
27982
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
27983
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.protocol #=> String
27984
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.rule_action #=> String
27985
+ # resp.network_insights_analyses[0].return_path_components[0].firewall_stateful_rule.direction #=> String
27986
+ # resp.network_insights_analyses[0].return_path_components[0].service_name #=> String
27760
27987
  # resp.network_insights_analyses[0].explanations #=> Array
27761
27988
  # resp.network_insights_analyses[0].explanations[0].acl.id #=> String
27762
27989
  # resp.network_insights_analyses[0].explanations[0].acl.arn #=> String
@@ -27850,6 +28077,9 @@ module Aws::EC2
27850
28077
  # resp.network_insights_analyses[0].explanations[0].route_table_route.transit_gateway_id #=> String
27851
28078
  # resp.network_insights_analyses[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
27852
28079
  # resp.network_insights_analyses[0].explanations[0].route_table_route.state #=> String
28080
+ # resp.network_insights_analyses[0].explanations[0].route_table_route.carrier_gateway_id #=> String
28081
+ # resp.network_insights_analyses[0].explanations[0].route_table_route.core_network_arn #=> String
28082
+ # resp.network_insights_analyses[0].explanations[0].route_table_route.local_gateway_id #=> String
27853
28083
  # resp.network_insights_analyses[0].explanations[0].route_table.id #=> String
27854
28084
  # resp.network_insights_analyses[0].explanations[0].route_table.arn #=> String
27855
28085
  # resp.network_insights_analyses[0].explanations[0].route_table.name #=> String
@@ -27907,6 +28137,35 @@ module Aws::EC2
27907
28137
  # resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.name #=> String
27908
28138
  # resp.network_insights_analyses[0].explanations[0].component_account #=> String
27909
28139
  # resp.network_insights_analyses[0].explanations[0].component_region #=> String
28140
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.rule_group_arn #=> String
28141
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.sources #=> Array
28142
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.sources[0] #=> String
28143
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.destinations #=> Array
28144
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.destinations[0] #=> String
28145
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.source_ports #=> Array
28146
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.source_ports[0].from #=> Integer
28147
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.source_ports[0].to #=> Integer
28148
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.destination_ports #=> Array
28149
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
28150
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
28151
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.protocols #=> Array
28152
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.protocols[0] #=> Integer
28153
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.rule_action #=> String
28154
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateless_rule.priority #=> Integer
28155
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.rule_group_arn #=> String
28156
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.sources #=> Array
28157
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.sources[0] #=> String
28158
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.destinations #=> Array
28159
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.destinations[0] #=> String
28160
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.source_ports #=> Array
28161
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.source_ports[0].from #=> Integer
28162
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.source_ports[0].to #=> Integer
28163
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.destination_ports #=> Array
28164
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
28165
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
28166
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.protocol #=> String
28167
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.rule_action #=> String
28168
+ # resp.network_insights_analyses[0].explanations[0].firewall_stateful_rule.direction #=> String
27910
28169
  # resp.network_insights_analyses[0].alternate_path_hints #=> Array
27911
28170
  # resp.network_insights_analyses[0].alternate_path_hints[0].component_id #=> String
27912
28171
  # resp.network_insights_analyses[0].alternate_path_hints[0].component_arn #=> String
@@ -27936,7 +28195,29 @@ module Aws::EC2
27936
28195
  #
27937
28196
  # * destination - The ID of the resource.
27938
28197
  #
27939
- # * destination-port - The destination port.
28198
+ # * filter-at-source.source-address - The source IPv4 address at the
28199
+ # source.
28200
+ #
28201
+ # * filter-at-source.source-port-range - The source port range at the
28202
+ # source.
28203
+ #
28204
+ # * filter-at-source.destination-address - The destination IPv4 address
28205
+ # at the source.
28206
+ #
28207
+ # * filter-at-source.destination-port-range - The destination port range
28208
+ # at the source.
28209
+ #
28210
+ # * filter-at-destination.source-address - The source IPv4 address at
28211
+ # the destination.
28212
+ #
28213
+ # * filter-at-destination.source-port-range - The source port range at
28214
+ # the destination.
28215
+ #
28216
+ # * filter-at-destination.destination-address - The destination IPv4
28217
+ # address at the destination.
28218
+ #
28219
+ # * filter-at-destination.destination-port-range - The destination port
28220
+ # range at the destination.
27940
28221
  #
27941
28222
  # * protocol - The protocol.
27942
28223
  #
@@ -27995,6 +28276,18 @@ module Aws::EC2
27995
28276
  # resp.network_insights_paths[0].tags #=> Array
27996
28277
  # resp.network_insights_paths[0].tags[0].key #=> String
27997
28278
  # resp.network_insights_paths[0].tags[0].value #=> String
28279
+ # resp.network_insights_paths[0].filter_at_source.source_address #=> String
28280
+ # resp.network_insights_paths[0].filter_at_source.source_port_range.from_port #=> Integer
28281
+ # resp.network_insights_paths[0].filter_at_source.source_port_range.to_port #=> Integer
28282
+ # resp.network_insights_paths[0].filter_at_source.destination_address #=> String
28283
+ # resp.network_insights_paths[0].filter_at_source.destination_port_range.from_port #=> Integer
28284
+ # resp.network_insights_paths[0].filter_at_source.destination_port_range.to_port #=> Integer
28285
+ # resp.network_insights_paths[0].filter_at_destination.source_address #=> String
28286
+ # resp.network_insights_paths[0].filter_at_destination.source_port_range.from_port #=> Integer
28287
+ # resp.network_insights_paths[0].filter_at_destination.source_port_range.to_port #=> Integer
28288
+ # resp.network_insights_paths[0].filter_at_destination.destination_address #=> String
28289
+ # resp.network_insights_paths[0].filter_at_destination.destination_port_range.from_port #=> Integer
28290
+ # resp.network_insights_paths[0].filter_at_destination.destination_port_range.to_port #=> Integer
27998
28291
  # resp.next_token #=> String
27999
28292
  #
28000
28293
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInsightsPaths AWS API Documentation
@@ -36103,6 +36396,7 @@ module Aws::EC2
36103
36396
  # resp.vpn_connections[0].options.tunnel_options[0].log_options.cloud_watch_log_options.log_enabled #=> Boolean
36104
36397
  # resp.vpn_connections[0].options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
36105
36398
  # resp.vpn_connections[0].options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
36399
+ # resp.vpn_connections[0].options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
36106
36400
  # resp.vpn_connections[0].routes #=> Array
36107
36401
  # resp.vpn_connections[0].routes[0].destination_cidr_block #=> String
36108
36402
  # resp.vpn_connections[0].routes[0].source #=> String, one of "Static"
@@ -40108,6 +40402,18 @@ module Aws::EC2
40108
40402
 
40109
40403
  # Get a list of all the CIDR allocations in an IPAM pool.
40110
40404
  #
40405
+ # <note markdown="1"> If you use this action after [AllocateIpamPoolCidr][1] or
40406
+ # [ReleaseIpamPoolAllocation][2], note that all EC2 API actions follow
40407
+ # an [eventual consistency][3] model.
40408
+ #
40409
+ # </note>
40410
+ #
40411
+ #
40412
+ #
40413
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_AllocateIpamPoolCidr.html
40414
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ReleaseIpamPoolAllocation.html
40415
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/query-api-troubleshooting.html#eventual-consistency
40416
+ #
40111
40417
  # @option params [Boolean] :dry_run
40112
40418
  # A check for whether you have the required permissions for the action
40113
40419
  # without actually making the request and provides an error response. If
@@ -40798,6 +41104,9 @@ module Aws::EC2
40798
41104
  # resp.analysis_findings[0].finding_components[0].route_table_route.transit_gateway_id #=> String
40799
41105
  # resp.analysis_findings[0].finding_components[0].route_table_route.vpc_peering_connection_id #=> String
40800
41106
  # resp.analysis_findings[0].finding_components[0].route_table_route.state #=> String
41107
+ # resp.analysis_findings[0].finding_components[0].route_table_route.carrier_gateway_id #=> String
41108
+ # resp.analysis_findings[0].finding_components[0].route_table_route.core_network_arn #=> String
41109
+ # resp.analysis_findings[0].finding_components[0].route_table_route.local_gateway_id #=> String
40801
41110
  # resp.analysis_findings[0].finding_components[0].security_group_rule.cidr #=> String
40802
41111
  # resp.analysis_findings[0].finding_components[0].security_group_rule.direction #=> String
40803
41112
  # resp.analysis_findings[0].finding_components[0].security_group_rule.security_group_id #=> String
@@ -40819,6 +41128,27 @@ module Aws::EC2
40819
41128
  # resp.analysis_findings[0].finding_components[0].additional_details[0].component.id #=> String
40820
41129
  # resp.analysis_findings[0].finding_components[0].additional_details[0].component.arn #=> String
40821
41130
  # resp.analysis_findings[0].finding_components[0].additional_details[0].component.name #=> String
41131
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].vpc_endpoint_service.id #=> String
41132
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].vpc_endpoint_service.arn #=> String
41133
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].vpc_endpoint_service.name #=> String
41134
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_options #=> Array
41135
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_options[0].keyword #=> String
41136
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_options[0].settings #=> Array
41137
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_options[0].settings[0] #=> String
41138
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_type_pairs #=> Array
41139
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_arn #=> String
41140
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_type #=> String
41141
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_rule_options_pairs #=> Array
41142
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_group_arn #=> String
41143
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options #=> Array
41144
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].keyword #=> String
41145
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings #=> Array
41146
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings[0] #=> String
41147
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].service_name #=> String
41148
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].load_balancers #=> Array
41149
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].load_balancers[0].id #=> String
41150
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].load_balancers[0].arn #=> String
41151
+ # resp.analysis_findings[0].finding_components[0].additional_details[0].load_balancers[0].name #=> String
40822
41152
  # resp.analysis_findings[0].finding_components[0].transit_gateway.id #=> String
40823
41153
  # resp.analysis_findings[0].finding_components[0].transit_gateway.arn #=> String
40824
41154
  # resp.analysis_findings[0].finding_components[0].transit_gateway.name #=> String
@@ -40922,6 +41252,9 @@ module Aws::EC2
40922
41252
  # resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
40923
41253
  # resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
40924
41254
  # resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.state #=> String
41255
+ # resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.carrier_gateway_id #=> String
41256
+ # resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.core_network_arn #=> String
41257
+ # resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.local_gateway_id #=> String
40925
41258
  # resp.analysis_findings[0].finding_components[0].explanations[0].route_table.id #=> String
40926
41259
  # resp.analysis_findings[0].finding_components[0].explanations[0].route_table.arn #=> String
40927
41260
  # resp.analysis_findings[0].finding_components[0].explanations[0].route_table.name #=> String
@@ -40979,9 +41312,68 @@ module Aws::EC2
40979
41312
  # resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_attachment.name #=> String
40980
41313
  # resp.analysis_findings[0].finding_components[0].explanations[0].component_account #=> String
40981
41314
  # resp.analysis_findings[0].finding_components[0].explanations[0].component_region #=> String
41315
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.rule_group_arn #=> String
41316
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.sources #=> Array
41317
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.sources[0] #=> String
41318
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.destinations #=> Array
41319
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.destinations[0] #=> String
41320
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.source_ports #=> Array
41321
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.source_ports[0].from #=> Integer
41322
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.source_ports[0].to #=> Integer
41323
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.destination_ports #=> Array
41324
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
41325
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
41326
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.protocols #=> Array
41327
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.protocols[0] #=> Integer
41328
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.rule_action #=> String
41329
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateless_rule.priority #=> Integer
41330
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.rule_group_arn #=> String
41331
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.sources #=> Array
41332
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.sources[0] #=> String
41333
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.destinations #=> Array
41334
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.destinations[0] #=> String
41335
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.source_ports #=> Array
41336
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.source_ports[0].from #=> Integer
41337
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.source_ports[0].to #=> Integer
41338
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.destination_ports #=> Array
41339
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
41340
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
41341
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.protocol #=> String
41342
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.rule_action #=> String
41343
+ # resp.analysis_findings[0].finding_components[0].explanations[0].firewall_stateful_rule.direction #=> String
40982
41344
  # resp.analysis_findings[0].finding_components[0].elastic_load_balancer_listener.id #=> String
40983
41345
  # resp.analysis_findings[0].finding_components[0].elastic_load_balancer_listener.arn #=> String
40984
41346
  # resp.analysis_findings[0].finding_components[0].elastic_load_balancer_listener.name #=> String
41347
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.rule_group_arn #=> String
41348
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.sources #=> Array
41349
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.sources[0] #=> String
41350
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.destinations #=> Array
41351
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.destinations[0] #=> String
41352
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.source_ports #=> Array
41353
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.source_ports[0].from #=> Integer
41354
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.source_ports[0].to #=> Integer
41355
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.destination_ports #=> Array
41356
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
41357
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
41358
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.protocols #=> Array
41359
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.protocols[0] #=> Integer
41360
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.rule_action #=> String
41361
+ # resp.analysis_findings[0].finding_components[0].firewall_stateless_rule.priority #=> Integer
41362
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.rule_group_arn #=> String
41363
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.sources #=> Array
41364
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.sources[0] #=> String
41365
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.destinations #=> Array
41366
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.destinations[0] #=> String
41367
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.source_ports #=> Array
41368
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.source_ports[0].from #=> Integer
41369
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.source_ports[0].to #=> Integer
41370
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.destination_ports #=> Array
41371
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
41372
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
41373
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.protocol #=> String
41374
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.rule_action #=> String
41375
+ # resp.analysis_findings[0].finding_components[0].firewall_stateful_rule.direction #=> String
41376
+ # resp.analysis_findings[0].finding_components[0].service_name #=> String
40985
41377
  # resp.next_token #=> String
40986
41378
  #
40987
41379
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetNetworkInsightsAccessScopeAnalysisFindings AWS API Documentation
@@ -42241,6 +42633,57 @@ module Aws::EC2
42241
42633
  req.send_request(options)
42242
42634
  end
42243
42635
 
42636
+ # Get details of available tunnel endpoint maintenance.
42637
+ #
42638
+ # @option params [required, String] :vpn_connection_id
42639
+ # The ID of the Site-to-Site VPN connection.
42640
+ #
42641
+ # @option params [required, String] :vpn_tunnel_outside_ip_address
42642
+ # The external IP address of the VPN tunnel.
42643
+ #
42644
+ # @option params [Boolean] :dry_run
42645
+ # Checks whether you have the required permissions for the action,
42646
+ # without actually making the request, and provides an error response.
42647
+ # If you have the required permissions, the error response is
42648
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
42649
+ #
42650
+ # @return [Types::GetVpnTunnelReplacementStatusResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
42651
+ #
42652
+ # * {Types::GetVpnTunnelReplacementStatusResult#vpn_connection_id #vpn_connection_id} => String
42653
+ # * {Types::GetVpnTunnelReplacementStatusResult#transit_gateway_id #transit_gateway_id} => String
42654
+ # * {Types::GetVpnTunnelReplacementStatusResult#customer_gateway_id #customer_gateway_id} => String
42655
+ # * {Types::GetVpnTunnelReplacementStatusResult#vpn_gateway_id #vpn_gateway_id} => String
42656
+ # * {Types::GetVpnTunnelReplacementStatusResult#vpn_tunnel_outside_ip_address #vpn_tunnel_outside_ip_address} => String
42657
+ # * {Types::GetVpnTunnelReplacementStatusResult#maintenance_details #maintenance_details} => Types::MaintenanceDetails
42658
+ #
42659
+ # @example Request syntax with placeholder values
42660
+ #
42661
+ # resp = client.get_vpn_tunnel_replacement_status({
42662
+ # vpn_connection_id: "VpnConnectionId", # required
42663
+ # vpn_tunnel_outside_ip_address: "String", # required
42664
+ # dry_run: false,
42665
+ # })
42666
+ #
42667
+ # @example Response structure
42668
+ #
42669
+ # resp.vpn_connection_id #=> String
42670
+ # resp.transit_gateway_id #=> String
42671
+ # resp.customer_gateway_id #=> String
42672
+ # resp.vpn_gateway_id #=> String
42673
+ # resp.vpn_tunnel_outside_ip_address #=> String
42674
+ # resp.maintenance_details.pending_maintenance #=> String
42675
+ # resp.maintenance_details.maintenance_auto_applied_after #=> Time
42676
+ # resp.maintenance_details.last_maintenance_applied #=> Time
42677
+ #
42678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetVpnTunnelReplacementStatus AWS API Documentation
42679
+ #
42680
+ # @overload get_vpn_tunnel_replacement_status(params = {})
42681
+ # @param [Hash] params ({})
42682
+ def get_vpn_tunnel_replacement_status(params = {}, options = {})
42683
+ req = build_request(:get_vpn_tunnel_replacement_status, params)
42684
+ req.send_request(options)
42685
+ end
42686
+
42244
42687
  # Uploads a client certificate revocation list to the specified Client
42245
42688
  # VPN endpoint. Uploading a client certificate revocation list
42246
42689
  # overwrites the existing client certificate revocation list.
@@ -42604,7 +43047,7 @@ module Aws::EC2
42604
43047
  # image: {
42605
43048
  # bytes: 1, # required
42606
43049
  # format: "VMDK", # required, accepts VMDK, RAW, VHD
42607
- # import_manifest_url: "String", # required
43050
+ # import_manifest_url: "ImportManifestUrl", # required
42608
43051
  # },
42609
43052
  # volume: {
42610
43053
  # size: 1, # required
@@ -42966,7 +43409,7 @@ module Aws::EC2
42966
43409
  # image: { # required
42967
43410
  # bytes: 1, # required
42968
43411
  # format: "VMDK", # required, accepts VMDK, RAW, VHD
42969
- # import_manifest_url: "String", # required
43412
+ # import_manifest_url: "ImportManifestUrl", # required
42970
43413
  # },
42971
43414
  # volume: { # required
42972
43415
  # size: 1, # required
@@ -48469,6 +48912,7 @@ module Aws::EC2
48469
48912
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_enabled #=> Boolean
48470
48913
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
48471
48914
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
48915
+ # resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
48472
48916
  # resp.vpn_connection.routes #=> Array
48473
48917
  # resp.vpn_connection.routes[0].destination_cidr_block #=> String
48474
48918
  # resp.vpn_connection.routes[0].source #=> String, one of "Static"
@@ -48598,6 +49042,7 @@ module Aws::EC2
48598
49042
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_enabled #=> Boolean
48599
49043
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
48600
49044
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
49045
+ # resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
48601
49046
  # resp.vpn_connection.routes #=> Array
48602
49047
  # resp.vpn_connection.routes[0].destination_cidr_block #=> String
48603
49048
  # resp.vpn_connection.routes[0].source #=> String, one of "Static"
@@ -48700,6 +49145,7 @@ module Aws::EC2
48700
49145
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_enabled #=> Boolean
48701
49146
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
48702
49147
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
49148
+ # resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
48703
49149
  # resp.vpn_connection.routes #=> Array
48704
49150
  # resp.vpn_connection.routes[0].destination_cidr_block #=> String
48705
49151
  # resp.vpn_connection.routes[0].source #=> String, one of "Static"
@@ -48750,6 +49196,11 @@ module Aws::EC2
48750
49196
  # If you have the required permissions, the error response is
48751
49197
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
48752
49198
  #
49199
+ # @option params [Boolean] :skip_tunnel_replacement
49200
+ # Choose whether or not to trigger immediate tunnel replacement.
49201
+ #
49202
+ # Valid values: `True` \| `False`
49203
+ #
48753
49204
  # @return [Types::ModifyVpnTunnelOptionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
48754
49205
  #
48755
49206
  # * {Types::ModifyVpnTunnelOptionsResult#vpn_connection #vpn_connection} => Types::VpnConnection
@@ -48813,8 +49264,10 @@ module Aws::EC2
48813
49264
  # log_output_format: "String",
48814
49265
  # },
48815
49266
  # },
49267
+ # enable_tunnel_lifecycle_control: false,
48816
49268
  # },
48817
49269
  # dry_run: false,
49270
+ # skip_tunnel_replacement: false,
48818
49271
  # })
48819
49272
  #
48820
49273
  # @example Response structure
@@ -48869,6 +49322,7 @@ module Aws::EC2
48869
49322
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_enabled #=> Boolean
48870
49323
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
48871
49324
  # resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
49325
+ # resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
48872
49326
  # resp.vpn_connection.routes #=> Array
48873
49327
  # resp.vpn_connection.routes[0].destination_cidr_block #=> String
48874
49328
  # resp.vpn_connection.routes[0].source #=> String, one of "Static"
@@ -50494,10 +50948,15 @@ module Aws::EC2
50494
50948
  # false using [ModifyIpamResourceCidr][1]. For more information, see
50495
50949
  # [Release an allocation][2] in the *Amazon VPC IPAM User Guide*.
50496
50950
  #
50951
+ # <note markdown="1"> All EC2 API actions follow an [eventual consistency][3] model.
50952
+ #
50953
+ # </note>
50954
+ #
50497
50955
  #
50498
50956
  #
50499
50957
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyIpamResourceCidr.html
50500
50958
  # [2]: https://docs.aws.amazon.com/vpc/latest/ipam/release-pool-alloc-ipam.html
50959
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/query-api-troubleshooting.html#eventual-consistency
50501
50960
  #
50502
50961
  # @option params [Boolean] :dry_run
50503
50962
  # A check for whether you have the required permissions for the action
@@ -50999,6 +51458,49 @@ module Aws::EC2
50999
51458
  req.send_request(options)
51000
51459
  end
51001
51460
 
51461
+ # Trigger replacement of specified VPN tunnel.
51462
+ #
51463
+ # @option params [required, String] :vpn_connection_id
51464
+ # The ID of the Site-to-Site VPN connection.
51465
+ #
51466
+ # @option params [required, String] :vpn_tunnel_outside_ip_address
51467
+ # The external IP address of the VPN tunnel.
51468
+ #
51469
+ # @option params [Boolean] :apply_pending_maintenance
51470
+ # Trigger pending tunnel endpoint maintenance.
51471
+ #
51472
+ # @option params [Boolean] :dry_run
51473
+ # Checks whether you have the required permissions for the action,
51474
+ # without actually making the request, and provides an error response.
51475
+ # If you have the required permissions, the error response is
51476
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
51477
+ #
51478
+ # @return [Types::ReplaceVpnTunnelResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
51479
+ #
51480
+ # * {Types::ReplaceVpnTunnelResult#return #return} => Boolean
51481
+ #
51482
+ # @example Request syntax with placeholder values
51483
+ #
51484
+ # resp = client.replace_vpn_tunnel({
51485
+ # vpn_connection_id: "VpnConnectionId", # required
51486
+ # vpn_tunnel_outside_ip_address: "String", # required
51487
+ # apply_pending_maintenance: false,
51488
+ # dry_run: false,
51489
+ # })
51490
+ #
51491
+ # @example Response structure
51492
+ #
51493
+ # resp.return #=> Boolean
51494
+ #
51495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceVpnTunnel AWS API Documentation
51496
+ #
51497
+ # @overload replace_vpn_tunnel(params = {})
51498
+ # @param [Hash] params ({})
51499
+ def replace_vpn_tunnel(params = {}, options = {})
51500
+ req = build_request(:replace_vpn_tunnel, params)
51501
+ req.send_request(options)
51502
+ end
51503
+
51002
51504
  # Submits feedback about the status of an instance. The instance must be
51003
51505
  # in the `running` state. If your experience with the instance differs
51004
51506
  # from the instance status returned by DescribeInstanceStatus, use
@@ -54639,6 +55141,9 @@ module Aws::EC2
54639
55141
  # resp.network_insights_analysis.forward_path_components[0].route_table_route.transit_gateway_id #=> String
54640
55142
  # resp.network_insights_analysis.forward_path_components[0].route_table_route.vpc_peering_connection_id #=> String
54641
55143
  # resp.network_insights_analysis.forward_path_components[0].route_table_route.state #=> String
55144
+ # resp.network_insights_analysis.forward_path_components[0].route_table_route.carrier_gateway_id #=> String
55145
+ # resp.network_insights_analysis.forward_path_components[0].route_table_route.core_network_arn #=> String
55146
+ # resp.network_insights_analysis.forward_path_components[0].route_table_route.local_gateway_id #=> String
54642
55147
  # resp.network_insights_analysis.forward_path_components[0].security_group_rule.cidr #=> String
54643
55148
  # resp.network_insights_analysis.forward_path_components[0].security_group_rule.direction #=> String
54644
55149
  # resp.network_insights_analysis.forward_path_components[0].security_group_rule.security_group_id #=> String
@@ -54660,6 +55165,27 @@ module Aws::EC2
54660
55165
  # resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.id #=> String
54661
55166
  # resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.arn #=> String
54662
55167
  # resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.name #=> String
55168
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].vpc_endpoint_service.id #=> String
55169
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].vpc_endpoint_service.arn #=> String
55170
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].vpc_endpoint_service.name #=> String
55171
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_options #=> Array
55172
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_options[0].keyword #=> String
55173
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_options[0].settings #=> Array
55174
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_options[0].settings[0] #=> String
55175
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_type_pairs #=> Array
55176
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_arn #=> String
55177
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_type #=> String
55178
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_rule_options_pairs #=> Array
55179
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_group_arn #=> String
55180
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options #=> Array
55181
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].keyword #=> String
55182
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings #=> Array
55183
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings[0] #=> String
55184
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].service_name #=> String
55185
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].load_balancers #=> Array
55186
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].load_balancers[0].id #=> String
55187
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].load_balancers[0].arn #=> String
55188
+ # resp.network_insights_analysis.forward_path_components[0].additional_details[0].load_balancers[0].name #=> String
54663
55189
  # resp.network_insights_analysis.forward_path_components[0].transit_gateway.id #=> String
54664
55190
  # resp.network_insights_analysis.forward_path_components[0].transit_gateway.arn #=> String
54665
55191
  # resp.network_insights_analysis.forward_path_components[0].transit_gateway.name #=> String
@@ -54763,6 +55289,9 @@ module Aws::EC2
54763
55289
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
54764
55290
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
54765
55291
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.state #=> String
55292
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.carrier_gateway_id #=> String
55293
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.core_network_arn #=> String
55294
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.local_gateway_id #=> String
54766
55295
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table.id #=> String
54767
55296
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table.arn #=> String
54768
55297
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table.name #=> String
@@ -54820,9 +55349,68 @@ module Aws::EC2
54820
55349
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
54821
55350
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].component_account #=> String
54822
55351
  # resp.network_insights_analysis.forward_path_components[0].explanations[0].component_region #=> String
55352
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.rule_group_arn #=> String
55353
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.sources #=> Array
55354
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.sources[0] #=> String
55355
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.destinations #=> Array
55356
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.destinations[0] #=> String
55357
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.source_ports #=> Array
55358
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].from #=> Integer
55359
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].to #=> Integer
55360
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.destination_ports #=> Array
55361
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
55362
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
55363
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.protocols #=> Array
55364
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.protocols[0] #=> Integer
55365
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.rule_action #=> String
55366
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateless_rule.priority #=> Integer
55367
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.rule_group_arn #=> String
55368
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.sources #=> Array
55369
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.sources[0] #=> String
55370
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.destinations #=> Array
55371
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.destinations[0] #=> String
55372
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.source_ports #=> Array
55373
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].from #=> Integer
55374
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].to #=> Integer
55375
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.destination_ports #=> Array
55376
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
55377
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
55378
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.protocol #=> String
55379
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.rule_action #=> String
55380
+ # resp.network_insights_analysis.forward_path_components[0].explanations[0].firewall_stateful_rule.direction #=> String
54823
55381
  # resp.network_insights_analysis.forward_path_components[0].elastic_load_balancer_listener.id #=> String
54824
55382
  # resp.network_insights_analysis.forward_path_components[0].elastic_load_balancer_listener.arn #=> String
54825
55383
  # resp.network_insights_analysis.forward_path_components[0].elastic_load_balancer_listener.name #=> String
55384
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.rule_group_arn #=> String
55385
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.sources #=> Array
55386
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.sources[0] #=> String
55387
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.destinations #=> Array
55388
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.destinations[0] #=> String
55389
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.source_ports #=> Array
55390
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.source_ports[0].from #=> Integer
55391
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.source_ports[0].to #=> Integer
55392
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.destination_ports #=> Array
55393
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
55394
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
55395
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.protocols #=> Array
55396
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.protocols[0] #=> Integer
55397
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.rule_action #=> String
55398
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateless_rule.priority #=> Integer
55399
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.rule_group_arn #=> String
55400
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.sources #=> Array
55401
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.sources[0] #=> String
55402
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.destinations #=> Array
55403
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.destinations[0] #=> String
55404
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.source_ports #=> Array
55405
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.source_ports[0].from #=> Integer
55406
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.source_ports[0].to #=> Integer
55407
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.destination_ports #=> Array
55408
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
55409
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
55410
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.protocol #=> String
55411
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.rule_action #=> String
55412
+ # resp.network_insights_analysis.forward_path_components[0].firewall_stateful_rule.direction #=> String
55413
+ # resp.network_insights_analysis.forward_path_components[0].service_name #=> String
54826
55414
  # resp.network_insights_analysis.return_path_components #=> Array
54827
55415
  # resp.network_insights_analysis.return_path_components[0].sequence_number #=> Integer
54828
55416
  # resp.network_insights_analysis.return_path_components[0].acl_rule.cidr #=> String
@@ -54874,6 +55462,9 @@ module Aws::EC2
54874
55462
  # resp.network_insights_analysis.return_path_components[0].route_table_route.transit_gateway_id #=> String
54875
55463
  # resp.network_insights_analysis.return_path_components[0].route_table_route.vpc_peering_connection_id #=> String
54876
55464
  # resp.network_insights_analysis.return_path_components[0].route_table_route.state #=> String
55465
+ # resp.network_insights_analysis.return_path_components[0].route_table_route.carrier_gateway_id #=> String
55466
+ # resp.network_insights_analysis.return_path_components[0].route_table_route.core_network_arn #=> String
55467
+ # resp.network_insights_analysis.return_path_components[0].route_table_route.local_gateway_id #=> String
54877
55468
  # resp.network_insights_analysis.return_path_components[0].security_group_rule.cidr #=> String
54878
55469
  # resp.network_insights_analysis.return_path_components[0].security_group_rule.direction #=> String
54879
55470
  # resp.network_insights_analysis.return_path_components[0].security_group_rule.security_group_id #=> String
@@ -54895,6 +55486,27 @@ module Aws::EC2
54895
55486
  # resp.network_insights_analysis.return_path_components[0].additional_details[0].component.id #=> String
54896
55487
  # resp.network_insights_analysis.return_path_components[0].additional_details[0].component.arn #=> String
54897
55488
  # resp.network_insights_analysis.return_path_components[0].additional_details[0].component.name #=> String
55489
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].vpc_endpoint_service.id #=> String
55490
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].vpc_endpoint_service.arn #=> String
55491
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].vpc_endpoint_service.name #=> String
55492
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_options #=> Array
55493
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_options[0].keyword #=> String
55494
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_options[0].settings #=> Array
55495
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_options[0].settings[0] #=> String
55496
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_type_pairs #=> Array
55497
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_arn #=> String
55498
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_type_pairs[0].rule_group_type #=> String
55499
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_rule_options_pairs #=> Array
55500
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_group_arn #=> String
55501
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options #=> Array
55502
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].keyword #=> String
55503
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings #=> Array
55504
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].rule_group_rule_options_pairs[0].rule_options[0].settings[0] #=> String
55505
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].service_name #=> String
55506
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].load_balancers #=> Array
55507
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].load_balancers[0].id #=> String
55508
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].load_balancers[0].arn #=> String
55509
+ # resp.network_insights_analysis.return_path_components[0].additional_details[0].load_balancers[0].name #=> String
54898
55510
  # resp.network_insights_analysis.return_path_components[0].transit_gateway.id #=> String
54899
55511
  # resp.network_insights_analysis.return_path_components[0].transit_gateway.arn #=> String
54900
55512
  # resp.network_insights_analysis.return_path_components[0].transit_gateway.name #=> String
@@ -54998,6 +55610,9 @@ module Aws::EC2
54998
55610
  # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
54999
55611
  # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
55000
55612
  # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.state #=> String
55613
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.carrier_gateway_id #=> String
55614
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.core_network_arn #=> String
55615
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.local_gateway_id #=> String
55001
55616
  # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table.id #=> String
55002
55617
  # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table.arn #=> String
55003
55618
  # resp.network_insights_analysis.return_path_components[0].explanations[0].route_table.name #=> String
@@ -55055,9 +55670,68 @@ module Aws::EC2
55055
55670
  # resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
55056
55671
  # resp.network_insights_analysis.return_path_components[0].explanations[0].component_account #=> String
55057
55672
  # resp.network_insights_analysis.return_path_components[0].explanations[0].component_region #=> String
55673
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.rule_group_arn #=> String
55674
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.sources #=> Array
55675
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.sources[0] #=> String
55676
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.destinations #=> Array
55677
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.destinations[0] #=> String
55678
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.source_ports #=> Array
55679
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].from #=> Integer
55680
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.source_ports[0].to #=> Integer
55681
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.destination_ports #=> Array
55682
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
55683
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
55684
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.protocols #=> Array
55685
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.protocols[0] #=> Integer
55686
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.rule_action #=> String
55687
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateless_rule.priority #=> Integer
55688
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.rule_group_arn #=> String
55689
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.sources #=> Array
55690
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.sources[0] #=> String
55691
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.destinations #=> Array
55692
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.destinations[0] #=> String
55693
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.source_ports #=> Array
55694
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].from #=> Integer
55695
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.source_ports[0].to #=> Integer
55696
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.destination_ports #=> Array
55697
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
55698
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
55699
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.protocol #=> String
55700
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.rule_action #=> String
55701
+ # resp.network_insights_analysis.return_path_components[0].explanations[0].firewall_stateful_rule.direction #=> String
55058
55702
  # resp.network_insights_analysis.return_path_components[0].elastic_load_balancer_listener.id #=> String
55059
55703
  # resp.network_insights_analysis.return_path_components[0].elastic_load_balancer_listener.arn #=> String
55060
55704
  # resp.network_insights_analysis.return_path_components[0].elastic_load_balancer_listener.name #=> String
55705
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.rule_group_arn #=> String
55706
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.sources #=> Array
55707
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.sources[0] #=> String
55708
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.destinations #=> Array
55709
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.destinations[0] #=> String
55710
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.source_ports #=> Array
55711
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.source_ports[0].from #=> Integer
55712
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.source_ports[0].to #=> Integer
55713
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.destination_ports #=> Array
55714
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
55715
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
55716
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.protocols #=> Array
55717
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.protocols[0] #=> Integer
55718
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.rule_action #=> String
55719
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateless_rule.priority #=> Integer
55720
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.rule_group_arn #=> String
55721
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.sources #=> Array
55722
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.sources[0] #=> String
55723
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.destinations #=> Array
55724
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.destinations[0] #=> String
55725
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.source_ports #=> Array
55726
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.source_ports[0].from #=> Integer
55727
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.source_ports[0].to #=> Integer
55728
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.destination_ports #=> Array
55729
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
55730
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
55731
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.protocol #=> String
55732
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.rule_action #=> String
55733
+ # resp.network_insights_analysis.return_path_components[0].firewall_stateful_rule.direction #=> String
55734
+ # resp.network_insights_analysis.return_path_components[0].service_name #=> String
55061
55735
  # resp.network_insights_analysis.explanations #=> Array
55062
55736
  # resp.network_insights_analysis.explanations[0].acl.id #=> String
55063
55737
  # resp.network_insights_analysis.explanations[0].acl.arn #=> String
@@ -55151,6 +55825,9 @@ module Aws::EC2
55151
55825
  # resp.network_insights_analysis.explanations[0].route_table_route.transit_gateway_id #=> String
55152
55826
  # resp.network_insights_analysis.explanations[0].route_table_route.vpc_peering_connection_id #=> String
55153
55827
  # resp.network_insights_analysis.explanations[0].route_table_route.state #=> String
55828
+ # resp.network_insights_analysis.explanations[0].route_table_route.carrier_gateway_id #=> String
55829
+ # resp.network_insights_analysis.explanations[0].route_table_route.core_network_arn #=> String
55830
+ # resp.network_insights_analysis.explanations[0].route_table_route.local_gateway_id #=> String
55154
55831
  # resp.network_insights_analysis.explanations[0].route_table.id #=> String
55155
55832
  # resp.network_insights_analysis.explanations[0].route_table.arn #=> String
55156
55833
  # resp.network_insights_analysis.explanations[0].route_table.name #=> String
@@ -55208,6 +55885,35 @@ module Aws::EC2
55208
55885
  # resp.network_insights_analysis.explanations[0].transit_gateway_attachment.name #=> String
55209
55886
  # resp.network_insights_analysis.explanations[0].component_account #=> String
55210
55887
  # resp.network_insights_analysis.explanations[0].component_region #=> String
55888
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.rule_group_arn #=> String
55889
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.sources #=> Array
55890
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.sources[0] #=> String
55891
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.destinations #=> Array
55892
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.destinations[0] #=> String
55893
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.source_ports #=> Array
55894
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.source_ports[0].from #=> Integer
55895
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.source_ports[0].to #=> Integer
55896
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.destination_ports #=> Array
55897
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.destination_ports[0].from #=> Integer
55898
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.destination_ports[0].to #=> Integer
55899
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.protocols #=> Array
55900
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.protocols[0] #=> Integer
55901
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.rule_action #=> String
55902
+ # resp.network_insights_analysis.explanations[0].firewall_stateless_rule.priority #=> Integer
55903
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.rule_group_arn #=> String
55904
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.sources #=> Array
55905
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.sources[0] #=> String
55906
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.destinations #=> Array
55907
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.destinations[0] #=> String
55908
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.source_ports #=> Array
55909
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.source_ports[0].from #=> Integer
55910
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.source_ports[0].to #=> Integer
55911
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.destination_ports #=> Array
55912
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.destination_ports[0].from #=> Integer
55913
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.destination_ports[0].to #=> Integer
55914
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.protocol #=> String
55915
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.rule_action #=> String
55916
+ # resp.network_insights_analysis.explanations[0].firewall_stateful_rule.direction #=> String
55211
55917
  # resp.network_insights_analysis.alternate_path_hints #=> Array
55212
55918
  # resp.network_insights_analysis.alternate_path_hints[0].component_id #=> String
55213
55919
  # resp.network_insights_analysis.alternate_path_hints[0].component_arn #=> String
@@ -56112,7 +56818,7 @@ module Aws::EC2
56112
56818
  params: params,
56113
56819
  config: config)
56114
56820
  context[:gem_name] = 'aws-sdk-ec2'
56115
- context[:gem_version] = '1.370.0'
56821
+ context[:gem_version] = '1.372.0'
56116
56822
  Seahorse::Client::Request.new(handlers, context)
56117
56823
  end
56118
56824