aws-sdk-ec2 1.335.0 → 1.337.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +963 -110
- data/lib/aws-sdk-ec2/client_api.rb +8 -1
- data/lib/aws-sdk-ec2/instance.rb +8 -1
- data/lib/aws-sdk-ec2/network_interface.rb +3 -3
- data/lib/aws-sdk-ec2/resource.rb +80 -29
- data/lib/aws-sdk-ec2/security_group.rb +7 -3
- data/lib/aws-sdk-ec2/subnet.rb +42 -24
- data/lib/aws-sdk-ec2/types.rb +191 -96
- data/lib/aws-sdk-ec2/vpc.rb +35 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -764,10 +764,10 @@ module Aws::EC2
|
|
764
764
|
# from a telecommunication carrier, to a network interface which resides
|
765
765
|
# in a subnet in a Wavelength Zone (for example an EC2 instance).
|
766
766
|
#
|
767
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
768
|
-
#
|
769
|
-
#
|
770
|
-
#
|
767
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
768
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
769
|
+
# EC2-Classic to a VPC][3] in the *Amazon Elastic Compute Cloud User
|
770
|
+
# Guide*.
|
771
771
|
#
|
772
772
|
# </note>
|
773
773
|
#
|
@@ -1084,6 +1084,8 @@ module Aws::EC2
|
|
1084
1084
|
#
|
1085
1085
|
# @option params [Array<String>] :disallowed_cidrs
|
1086
1086
|
# Exclude a particular CIDR range from being returned by the pool.
|
1087
|
+
# Disallowed CIDRs are only allowed if using netmask length for
|
1088
|
+
# allocation.
|
1087
1089
|
#
|
1088
1090
|
# @return [Types::AllocateIpamPoolCidrResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1089
1091
|
#
|
@@ -1201,9 +1203,8 @@ module Aws::EC2
|
|
1201
1203
|
# specifying specific IPv6 addresses.
|
1202
1204
|
#
|
1203
1205
|
# @option params [Array<String>] :ipv_6_addresses
|
1204
|
-
#
|
1205
|
-
#
|
1206
|
-
# of IPv6 addresses.
|
1206
|
+
# The IPv6 addresses to be assigned to the network interface. You can't
|
1207
|
+
# use this option if you're specifying a number of IPv6 addresses.
|
1207
1208
|
#
|
1208
1209
|
# @option params [Integer] :ipv_6_prefix_count
|
1209
1210
|
# The number of IPv6 prefixes that Amazon Web Services automatically
|
@@ -1295,9 +1296,9 @@ module Aws::EC2
|
|
1295
1296
|
# The ID of the network interface.
|
1296
1297
|
#
|
1297
1298
|
# @option params [Array<String>] :private_ip_addresses
|
1298
|
-
#
|
1299
|
-
#
|
1300
|
-
#
|
1299
|
+
# The IP addresses to be assigned as a secondary private IP address to
|
1300
|
+
# the network interface. You can't specify this parameter when also
|
1301
|
+
# specifying a number of secondary IP addresses.
|
1301
1302
|
#
|
1302
1303
|
# If you don't specify an IP address, Amazon EC2 automatically selects
|
1303
1304
|
# an IP address within the subnet range.
|
@@ -1410,10 +1411,10 @@ module Aws::EC2
|
|
1410
1411
|
# For more information, see the *Elastic IP Addresses* section of
|
1411
1412
|
# [Amazon EC2 Pricing][2].
|
1412
1413
|
#
|
1413
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
1414
|
-
#
|
1415
|
-
#
|
1416
|
-
#
|
1414
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
1415
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
1416
|
+
# EC2-Classic to a VPC][3] in the *Amazon Elastic Compute Cloud User
|
1417
|
+
# Guide*.
|
1417
1418
|
#
|
1418
1419
|
# </note>
|
1419
1420
|
#
|
@@ -1672,7 +1673,7 @@ module Aws::EC2
|
|
1672
1673
|
#
|
1673
1674
|
# When the IAM role is associated with the ACM certificate, the
|
1674
1675
|
# certificate, certificate chain, and encrypted private key are placed
|
1675
|
-
# in an Amazon S3
|
1676
|
+
# in an Amazon S3 location that only the associated IAM role can access.
|
1676
1677
|
# The private key of the certificate is encrypted with an Amazon Web
|
1677
1678
|
# Services managed key that has an attached attestation-based key
|
1678
1679
|
# policy.
|
@@ -2994,10 +2995,10 @@ module Aws::EC2
|
|
2994
2995
|
# For more information about VPC security group quotas, see [Amazon VPC
|
2995
2996
|
# quotas][1].
|
2996
2997
|
#
|
2997
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
2998
|
-
#
|
2999
|
-
#
|
3000
|
-
#
|
2998
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
2999
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
3000
|
+
# EC2-Classic to a VPC][2] in the *Amazon Elastic Compute Cloud User
|
3001
|
+
# Guide*.
|
3001
3002
|
#
|
3002
3003
|
# </note>
|
3003
3004
|
#
|
@@ -3030,7 +3031,8 @@ module Aws::EC2
|
|
3030
3031
|
# @option params [String] :group_name
|
3031
3032
|
# \[EC2-Classic, default VPC\] The name of the security group. You must
|
3032
3033
|
# specify either the security group ID or the security group name in the
|
3033
|
-
# request.
|
3034
|
+
# request. For security groups in a nondefault VPC, you must specify the
|
3035
|
+
# security group ID.
|
3034
3036
|
#
|
3035
3037
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
3036
3038
|
# The sets of IP permissions.
|
@@ -9244,12 +9246,18 @@ module Aws::EC2
|
|
9244
9246
|
|
9245
9247
|
# Creates a network interface in the specified subnet.
|
9246
9248
|
#
|
9247
|
-
#
|
9248
|
-
#
|
9249
|
+
# The number of IP addresses you can assign to a network interface
|
9250
|
+
# varies by instance type. For more information, see [IP Addresses Per
|
9251
|
+
# ENI Per Instance Type][1] in the *Amazon Virtual Private Cloud User
|
9252
|
+
# Guide*.
|
9253
|
+
#
|
9254
|
+
# For more information about network interfaces, see [Elastic network
|
9255
|
+
# interfaces][2] in the *Amazon Elastic Compute Cloud User Guide*.
|
9249
9256
|
#
|
9250
9257
|
#
|
9251
9258
|
#
|
9252
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html
|
9259
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
|
9260
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html
|
9253
9261
|
#
|
9254
9262
|
# @option params [String] :description
|
9255
9263
|
# A description for the network interface.
|
@@ -9266,14 +9274,21 @@ module Aws::EC2
|
|
9266
9274
|
# @option params [Integer] :ipv_6_address_count
|
9267
9275
|
# The number of IPv6 addresses to assign to a network interface. Amazon
|
9268
9276
|
# EC2 automatically selects the IPv6 addresses from the subnet range.
|
9269
|
-
#
|
9270
|
-
#
|
9271
|
-
#
|
9277
|
+
#
|
9278
|
+
# You can't specify a count of IPv6 addresses using this parameter if
|
9279
|
+
# you've specified one of the following: specific IPv6 addresses,
|
9280
|
+
# specific IPv6 prefixes, or a count of IPv6 prefixes.
|
9281
|
+
#
|
9282
|
+
# If your subnet has the `AssignIpv6AddressOnCreation` attribute set,
|
9283
|
+
# you can override that setting by specifying 0 as the IPv6 address
|
9284
|
+
# count.
|
9272
9285
|
#
|
9273
9286
|
# @option params [Array<Types::InstanceIpv6Address>] :ipv_6_addresses
|
9274
|
-
#
|
9275
|
-
#
|
9276
|
-
#
|
9287
|
+
# The IPv6 addresses from the IPv6 CIDR block range of your subnet.
|
9288
|
+
#
|
9289
|
+
# You can't specify IPv6 addresses using this parameter if you've
|
9290
|
+
# specified one of the following: a count of IPv6 addresses, specific
|
9291
|
+
# IPv6 prefixes, or a count of IPv6 prefixes.
|
9277
9292
|
#
|
9278
9293
|
# @option params [String] :private_ip_address
|
9279
9294
|
# The primary private IPv4 address of the network interface. If you
|
@@ -9283,7 +9298,11 @@ module Aws::EC2
|
|
9283
9298
|
# primary (only one IP address can be designated as primary).
|
9284
9299
|
#
|
9285
9300
|
# @option params [Array<Types::PrivateIpAddressSpecification>] :private_ip_addresses
|
9286
|
-
#
|
9301
|
+
# The private IPv4 addresses.
|
9302
|
+
#
|
9303
|
+
# You can't specify private IPv4 addresses if you've specified one of
|
9304
|
+
# the following: a count of private IPv4 addresses, specific IPv4
|
9305
|
+
# prefixes, or a count of IPv4 prefixes.
|
9287
9306
|
#
|
9288
9307
|
# @option params [Integer] :secondary_private_ip_address_count
|
9289
9308
|
# The number of secondary private IPv4 addresses to assign to a network
|
@@ -9292,32 +9311,39 @@ module Aws::EC2
|
|
9292
9311
|
# range. You can't specify this option and specify more than one
|
9293
9312
|
# private IP address using `privateIpAddresses`.
|
9294
9313
|
#
|
9295
|
-
#
|
9296
|
-
#
|
9297
|
-
#
|
9298
|
-
# Guide*.
|
9299
|
-
#
|
9300
|
-
#
|
9301
|
-
#
|
9302
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
|
9314
|
+
# You can't specify a count of private IPv4 addresses if you've
|
9315
|
+
# specified one of the following: specific private IPv4 addresses,
|
9316
|
+
# specific IPv4 prefixes, or a count of IPv4 prefixes.
|
9303
9317
|
#
|
9304
9318
|
# @option params [Array<Types::Ipv4PrefixSpecificationRequest>] :ipv_4_prefixes
|
9305
|
-
#
|
9306
|
-
#
|
9319
|
+
# The IPv4 prefixes assigned to the network interface.
|
9320
|
+
#
|
9321
|
+
# You can't specify IPv4 prefixes if you've specified one of the
|
9322
|
+
# following: a count of IPv4 prefixes, specific private IPv4 addresses,
|
9323
|
+
# or a count of private IPv4 addresses.
|
9307
9324
|
#
|
9308
9325
|
# @option params [Integer] :ipv_4_prefix_count
|
9309
9326
|
# The number of IPv4 prefixes that Amazon Web Services automatically
|
9310
|
-
# assigns to the network interface.
|
9311
|
-
#
|
9327
|
+
# assigns to the network interface.
|
9328
|
+
#
|
9329
|
+
# You can't specify a count of IPv4 prefixes if you've specified one
|
9330
|
+
# of the following: specific IPv4 prefixes, specific private IPv4
|
9331
|
+
# addresses, or a count of private IPv4 addresses.
|
9312
9332
|
#
|
9313
9333
|
# @option params [Array<Types::Ipv6PrefixSpecificationRequest>] :ipv_6_prefixes
|
9314
|
-
#
|
9315
|
-
#
|
9334
|
+
# The IPv6 prefixes assigned to the network interface.
|
9335
|
+
#
|
9336
|
+
# You can't specify IPv6 prefixes if you've specified one of the
|
9337
|
+
# following: a count of IPv6 prefixes, specific IPv6 addresses, or a
|
9338
|
+
# count of IPv6 addresses.
|
9316
9339
|
#
|
9317
9340
|
# @option params [Integer] :ipv_6_prefix_count
|
9318
9341
|
# The number of IPv6 prefixes that Amazon Web Services automatically
|
9319
|
-
# assigns to the network interface.
|
9320
|
-
#
|
9342
|
+
# assigns to the network interface.
|
9343
|
+
#
|
9344
|
+
# You can't specify a count of IPv6 prefixes if you've specified one
|
9345
|
+
# of the following: specific IPv6 prefixes, specific IPv6 addresses, or
|
9346
|
+
# a count of IPv6 addresses.
|
9321
9347
|
#
|
9322
9348
|
# @option params [String] :interface_type
|
9323
9349
|
# The type of network interface. The default is `interface`.
|
@@ -10287,10 +10313,10 @@ module Aws::EC2
|
|
10287
10313
|
# For more information about VPC security group limits, see [Amazon VPC
|
10288
10314
|
# Limits][3].
|
10289
10315
|
#
|
10290
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
10291
|
-
#
|
10292
|
-
#
|
10293
|
-
#
|
10316
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
10317
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
10318
|
+
# EC2-Classic to a VPC][4] in the *Amazon Elastic Compute Cloud User
|
10319
|
+
# Guide*.
|
10294
10320
|
#
|
10295
10321
|
# </note>
|
10296
10322
|
#
|
@@ -10573,8 +10599,11 @@ module Aws::EC2
|
|
10573
10599
|
# Creates crash-consistent snapshots of multiple EBS volumes and stores
|
10574
10600
|
# the data in S3. Volumes are chosen by specifying an instance. Any
|
10575
10601
|
# attached volumes will produce one snapshot each that is
|
10576
|
-
# crash-consistent across the instance.
|
10577
|
-
#
|
10602
|
+
# crash-consistent across the instance.
|
10603
|
+
#
|
10604
|
+
# You can include all of the volumes currently attached to the instance,
|
10605
|
+
# or you can exclude the root volume or specific data (non-root) volumes
|
10606
|
+
# from the multi-volume snapshot set.
|
10578
10607
|
#
|
10579
10608
|
# You can create multi-volume snapshots of instances in a Region and
|
10580
10609
|
# instances on an Outpost. If you create snapshots from an instance in a
|
@@ -15616,10 +15645,10 @@ module Aws::EC2
|
|
15616
15645
|
# fails with `InvalidGroup.InUse` in EC2-Classic or
|
15617
15646
|
# `DependencyViolation` in EC2-VPC.
|
15618
15647
|
#
|
15619
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
15620
|
-
#
|
15621
|
-
#
|
15622
|
-
#
|
15648
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
15649
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
15650
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
15651
|
+
# Guide*.
|
15623
15652
|
#
|
15624
15653
|
# </note>
|
15625
15654
|
#
|
@@ -15632,7 +15661,9 @@ module Aws::EC2
|
|
15632
15661
|
#
|
15633
15662
|
# @option params [String] :group_name
|
15634
15663
|
# \[EC2-Classic, default VPC\] The name of the security group. You can
|
15635
|
-
# specify either the security group name or the security group ID.
|
15664
|
+
# specify either the security group name or the security group ID. For
|
15665
|
+
# security groups in a nondefault VPC, you must specify the security
|
15666
|
+
# group ID.
|
15636
15667
|
#
|
15637
15668
|
# @option params [Boolean] :dry_run
|
15638
15669
|
# Checks whether you have the required permissions for the action,
|
@@ -17467,10 +17498,10 @@ module Aws::EC2
|
|
17467
17498
|
# in a VPC. For more information, see [Elastic IP Addresses][1] in the
|
17468
17499
|
# *Amazon Elastic Compute Cloud User Guide*.
|
17469
17500
|
#
|
17470
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
17471
|
-
#
|
17472
|
-
#
|
17473
|
-
#
|
17501
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
17502
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
17503
|
+
# EC2-Classic to a VPC][2] in the *Amazon Elastic Compute Cloud User
|
17504
|
+
# Guide*.
|
17474
17505
|
#
|
17475
17506
|
# </note>
|
17476
17507
|
#
|
@@ -21272,13 +21303,12 @@ module Aws::EC2
|
|
21272
21303
|
# regardless of ownership.
|
21273
21304
|
#
|
21274
21305
|
# @option params [Boolean] :include_deprecated
|
21275
|
-
#
|
21276
|
-
#
|
21277
|
-
#
|
21306
|
+
# Specifies whether to include deprecated AMIs.
|
21307
|
+
#
|
21308
|
+
# Default: No deprecated AMIs are included in the response.
|
21278
21309
|
#
|
21279
21310
|
# <note markdown="1"> If you are the AMI owner, all deprecated AMIs appear in the response
|
21280
|
-
# regardless of
|
21281
|
-
# parameter.
|
21311
|
+
# regardless of what you specify for this parameter.
|
21282
21312
|
#
|
21283
21313
|
# </note>
|
21284
21314
|
#
|
@@ -25325,10 +25355,10 @@ module Aws::EC2
|
|
25325
25355
|
# @option params [Array<Types::Filter>] :filters
|
25326
25356
|
# The filters. The following are the possible values:
|
25327
25357
|
#
|
25328
|
-
# *
|
25358
|
+
# * path-found - A Boolean value that indicates whether a feasible path
|
25329
25359
|
# is found.
|
25330
25360
|
#
|
25331
|
-
# *
|
25361
|
+
# * status - The status of the analysis (running \| succeeded \|
|
25332
25362
|
# failed).
|
25333
25363
|
#
|
25334
25364
|
# @option params [Integer] :max_results
|
@@ -25433,6 +25463,7 @@ module Aws::EC2
|
|
25433
25463
|
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.origin #=> String
|
25434
25464
|
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.transit_gateway_id #=> String
|
25435
25465
|
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
25466
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.state #=> String
|
25436
25467
|
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.cidr #=> String
|
25437
25468
|
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.direction #=> String
|
25438
25469
|
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.security_group_id #=> String
|
@@ -25464,6 +25495,159 @@ module Aws::EC2
|
|
25464
25495
|
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
25465
25496
|
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
25466
25497
|
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
25498
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations #=> Array
|
25499
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl.id #=> String
|
25500
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl.arn #=> String
|
25501
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl.name #=> String
|
25502
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl_rule.cidr #=> String
|
25503
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl_rule.egress #=> Boolean
|
25504
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl_rule.port_range.from #=> Integer
|
25505
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl_rule.port_range.to #=> Integer
|
25506
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl_rule.protocol #=> String
|
25507
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl_rule.rule_action #=> String
|
25508
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].acl_rule.rule_number #=> Integer
|
25509
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].address #=> String
|
25510
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].addresses #=> Array
|
25511
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].addresses[0] #=> String
|
25512
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].attached_to.id #=> String
|
25513
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].attached_to.arn #=> String
|
25514
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].attached_to.name #=> String
|
25515
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].availability_zones #=> Array
|
25516
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].availability_zones[0] #=> String
|
25517
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].cidrs #=> Array
|
25518
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].cidrs[0] #=> String
|
25519
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].component.id #=> String
|
25520
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].component.arn #=> String
|
25521
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].component.name #=> String
|
25522
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].customer_gateway.id #=> String
|
25523
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].customer_gateway.arn #=> String
|
25524
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].customer_gateway.name #=> String
|
25525
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].destination.id #=> String
|
25526
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].destination.arn #=> String
|
25527
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].destination.name #=> String
|
25528
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].destination_vpc.id #=> String
|
25529
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].destination_vpc.arn #=> String
|
25530
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].destination_vpc.name #=> String
|
25531
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].direction #=> String
|
25532
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].explanation_code #=> String
|
25533
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].ingress_route_table.id #=> String
|
25534
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].ingress_route_table.arn #=> String
|
25535
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].ingress_route_table.name #=> String
|
25536
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].internet_gateway.id #=> String
|
25537
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].internet_gateway.arn #=> String
|
25538
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].internet_gateway.name #=> String
|
25539
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_arn #=> String
|
25540
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].classic_load_balancer_listener.load_balancer_port #=> Integer
|
25541
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].classic_load_balancer_listener.instance_port #=> Integer
|
25542
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_listener_port #=> Integer
|
25543
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target.address #=> String
|
25544
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target.availability_zone #=> String
|
25545
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target.instance.id #=> String
|
25546
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target.instance.arn #=> String
|
25547
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target.instance.name #=> String
|
25548
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target.port #=> Integer
|
25549
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_group.id #=> String
|
25550
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_group.arn #=> String
|
25551
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_group.name #=> String
|
25552
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_groups #=> Array
|
25553
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_groups[0].id #=> String
|
25554
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_groups[0].arn #=> String
|
25555
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_groups[0].name #=> String
|
25556
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].load_balancer_target_port #=> Integer
|
25557
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].elastic_load_balancer_listener.id #=> String
|
25558
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].elastic_load_balancer_listener.arn #=> String
|
25559
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].elastic_load_balancer_listener.name #=> String
|
25560
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].missing_component #=> String
|
25561
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].nat_gateway.id #=> String
|
25562
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].nat_gateway.arn #=> String
|
25563
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].nat_gateway.name #=> String
|
25564
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].network_interface.id #=> String
|
25565
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].network_interface.arn #=> String
|
25566
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].network_interface.name #=> String
|
25567
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].packet_field #=> String
|
25568
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc_peering_connection.id #=> String
|
25569
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc_peering_connection.arn #=> String
|
25570
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc_peering_connection.name #=> String
|
25571
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].port #=> Integer
|
25572
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].port_ranges #=> Array
|
25573
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].port_ranges[0].from #=> Integer
|
25574
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].port_ranges[0].to #=> Integer
|
25575
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].prefix_list.id #=> String
|
25576
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].prefix_list.arn #=> String
|
25577
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].prefix_list.name #=> String
|
25578
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].protocols #=> Array
|
25579
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].protocols[0] #=> String
|
25580
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.destination_cidr #=> String
|
25581
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.destination_prefix_list_id #=> String
|
25582
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.egress_only_internet_gateway_id #=> String
|
25583
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.gateway_id #=> String
|
25584
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.instance_id #=> String
|
25585
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.nat_gateway_id #=> String
|
25586
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.network_interface_id #=> String
|
25587
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.origin #=> String
|
25588
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
|
25589
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
25590
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table_route.state #=> String
|
25591
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table.id #=> String
|
25592
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table.arn #=> String
|
25593
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].route_table.name #=> String
|
25594
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group.id #=> String
|
25595
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group.arn #=> String
|
25596
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group.name #=> String
|
25597
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group_rule.cidr #=> String
|
25598
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group_rule.direction #=> String
|
25599
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group_rule.security_group_id #=> String
|
25600
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group_rule.port_range.from #=> Integer
|
25601
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group_rule.port_range.to #=> Integer
|
25602
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group_rule.prefix_list_id #=> String
|
25603
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_group_rule.protocol #=> String
|
25604
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_groups #=> Array
|
25605
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_groups[0].id #=> String
|
25606
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_groups[0].arn #=> String
|
25607
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].security_groups[0].name #=> String
|
25608
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].source_vpc.id #=> String
|
25609
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].source_vpc.arn #=> String
|
25610
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].source_vpc.name #=> String
|
25611
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].state #=> String
|
25612
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].subnet.id #=> String
|
25613
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].subnet.arn #=> String
|
25614
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].subnet.name #=> String
|
25615
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].subnet_route_table.id #=> String
|
25616
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].subnet_route_table.arn #=> String
|
25617
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].subnet_route_table.name #=> String
|
25618
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc.id #=> String
|
25619
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc.arn #=> String
|
25620
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc.name #=> String
|
25621
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc_endpoint.id #=> String
|
25622
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc_endpoint.arn #=> String
|
25623
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpc_endpoint.name #=> String
|
25624
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpn_connection.id #=> String
|
25625
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpn_connection.arn #=> String
|
25626
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpn_connection.name #=> String
|
25627
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpn_gateway.id #=> String
|
25628
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpn_gateway.arn #=> String
|
25629
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].vpn_gateway.name #=> String
|
25630
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway.id #=> String
|
25631
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway.arn #=> String
|
25632
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway.name #=> String
|
25633
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table.id #=> String
|
25634
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table.arn #=> String
|
25635
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table.name #=> String
|
25636
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
|
25637
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table_route.state #=> String
|
25638
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table_route.route_origin #=> String
|
25639
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
25640
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table_route.attachment_id #=> String
|
25641
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table_route.resource_id #=> String
|
25642
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_route_table_route.resource_type #=> String
|
25643
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_attachment.id #=> String
|
25644
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_attachment.arn #=> String
|
25645
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
|
25646
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].component_account #=> String
|
25647
|
+
# resp.network_insights_analyses[0].forward_path_components[0].explanations[0].component_region #=> String
|
25648
|
+
# resp.network_insights_analyses[0].forward_path_components[0].elastic_load_balancer_listener.id #=> String
|
25649
|
+
# resp.network_insights_analyses[0].forward_path_components[0].elastic_load_balancer_listener.arn #=> String
|
25650
|
+
# resp.network_insights_analyses[0].forward_path_components[0].elastic_load_balancer_listener.name #=> String
|
25467
25651
|
# resp.network_insights_analyses[0].return_path_components #=> Array
|
25468
25652
|
# resp.network_insights_analyses[0].return_path_components[0].sequence_number #=> Integer
|
25469
25653
|
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.cidr #=> String
|
@@ -25514,6 +25698,7 @@ module Aws::EC2
|
|
25514
25698
|
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.origin #=> String
|
25515
25699
|
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.transit_gateway_id #=> String
|
25516
25700
|
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
25701
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.state #=> String
|
25517
25702
|
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.cidr #=> String
|
25518
25703
|
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.direction #=> String
|
25519
25704
|
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.security_group_id #=> String
|
@@ -25545,6 +25730,159 @@ module Aws::EC2
|
|
25545
25730
|
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
25546
25731
|
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
25547
25732
|
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
25733
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations #=> Array
|
25734
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl.id #=> String
|
25735
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl.arn #=> String
|
25736
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl.name #=> String
|
25737
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl_rule.cidr #=> String
|
25738
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl_rule.egress #=> Boolean
|
25739
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl_rule.port_range.from #=> Integer
|
25740
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl_rule.port_range.to #=> Integer
|
25741
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl_rule.protocol #=> String
|
25742
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl_rule.rule_action #=> String
|
25743
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].acl_rule.rule_number #=> Integer
|
25744
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].address #=> String
|
25745
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].addresses #=> Array
|
25746
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].addresses[0] #=> String
|
25747
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].attached_to.id #=> String
|
25748
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].attached_to.arn #=> String
|
25749
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].attached_to.name #=> String
|
25750
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].availability_zones #=> Array
|
25751
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].availability_zones[0] #=> String
|
25752
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].cidrs #=> Array
|
25753
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].cidrs[0] #=> String
|
25754
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].component.id #=> String
|
25755
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].component.arn #=> String
|
25756
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].component.name #=> String
|
25757
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].customer_gateway.id #=> String
|
25758
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].customer_gateway.arn #=> String
|
25759
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].customer_gateway.name #=> String
|
25760
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].destination.id #=> String
|
25761
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].destination.arn #=> String
|
25762
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].destination.name #=> String
|
25763
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].destination_vpc.id #=> String
|
25764
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].destination_vpc.arn #=> String
|
25765
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].destination_vpc.name #=> String
|
25766
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].direction #=> String
|
25767
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].explanation_code #=> String
|
25768
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].ingress_route_table.id #=> String
|
25769
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].ingress_route_table.arn #=> String
|
25770
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].ingress_route_table.name #=> String
|
25771
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].internet_gateway.id #=> String
|
25772
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].internet_gateway.arn #=> String
|
25773
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].internet_gateway.name #=> String
|
25774
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_arn #=> String
|
25775
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].classic_load_balancer_listener.load_balancer_port #=> Integer
|
25776
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].classic_load_balancer_listener.instance_port #=> Integer
|
25777
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_listener_port #=> Integer
|
25778
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target.address #=> String
|
25779
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target.availability_zone #=> String
|
25780
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target.instance.id #=> String
|
25781
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target.instance.arn #=> String
|
25782
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target.instance.name #=> String
|
25783
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target.port #=> Integer
|
25784
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_group.id #=> String
|
25785
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_group.arn #=> String
|
25786
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_group.name #=> String
|
25787
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_groups #=> Array
|
25788
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_groups[0].id #=> String
|
25789
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_groups[0].arn #=> String
|
25790
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_groups[0].name #=> String
|
25791
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].load_balancer_target_port #=> Integer
|
25792
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].elastic_load_balancer_listener.id #=> String
|
25793
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].elastic_load_balancer_listener.arn #=> String
|
25794
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].elastic_load_balancer_listener.name #=> String
|
25795
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].missing_component #=> String
|
25796
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].nat_gateway.id #=> String
|
25797
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].nat_gateway.arn #=> String
|
25798
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].nat_gateway.name #=> String
|
25799
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].network_interface.id #=> String
|
25800
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].network_interface.arn #=> String
|
25801
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].network_interface.name #=> String
|
25802
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].packet_field #=> String
|
25803
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc_peering_connection.id #=> String
|
25804
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc_peering_connection.arn #=> String
|
25805
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc_peering_connection.name #=> String
|
25806
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].port #=> Integer
|
25807
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].port_ranges #=> Array
|
25808
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].port_ranges[0].from #=> Integer
|
25809
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].port_ranges[0].to #=> Integer
|
25810
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].prefix_list.id #=> String
|
25811
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].prefix_list.arn #=> String
|
25812
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].prefix_list.name #=> String
|
25813
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].protocols #=> Array
|
25814
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].protocols[0] #=> String
|
25815
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.destination_cidr #=> String
|
25816
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.destination_prefix_list_id #=> String
|
25817
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.egress_only_internet_gateway_id #=> String
|
25818
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.gateway_id #=> String
|
25819
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.instance_id #=> String
|
25820
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.nat_gateway_id #=> String
|
25821
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.network_interface_id #=> String
|
25822
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.origin #=> String
|
25823
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
|
25824
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
25825
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table_route.state #=> String
|
25826
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table.id #=> String
|
25827
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table.arn #=> String
|
25828
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].route_table.name #=> String
|
25829
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group.id #=> String
|
25830
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group.arn #=> String
|
25831
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group.name #=> String
|
25832
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group_rule.cidr #=> String
|
25833
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group_rule.direction #=> String
|
25834
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group_rule.security_group_id #=> String
|
25835
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group_rule.port_range.from #=> Integer
|
25836
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group_rule.port_range.to #=> Integer
|
25837
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group_rule.prefix_list_id #=> String
|
25838
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_group_rule.protocol #=> String
|
25839
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_groups #=> Array
|
25840
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_groups[0].id #=> String
|
25841
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_groups[0].arn #=> String
|
25842
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].security_groups[0].name #=> String
|
25843
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].source_vpc.id #=> String
|
25844
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].source_vpc.arn #=> String
|
25845
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].source_vpc.name #=> String
|
25846
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].state #=> String
|
25847
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].subnet.id #=> String
|
25848
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].subnet.arn #=> String
|
25849
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].subnet.name #=> String
|
25850
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].subnet_route_table.id #=> String
|
25851
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].subnet_route_table.arn #=> String
|
25852
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].subnet_route_table.name #=> String
|
25853
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc.id #=> String
|
25854
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc.arn #=> String
|
25855
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc.name #=> String
|
25856
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc_endpoint.id #=> String
|
25857
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc_endpoint.arn #=> String
|
25858
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpc_endpoint.name #=> String
|
25859
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpn_connection.id #=> String
|
25860
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpn_connection.arn #=> String
|
25861
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpn_connection.name #=> String
|
25862
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpn_gateway.id #=> String
|
25863
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpn_gateway.arn #=> String
|
25864
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].vpn_gateway.name #=> String
|
25865
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway.id #=> String
|
25866
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway.arn #=> String
|
25867
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway.name #=> String
|
25868
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table.id #=> String
|
25869
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table.arn #=> String
|
25870
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table.name #=> String
|
25871
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
|
25872
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table_route.state #=> String
|
25873
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table_route.route_origin #=> String
|
25874
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
25875
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table_route.attachment_id #=> String
|
25876
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table_route.resource_id #=> String
|
25877
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_route_table_route.resource_type #=> String
|
25878
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_attachment.id #=> String
|
25879
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_attachment.arn #=> String
|
25880
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
|
25881
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].component_account #=> String
|
25882
|
+
# resp.network_insights_analyses[0].return_path_components[0].explanations[0].component_region #=> String
|
25883
|
+
# resp.network_insights_analyses[0].return_path_components[0].elastic_load_balancer_listener.id #=> String
|
25884
|
+
# resp.network_insights_analyses[0].return_path_components[0].elastic_load_balancer_listener.arn #=> String
|
25885
|
+
# resp.network_insights_analyses[0].return_path_components[0].elastic_load_balancer_listener.name #=> String
|
25548
25886
|
# resp.network_insights_analyses[0].explanations #=> Array
|
25549
25887
|
# resp.network_insights_analyses[0].explanations[0].acl.id #=> String
|
25550
25888
|
# resp.network_insights_analyses[0].explanations[0].acl.arn #=> String
|
@@ -25637,6 +25975,7 @@ module Aws::EC2
|
|
25637
25975
|
# resp.network_insights_analyses[0].explanations[0].route_table_route.origin #=> String
|
25638
25976
|
# resp.network_insights_analyses[0].explanations[0].route_table_route.transit_gateway_id #=> String
|
25639
25977
|
# resp.network_insights_analyses[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
25978
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.state #=> String
|
25640
25979
|
# resp.network_insights_analyses[0].explanations[0].route_table.id #=> String
|
25641
25980
|
# resp.network_insights_analyses[0].explanations[0].route_table.arn #=> String
|
25642
25981
|
# resp.network_insights_analyses[0].explanations[0].route_table.name #=> String
|
@@ -25692,6 +26031,8 @@ module Aws::EC2
|
|
25692
26031
|
# resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.id #=> String
|
25693
26032
|
# resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.arn #=> String
|
25694
26033
|
# resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.name #=> String
|
26034
|
+
# resp.network_insights_analyses[0].explanations[0].component_account #=> String
|
26035
|
+
# resp.network_insights_analyses[0].explanations[0].component_region #=> String
|
25695
26036
|
# resp.network_insights_analyses[0].alternate_path_hints #=> Array
|
25696
26037
|
# resp.network_insights_analyses[0].alternate_path_hints[0].component_id #=> String
|
25697
26038
|
# resp.network_insights_analyses[0].alternate_path_hints[0].component_arn #=> String
|
@@ -25717,15 +26058,13 @@ module Aws::EC2
|
|
25717
26058
|
# @option params [Array<Types::Filter>] :filters
|
25718
26059
|
# The filters. The following are the possible values:
|
25719
26060
|
#
|
25720
|
-
# *
|
25721
|
-
#
|
25722
|
-
# * DestinationPort - The destination port.
|
26061
|
+
# * destination - The ID of the resource.
|
25723
26062
|
#
|
25724
|
-
# *
|
26063
|
+
# * destination-port - The destination port.
|
25725
26064
|
#
|
25726
|
-
# *
|
26065
|
+
# * protocol - The protocol.
|
25727
26066
|
#
|
25728
|
-
# *
|
26067
|
+
# * source - The ID of the resource.
|
25729
26068
|
#
|
25730
26069
|
# @option params [Integer] :max_results
|
25731
26070
|
# The maximum number of results to return with a single call. To
|
@@ -25927,7 +26266,7 @@ module Aws::EC2
|
|
25927
26266
|
# Describes the permissions for your network interfaces.
|
25928
26267
|
#
|
25929
26268
|
# @option params [Array<String>] :network_interface_permission_ids
|
25930
|
-
#
|
26269
|
+
# The network interface permission IDs.
|
25931
26270
|
#
|
25932
26271
|
# @option params [Array<Types::Filter>] :filters
|
25933
26272
|
# One or more filters.
|
@@ -26124,7 +26463,7 @@ module Aws::EC2
|
|
26124
26463
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
26125
26464
|
#
|
26126
26465
|
# @option params [Array<String>] :network_interface_ids
|
26127
|
-
#
|
26466
|
+
# The network interface IDs.
|
26128
26467
|
#
|
26129
26468
|
# Default: Describes all your network interfaces.
|
26130
26469
|
#
|
@@ -28044,10 +28383,10 @@ module Aws::EC2
|
|
28044
28383
|
# and [Security groups for your VPC][2] in the *Amazon Virtual Private
|
28045
28384
|
# Cloud User Guide*.
|
28046
28385
|
#
|
28047
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
28048
|
-
#
|
28049
|
-
#
|
28050
|
-
#
|
28386
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
28387
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
28388
|
+
# EC2-Classic to a VPC][3] in the *Amazon Elastic Compute Cloud User
|
28389
|
+
# Guide*.
|
28051
28390
|
#
|
28052
28391
|
# </note>
|
28053
28392
|
#
|
@@ -29977,10 +30316,22 @@ module Aws::EC2
|
|
29977
30316
|
# to be returned for the subnet. You can also use `cidr` or
|
29978
30317
|
# `cidrBlock` as the filter names.
|
29979
30318
|
#
|
30319
|
+
# * `customer-owned-ipv4-pool` - The customer-owned IPv4 address pool
|
30320
|
+
# associated with the subnet.
|
30321
|
+
#
|
29980
30322
|
# * `default-for-az` - Indicates whether this is the default subnet for
|
29981
30323
|
# the Availability Zone (`true` \| `false`). You can also use
|
29982
30324
|
# `defaultForAz` as the filter name.
|
29983
30325
|
#
|
30326
|
+
# * `enable-dns64` - Indicates whether DNS queries made to the
|
30327
|
+
# Amazon-provided DNS Resolver in this subnet should return synthetic
|
30328
|
+
# IPv6 addresses for IPv4-only destinations.
|
30329
|
+
#
|
30330
|
+
# * `enable-lni-at-device-index` - Indicates the device position for
|
30331
|
+
# local network interfaces in this subnet. For example, `1` indicates
|
30332
|
+
# local network interfaces in this subnet are the secondary network
|
30333
|
+
# interface (eth1).
|
30334
|
+
#
|
29984
30335
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
29985
30336
|
# associated with the subnet.
|
29986
30337
|
#
|
@@ -29993,11 +30344,33 @@ module Aws::EC2
|
|
29993
30344
|
# * `ipv6-native` - Indicates whether this is an IPv6 only subnet
|
29994
30345
|
# (`true` \| `false`).
|
29995
30346
|
#
|
30347
|
+
# * `map-customer-owned-ip-on-launch` - Indicates whether a network
|
30348
|
+
# interface created in this subnet (including a network interface
|
30349
|
+
# created by RunInstances) receives a customer-owned IPv4 address.
|
30350
|
+
#
|
30351
|
+
# * `map-public-ip-on-launch` - Indicates whether instances launched in
|
30352
|
+
# this subnet receive a public IPv4 address.
|
30353
|
+
#
|
29996
30354
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
29997
30355
|
#
|
29998
30356
|
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
29999
30357
|
# subnet.
|
30000
30358
|
#
|
30359
|
+
# * `private-dns-name-options-on-launch.hostname-type` - The type of
|
30360
|
+
# hostname to assign to instances in the subnet at launch. For
|
30361
|
+
# IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
|
30362
|
+
# name can be based on the instance IPv4 address (ip-name) or the
|
30363
|
+
# instance ID (resource-name). For IPv6 only subnets, an instance DNS
|
30364
|
+
# name must be based on the instance ID (resource-name).
|
30365
|
+
#
|
30366
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-a-record`
|
30367
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
30368
|
+
# with DNS A records.
|
30369
|
+
#
|
30370
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record`
|
30371
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
30372
|
+
# with DNS AAAA records.
|
30373
|
+
#
|
30001
30374
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
30002
30375
|
#
|
30003
30376
|
# * `subnet-arn` - The Amazon Resource Name (ARN) of the subnet.
|
@@ -34266,10 +34639,10 @@ module Aws::EC2
|
|
34266
34639
|
# in a VPC. For more information, see [Elastic IP Addresses][1] in the
|
34267
34640
|
# *Amazon Elastic Compute Cloud User Guide*.
|
34268
34641
|
#
|
34269
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
34270
|
-
#
|
34271
|
-
#
|
34272
|
-
#
|
34642
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
34643
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
34644
|
+
# EC2-Classic to a VPC][2] in the *Amazon Elastic Compute Cloud User
|
34645
|
+
# Guide*.
|
34273
34646
|
#
|
34274
34647
|
# </note>
|
34275
34648
|
#
|
@@ -37354,6 +37727,7 @@ module Aws::EC2
|
|
37354
37727
|
# resp.analysis_findings[0].finding_components[0].route_table_route.origin #=> String
|
37355
37728
|
# resp.analysis_findings[0].finding_components[0].route_table_route.transit_gateway_id #=> String
|
37356
37729
|
# resp.analysis_findings[0].finding_components[0].route_table_route.vpc_peering_connection_id #=> String
|
37730
|
+
# resp.analysis_findings[0].finding_components[0].route_table_route.state #=> String
|
37357
37731
|
# resp.analysis_findings[0].finding_components[0].security_group_rule.cidr #=> String
|
37358
37732
|
# resp.analysis_findings[0].finding_components[0].security_group_rule.direction #=> String
|
37359
37733
|
# resp.analysis_findings[0].finding_components[0].security_group_rule.security_group_id #=> String
|
@@ -37385,6 +37759,159 @@ module Aws::EC2
|
|
37385
37759
|
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
37386
37760
|
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.resource_id #=> String
|
37387
37761
|
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.resource_type #=> String
|
37762
|
+
# resp.analysis_findings[0].finding_components[0].explanations #=> Array
|
37763
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl.id #=> String
|
37764
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl.arn #=> String
|
37765
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl.name #=> String
|
37766
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl_rule.cidr #=> String
|
37767
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl_rule.egress #=> Boolean
|
37768
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl_rule.port_range.from #=> Integer
|
37769
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl_rule.port_range.to #=> Integer
|
37770
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl_rule.protocol #=> String
|
37771
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl_rule.rule_action #=> String
|
37772
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].acl_rule.rule_number #=> Integer
|
37773
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].address #=> String
|
37774
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].addresses #=> Array
|
37775
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].addresses[0] #=> String
|
37776
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].attached_to.id #=> String
|
37777
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].attached_to.arn #=> String
|
37778
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].attached_to.name #=> String
|
37779
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].availability_zones #=> Array
|
37780
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].availability_zones[0] #=> String
|
37781
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].cidrs #=> Array
|
37782
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].cidrs[0] #=> String
|
37783
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].component.id #=> String
|
37784
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].component.arn #=> String
|
37785
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].component.name #=> String
|
37786
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].customer_gateway.id #=> String
|
37787
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].customer_gateway.arn #=> String
|
37788
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].customer_gateway.name #=> String
|
37789
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].destination.id #=> String
|
37790
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].destination.arn #=> String
|
37791
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].destination.name #=> String
|
37792
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].destination_vpc.id #=> String
|
37793
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].destination_vpc.arn #=> String
|
37794
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].destination_vpc.name #=> String
|
37795
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].direction #=> String
|
37796
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].explanation_code #=> String
|
37797
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].ingress_route_table.id #=> String
|
37798
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].ingress_route_table.arn #=> String
|
37799
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].ingress_route_table.name #=> String
|
37800
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].internet_gateway.id #=> String
|
37801
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].internet_gateway.arn #=> String
|
37802
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].internet_gateway.name #=> String
|
37803
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_arn #=> String
|
37804
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].classic_load_balancer_listener.load_balancer_port #=> Integer
|
37805
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].classic_load_balancer_listener.instance_port #=> Integer
|
37806
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_listener_port #=> Integer
|
37807
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target.address #=> String
|
37808
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target.availability_zone #=> String
|
37809
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target.instance.id #=> String
|
37810
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target.instance.arn #=> String
|
37811
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target.instance.name #=> String
|
37812
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target.port #=> Integer
|
37813
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_group.id #=> String
|
37814
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_group.arn #=> String
|
37815
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_group.name #=> String
|
37816
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_groups #=> Array
|
37817
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_groups[0].id #=> String
|
37818
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_groups[0].arn #=> String
|
37819
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_groups[0].name #=> String
|
37820
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].load_balancer_target_port #=> Integer
|
37821
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].elastic_load_balancer_listener.id #=> String
|
37822
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].elastic_load_balancer_listener.arn #=> String
|
37823
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].elastic_load_balancer_listener.name #=> String
|
37824
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].missing_component #=> String
|
37825
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].nat_gateway.id #=> String
|
37826
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].nat_gateway.arn #=> String
|
37827
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].nat_gateway.name #=> String
|
37828
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].network_interface.id #=> String
|
37829
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].network_interface.arn #=> String
|
37830
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].network_interface.name #=> String
|
37831
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].packet_field #=> String
|
37832
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc_peering_connection.id #=> String
|
37833
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc_peering_connection.arn #=> String
|
37834
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc_peering_connection.name #=> String
|
37835
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].port #=> Integer
|
37836
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].port_ranges #=> Array
|
37837
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].port_ranges[0].from #=> Integer
|
37838
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].port_ranges[0].to #=> Integer
|
37839
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].prefix_list.id #=> String
|
37840
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].prefix_list.arn #=> String
|
37841
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].prefix_list.name #=> String
|
37842
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].protocols #=> Array
|
37843
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].protocols[0] #=> String
|
37844
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.destination_cidr #=> String
|
37845
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.destination_prefix_list_id #=> String
|
37846
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.egress_only_internet_gateway_id #=> String
|
37847
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.gateway_id #=> String
|
37848
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.instance_id #=> String
|
37849
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.nat_gateway_id #=> String
|
37850
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.network_interface_id #=> String
|
37851
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.origin #=> String
|
37852
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
|
37853
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
37854
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table_route.state #=> String
|
37855
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table.id #=> String
|
37856
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table.arn #=> String
|
37857
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].route_table.name #=> String
|
37858
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group.id #=> String
|
37859
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group.arn #=> String
|
37860
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group.name #=> String
|
37861
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group_rule.cidr #=> String
|
37862
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group_rule.direction #=> String
|
37863
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group_rule.security_group_id #=> String
|
37864
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group_rule.port_range.from #=> Integer
|
37865
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group_rule.port_range.to #=> Integer
|
37866
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group_rule.prefix_list_id #=> String
|
37867
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_group_rule.protocol #=> String
|
37868
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_groups #=> Array
|
37869
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_groups[0].id #=> String
|
37870
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_groups[0].arn #=> String
|
37871
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].security_groups[0].name #=> String
|
37872
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].source_vpc.id #=> String
|
37873
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].source_vpc.arn #=> String
|
37874
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].source_vpc.name #=> String
|
37875
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].state #=> String
|
37876
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].subnet.id #=> String
|
37877
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].subnet.arn #=> String
|
37878
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].subnet.name #=> String
|
37879
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].subnet_route_table.id #=> String
|
37880
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].subnet_route_table.arn #=> String
|
37881
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].subnet_route_table.name #=> String
|
37882
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc.id #=> String
|
37883
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc.arn #=> String
|
37884
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc.name #=> String
|
37885
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc_endpoint.id #=> String
|
37886
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc_endpoint.arn #=> String
|
37887
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpc_endpoint.name #=> String
|
37888
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpn_connection.id #=> String
|
37889
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpn_connection.arn #=> String
|
37890
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpn_connection.name #=> String
|
37891
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpn_gateway.id #=> String
|
37892
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpn_gateway.arn #=> String
|
37893
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].vpn_gateway.name #=> String
|
37894
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway.id #=> String
|
37895
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway.arn #=> String
|
37896
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway.name #=> String
|
37897
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table.id #=> String
|
37898
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table.arn #=> String
|
37899
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table.name #=> String
|
37900
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
|
37901
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table_route.state #=> String
|
37902
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table_route.route_origin #=> String
|
37903
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
37904
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table_route.attachment_id #=> String
|
37905
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table_route.resource_id #=> String
|
37906
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_route_table_route.resource_type #=> String
|
37907
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_attachment.id #=> String
|
37908
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_attachment.arn #=> String
|
37909
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].transit_gateway_attachment.name #=> String
|
37910
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].component_account #=> String
|
37911
|
+
# resp.analysis_findings[0].finding_components[0].explanations[0].component_region #=> String
|
37912
|
+
# resp.analysis_findings[0].finding_components[0].elastic_load_balancer_listener.id #=> String
|
37913
|
+
# resp.analysis_findings[0].finding_components[0].elastic_load_balancer_listener.arn #=> String
|
37914
|
+
# resp.analysis_findings[0].finding_components[0].elastic_load_balancer_listener.name #=> String
|
37388
37915
|
# resp.next_token #=> String
|
37389
37916
|
#
|
37390
37917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetNetworkInsightsAccessScopeAnalysisFindings AWS API Documentation
|
@@ -38614,6 +39141,11 @@ module Aws::EC2
|
|
38614
39141
|
# Import single or multi-volume disk images or EBS snapshots into an
|
38615
39142
|
# Amazon Machine Image (AMI).
|
38616
39143
|
#
|
39144
|
+
# Amazon Web Services VM Import/Export strongly recommends specifying a
|
39145
|
+
# value for either the `--license-type` or `--usage-operation` parameter
|
39146
|
+
# when you create a new VM Import task. This ensures your operating
|
39147
|
+
# system is licensed appropriately and your billing is optimized.
|
39148
|
+
#
|
38617
39149
|
# For more information, see [Importing a VM as an image using VM
|
38618
39150
|
# Import/Export][1] in the *VM Import/Export User Guide*.
|
38619
39151
|
#
|
@@ -38703,11 +39235,12 @@ module Aws::EC2
|
|
38703
39235
|
# The license type to be used for the Amazon Machine Image (AMI) after
|
38704
39236
|
# importing.
|
38705
39237
|
#
|
38706
|
-
#
|
38707
|
-
#
|
38708
|
-
#
|
38709
|
-
#
|
38710
|
-
#
|
39238
|
+
# Specify `AWS` to replace the source-system license with an Amazon Web
|
39239
|
+
# Services license or `BYOL` to retain the source-system license.
|
39240
|
+
# Leaving this parameter undefined is the same as choosing `AWS` when
|
39241
|
+
# importing a Windows Server operating system, and the same as choosing
|
39242
|
+
# `BYOL` when importing a Windows client operating system (such as
|
39243
|
+
# Windows 10) or a Linux operating system.
|
38711
39244
|
#
|
38712
39245
|
# To use `BYOL`, you must have existing licenses with rights to use
|
38713
39246
|
# these licenses in a third party cloud, such as Amazon Web Services.
|
@@ -40639,7 +41172,14 @@ module Aws::EC2
|
|
40639
41172
|
# services such as network address translation, routing, or firewalls.
|
40640
41173
|
#
|
40641
41174
|
# @option params [String] :attribute
|
40642
|
-
# The name of the attribute.
|
41175
|
+
# The name of the attribute to modify.
|
41176
|
+
#
|
41177
|
+
# You can modify the following attributes only: `disableApiTermination`
|
41178
|
+
# \| `instanceType` \| `kernel` \| `ramdisk` \|
|
41179
|
+
# `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
41180
|
+
# `userData` \| `sourceDestCheck` \| `groupSet` \| `ebsOptimized` \|
|
41181
|
+
# `sriovNetSupport` \| `enaSupport` \| `nvmeSupport` \| `disableApiStop`
|
41182
|
+
# \| `enclaveOptions`
|
40643
41183
|
#
|
40644
41184
|
# @option params [Array<Types::InstanceBlockDeviceMappingSpecification>] :block_device_mappings
|
40645
41185
|
# Modifies the `DeleteOnTermination` attribute for volumes that are
|
@@ -44583,10 +45123,10 @@ module Aws::EC2
|
|
44583
45123
|
# IP address that was originally allocated for use in the EC2-VPC
|
44584
45124
|
# platform to the EC2-Classic platform.
|
44585
45125
|
#
|
44586
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
44587
|
-
#
|
44588
|
-
#
|
44589
|
-
#
|
45126
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
45127
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
45128
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
45129
|
+
# Guide*.
|
44590
45130
|
#
|
44591
45131
|
# </note>
|
44592
45132
|
#
|
@@ -45927,10 +46467,10 @@ module Aws::EC2
|
|
45927
46467
|
# with. To disassociate an Elastic IP address without releasing it, use
|
45928
46468
|
# DisassociateAddress.
|
45929
46469
|
#
|
45930
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
45931
|
-
#
|
45932
|
-
#
|
45933
|
-
#
|
46470
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
46471
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
46472
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
46473
|
+
# Guide*.
|
45934
46474
|
#
|
45935
46475
|
# </note>
|
45936
46476
|
#
|
@@ -47877,10 +48417,10 @@ module Aws::EC2
|
|
47877
48417
|
# The Elastic IP address must not be associated with an instance or
|
47878
48418
|
# network interface.
|
47879
48419
|
#
|
47880
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
47881
|
-
#
|
47882
|
-
#
|
47883
|
-
#
|
48420
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
48421
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
48422
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
48423
|
+
# Guide*.
|
47884
48424
|
#
|
47885
48425
|
# </note>
|
47886
48426
|
#
|
@@ -48381,10 +48921,10 @@ module Aws::EC2
|
|
48381
48921
|
# Rule changes are propagated to instances within the security group as
|
48382
48922
|
# quickly as possible. However, a small delay might occur.
|
48383
48923
|
#
|
48384
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
48385
|
-
#
|
48386
|
-
#
|
48387
|
-
#
|
48924
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
48925
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
48926
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
48927
|
+
# Guide*.
|
48388
48928
|
#
|
48389
48929
|
# </note>
|
48390
48930
|
#
|
@@ -48408,7 +48948,8 @@ module Aws::EC2
|
|
48408
48948
|
# @option params [String] :group_name
|
48409
48949
|
# \[EC2-Classic, default VPC\] The name of the security group. You must
|
48410
48950
|
# specify either the security group ID or the security group name in the
|
48411
|
-
# request.
|
48951
|
+
# request. For security groups in a nondefault VPC, you must specify the
|
48952
|
+
# security group ID.
|
48412
48953
|
#
|
48413
48954
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
48414
48955
|
# The sets of IP permissions. You can't specify a source security group
|
@@ -50190,6 +50731,7 @@ module Aws::EC2
|
|
50190
50731
|
# resp.network_insights_analysis.forward_path_components[0].route_table_route.origin #=> String
|
50191
50732
|
# resp.network_insights_analysis.forward_path_components[0].route_table_route.transit_gateway_id #=> String
|
50192
50733
|
# resp.network_insights_analysis.forward_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
50734
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.state #=> String
|
50193
50735
|
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.cidr #=> String
|
50194
50736
|
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.direction #=> String
|
50195
50737
|
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.security_group_id #=> String
|
@@ -50221,6 +50763,159 @@ module Aws::EC2
|
|
50221
50763
|
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
50222
50764
|
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
50223
50765
|
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
50766
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations #=> Array
|
50767
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl.id #=> String
|
50768
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl.arn #=> String
|
50769
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl.name #=> String
|
50770
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl_rule.cidr #=> String
|
50771
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl_rule.egress #=> Boolean
|
50772
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl_rule.port_range.from #=> Integer
|
50773
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl_rule.port_range.to #=> Integer
|
50774
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl_rule.protocol #=> String
|
50775
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl_rule.rule_action #=> String
|
50776
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].acl_rule.rule_number #=> Integer
|
50777
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].address #=> String
|
50778
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].addresses #=> Array
|
50779
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].addresses[0] #=> String
|
50780
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].attached_to.id #=> String
|
50781
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].attached_to.arn #=> String
|
50782
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].attached_to.name #=> String
|
50783
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].availability_zones #=> Array
|
50784
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].availability_zones[0] #=> String
|
50785
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].cidrs #=> Array
|
50786
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].cidrs[0] #=> String
|
50787
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].component.id #=> String
|
50788
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].component.arn #=> String
|
50789
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].component.name #=> String
|
50790
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].customer_gateway.id #=> String
|
50791
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].customer_gateway.arn #=> String
|
50792
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].customer_gateway.name #=> String
|
50793
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].destination.id #=> String
|
50794
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].destination.arn #=> String
|
50795
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].destination.name #=> String
|
50796
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].destination_vpc.id #=> String
|
50797
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].destination_vpc.arn #=> String
|
50798
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].destination_vpc.name #=> String
|
50799
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].direction #=> String
|
50800
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].explanation_code #=> String
|
50801
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].ingress_route_table.id #=> String
|
50802
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].ingress_route_table.arn #=> String
|
50803
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].ingress_route_table.name #=> String
|
50804
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].internet_gateway.id #=> String
|
50805
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].internet_gateway.arn #=> String
|
50806
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].internet_gateway.name #=> String
|
50807
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_arn #=> String
|
50808
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].classic_load_balancer_listener.load_balancer_port #=> Integer
|
50809
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].classic_load_balancer_listener.instance_port #=> Integer
|
50810
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_listener_port #=> Integer
|
50811
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target.address #=> String
|
50812
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target.availability_zone #=> String
|
50813
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target.instance.id #=> String
|
50814
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target.instance.arn #=> String
|
50815
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target.instance.name #=> String
|
50816
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target.port #=> Integer
|
50817
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_group.id #=> String
|
50818
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_group.arn #=> String
|
50819
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_group.name #=> String
|
50820
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_groups #=> Array
|
50821
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_groups[0].id #=> String
|
50822
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_groups[0].arn #=> String
|
50823
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_groups[0].name #=> String
|
50824
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].load_balancer_target_port #=> Integer
|
50825
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].elastic_load_balancer_listener.id #=> String
|
50826
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].elastic_load_balancer_listener.arn #=> String
|
50827
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].elastic_load_balancer_listener.name #=> String
|
50828
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].missing_component #=> String
|
50829
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].nat_gateway.id #=> String
|
50830
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].nat_gateway.arn #=> String
|
50831
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].nat_gateway.name #=> String
|
50832
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].network_interface.id #=> String
|
50833
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].network_interface.arn #=> String
|
50834
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].network_interface.name #=> String
|
50835
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].packet_field #=> String
|
50836
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc_peering_connection.id #=> String
|
50837
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc_peering_connection.arn #=> String
|
50838
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc_peering_connection.name #=> String
|
50839
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].port #=> Integer
|
50840
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].port_ranges #=> Array
|
50841
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].port_ranges[0].from #=> Integer
|
50842
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].port_ranges[0].to #=> Integer
|
50843
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].prefix_list.id #=> String
|
50844
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].prefix_list.arn #=> String
|
50845
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].prefix_list.name #=> String
|
50846
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].protocols #=> Array
|
50847
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].protocols[0] #=> String
|
50848
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.destination_cidr #=> String
|
50849
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.destination_prefix_list_id #=> String
|
50850
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.egress_only_internet_gateway_id #=> String
|
50851
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.gateway_id #=> String
|
50852
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.instance_id #=> String
|
50853
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.nat_gateway_id #=> String
|
50854
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.network_interface_id #=> String
|
50855
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.origin #=> String
|
50856
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
|
50857
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
50858
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table_route.state #=> String
|
50859
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table.id #=> String
|
50860
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table.arn #=> String
|
50861
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].route_table.name #=> String
|
50862
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group.id #=> String
|
50863
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group.arn #=> String
|
50864
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group.name #=> String
|
50865
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group_rule.cidr #=> String
|
50866
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group_rule.direction #=> String
|
50867
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group_rule.security_group_id #=> String
|
50868
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group_rule.port_range.from #=> Integer
|
50869
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group_rule.port_range.to #=> Integer
|
50870
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group_rule.prefix_list_id #=> String
|
50871
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_group_rule.protocol #=> String
|
50872
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_groups #=> Array
|
50873
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_groups[0].id #=> String
|
50874
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_groups[0].arn #=> String
|
50875
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].security_groups[0].name #=> String
|
50876
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].source_vpc.id #=> String
|
50877
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].source_vpc.arn #=> String
|
50878
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].source_vpc.name #=> String
|
50879
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].state #=> String
|
50880
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].subnet.id #=> String
|
50881
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].subnet.arn #=> String
|
50882
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].subnet.name #=> String
|
50883
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].subnet_route_table.id #=> String
|
50884
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].subnet_route_table.arn #=> String
|
50885
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].subnet_route_table.name #=> String
|
50886
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc.id #=> String
|
50887
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc.arn #=> String
|
50888
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc.name #=> String
|
50889
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc_endpoint.id #=> String
|
50890
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc_endpoint.arn #=> String
|
50891
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpc_endpoint.name #=> String
|
50892
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpn_connection.id #=> String
|
50893
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpn_connection.arn #=> String
|
50894
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpn_connection.name #=> String
|
50895
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpn_gateway.id #=> String
|
50896
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpn_gateway.arn #=> String
|
50897
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].vpn_gateway.name #=> String
|
50898
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway.id #=> String
|
50899
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway.arn #=> String
|
50900
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway.name #=> String
|
50901
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table.id #=> String
|
50902
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table.arn #=> String
|
50903
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table.name #=> String
|
50904
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
|
50905
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table_route.state #=> String
|
50906
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table_route.route_origin #=> String
|
50907
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
50908
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table_route.attachment_id #=> String
|
50909
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table_route.resource_id #=> String
|
50910
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_route_table_route.resource_type #=> String
|
50911
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_attachment.id #=> String
|
50912
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_attachment.arn #=> String
|
50913
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
|
50914
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].component_account #=> String
|
50915
|
+
# resp.network_insights_analysis.forward_path_components[0].explanations[0].component_region #=> String
|
50916
|
+
# resp.network_insights_analysis.forward_path_components[0].elastic_load_balancer_listener.id #=> String
|
50917
|
+
# resp.network_insights_analysis.forward_path_components[0].elastic_load_balancer_listener.arn #=> String
|
50918
|
+
# resp.network_insights_analysis.forward_path_components[0].elastic_load_balancer_listener.name #=> String
|
50224
50919
|
# resp.network_insights_analysis.return_path_components #=> Array
|
50225
50920
|
# resp.network_insights_analysis.return_path_components[0].sequence_number #=> Integer
|
50226
50921
|
# resp.network_insights_analysis.return_path_components[0].acl_rule.cidr #=> String
|
@@ -50271,6 +50966,7 @@ module Aws::EC2
|
|
50271
50966
|
# resp.network_insights_analysis.return_path_components[0].route_table_route.origin #=> String
|
50272
50967
|
# resp.network_insights_analysis.return_path_components[0].route_table_route.transit_gateway_id #=> String
|
50273
50968
|
# resp.network_insights_analysis.return_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
50969
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.state #=> String
|
50274
50970
|
# resp.network_insights_analysis.return_path_components[0].security_group_rule.cidr #=> String
|
50275
50971
|
# resp.network_insights_analysis.return_path_components[0].security_group_rule.direction #=> String
|
50276
50972
|
# resp.network_insights_analysis.return_path_components[0].security_group_rule.security_group_id #=> String
|
@@ -50302,6 +50998,159 @@ module Aws::EC2
|
|
50302
50998
|
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
50303
50999
|
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
50304
51000
|
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
51001
|
+
# resp.network_insights_analysis.return_path_components[0].explanations #=> Array
|
51002
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl.id #=> String
|
51003
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl.arn #=> String
|
51004
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl.name #=> String
|
51005
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl_rule.cidr #=> String
|
51006
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl_rule.egress #=> Boolean
|
51007
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl_rule.port_range.from #=> Integer
|
51008
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl_rule.port_range.to #=> Integer
|
51009
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl_rule.protocol #=> String
|
51010
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl_rule.rule_action #=> String
|
51011
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].acl_rule.rule_number #=> Integer
|
51012
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].address #=> String
|
51013
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].addresses #=> Array
|
51014
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].addresses[0] #=> String
|
51015
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].attached_to.id #=> String
|
51016
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].attached_to.arn #=> String
|
51017
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].attached_to.name #=> String
|
51018
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].availability_zones #=> Array
|
51019
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].availability_zones[0] #=> String
|
51020
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].cidrs #=> Array
|
51021
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].cidrs[0] #=> String
|
51022
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].component.id #=> String
|
51023
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].component.arn #=> String
|
51024
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].component.name #=> String
|
51025
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].customer_gateway.id #=> String
|
51026
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].customer_gateway.arn #=> String
|
51027
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].customer_gateway.name #=> String
|
51028
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].destination.id #=> String
|
51029
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].destination.arn #=> String
|
51030
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].destination.name #=> String
|
51031
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].destination_vpc.id #=> String
|
51032
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].destination_vpc.arn #=> String
|
51033
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].destination_vpc.name #=> String
|
51034
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].direction #=> String
|
51035
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].explanation_code #=> String
|
51036
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].ingress_route_table.id #=> String
|
51037
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].ingress_route_table.arn #=> String
|
51038
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].ingress_route_table.name #=> String
|
51039
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].internet_gateway.id #=> String
|
51040
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].internet_gateway.arn #=> String
|
51041
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].internet_gateway.name #=> String
|
51042
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_arn #=> String
|
51043
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].classic_load_balancer_listener.load_balancer_port #=> Integer
|
51044
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].classic_load_balancer_listener.instance_port #=> Integer
|
51045
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_listener_port #=> Integer
|
51046
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target.address #=> String
|
51047
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target.availability_zone #=> String
|
51048
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target.instance.id #=> String
|
51049
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target.instance.arn #=> String
|
51050
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target.instance.name #=> String
|
51051
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target.port #=> Integer
|
51052
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_group.id #=> String
|
51053
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_group.arn #=> String
|
51054
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_group.name #=> String
|
51055
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_groups #=> Array
|
51056
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_groups[0].id #=> String
|
51057
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_groups[0].arn #=> String
|
51058
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_groups[0].name #=> String
|
51059
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].load_balancer_target_port #=> Integer
|
51060
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].elastic_load_balancer_listener.id #=> String
|
51061
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].elastic_load_balancer_listener.arn #=> String
|
51062
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].elastic_load_balancer_listener.name #=> String
|
51063
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].missing_component #=> String
|
51064
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].nat_gateway.id #=> String
|
51065
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].nat_gateway.arn #=> String
|
51066
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].nat_gateway.name #=> String
|
51067
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].network_interface.id #=> String
|
51068
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].network_interface.arn #=> String
|
51069
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].network_interface.name #=> String
|
51070
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].packet_field #=> String
|
51071
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc_peering_connection.id #=> String
|
51072
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc_peering_connection.arn #=> String
|
51073
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc_peering_connection.name #=> String
|
51074
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].port #=> Integer
|
51075
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].port_ranges #=> Array
|
51076
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].port_ranges[0].from #=> Integer
|
51077
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].port_ranges[0].to #=> Integer
|
51078
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].prefix_list.id #=> String
|
51079
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].prefix_list.arn #=> String
|
51080
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].prefix_list.name #=> String
|
51081
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].protocols #=> Array
|
51082
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].protocols[0] #=> String
|
51083
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.destination_cidr #=> String
|
51084
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.destination_prefix_list_id #=> String
|
51085
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.egress_only_internet_gateway_id #=> String
|
51086
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.gateway_id #=> String
|
51087
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.instance_id #=> String
|
51088
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.nat_gateway_id #=> String
|
51089
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.network_interface_id #=> String
|
51090
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.origin #=> String
|
51091
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.transit_gateway_id #=> String
|
51092
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
51093
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table_route.state #=> String
|
51094
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table.id #=> String
|
51095
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table.arn #=> String
|
51096
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].route_table.name #=> String
|
51097
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group.id #=> String
|
51098
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group.arn #=> String
|
51099
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group.name #=> String
|
51100
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group_rule.cidr #=> String
|
51101
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group_rule.direction #=> String
|
51102
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group_rule.security_group_id #=> String
|
51103
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group_rule.port_range.from #=> Integer
|
51104
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group_rule.port_range.to #=> Integer
|
51105
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group_rule.prefix_list_id #=> String
|
51106
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_group_rule.protocol #=> String
|
51107
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_groups #=> Array
|
51108
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_groups[0].id #=> String
|
51109
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_groups[0].arn #=> String
|
51110
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].security_groups[0].name #=> String
|
51111
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].source_vpc.id #=> String
|
51112
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].source_vpc.arn #=> String
|
51113
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].source_vpc.name #=> String
|
51114
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].state #=> String
|
51115
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].subnet.id #=> String
|
51116
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].subnet.arn #=> String
|
51117
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].subnet.name #=> String
|
51118
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].subnet_route_table.id #=> String
|
51119
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].subnet_route_table.arn #=> String
|
51120
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].subnet_route_table.name #=> String
|
51121
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc.id #=> String
|
51122
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc.arn #=> String
|
51123
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc.name #=> String
|
51124
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc_endpoint.id #=> String
|
51125
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc_endpoint.arn #=> String
|
51126
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpc_endpoint.name #=> String
|
51127
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpn_connection.id #=> String
|
51128
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpn_connection.arn #=> String
|
51129
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpn_connection.name #=> String
|
51130
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpn_gateway.id #=> String
|
51131
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpn_gateway.arn #=> String
|
51132
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].vpn_gateway.name #=> String
|
51133
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway.id #=> String
|
51134
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway.arn #=> String
|
51135
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway.name #=> String
|
51136
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table.id #=> String
|
51137
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table.arn #=> String
|
51138
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table.name #=> String
|
51139
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
|
51140
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table_route.state #=> String
|
51141
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table_route.route_origin #=> String
|
51142
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
51143
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table_route.attachment_id #=> String
|
51144
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table_route.resource_id #=> String
|
51145
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_route_table_route.resource_type #=> String
|
51146
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_attachment.id #=> String
|
51147
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_attachment.arn #=> String
|
51148
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].transit_gateway_attachment.name #=> String
|
51149
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].component_account #=> String
|
51150
|
+
# resp.network_insights_analysis.return_path_components[0].explanations[0].component_region #=> String
|
51151
|
+
# resp.network_insights_analysis.return_path_components[0].elastic_load_balancer_listener.id #=> String
|
51152
|
+
# resp.network_insights_analysis.return_path_components[0].elastic_load_balancer_listener.arn #=> String
|
51153
|
+
# resp.network_insights_analysis.return_path_components[0].elastic_load_balancer_listener.name #=> String
|
50305
51154
|
# resp.network_insights_analysis.explanations #=> Array
|
50306
51155
|
# resp.network_insights_analysis.explanations[0].acl.id #=> String
|
50307
51156
|
# resp.network_insights_analysis.explanations[0].acl.arn #=> String
|
@@ -50394,6 +51243,7 @@ module Aws::EC2
|
|
50394
51243
|
# resp.network_insights_analysis.explanations[0].route_table_route.origin #=> String
|
50395
51244
|
# resp.network_insights_analysis.explanations[0].route_table_route.transit_gateway_id #=> String
|
50396
51245
|
# resp.network_insights_analysis.explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
51246
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.state #=> String
|
50397
51247
|
# resp.network_insights_analysis.explanations[0].route_table.id #=> String
|
50398
51248
|
# resp.network_insights_analysis.explanations[0].route_table.arn #=> String
|
50399
51249
|
# resp.network_insights_analysis.explanations[0].route_table.name #=> String
|
@@ -50449,6 +51299,8 @@ module Aws::EC2
|
|
50449
51299
|
# resp.network_insights_analysis.explanations[0].transit_gateway_attachment.id #=> String
|
50450
51300
|
# resp.network_insights_analysis.explanations[0].transit_gateway_attachment.arn #=> String
|
50451
51301
|
# resp.network_insights_analysis.explanations[0].transit_gateway_attachment.name #=> String
|
51302
|
+
# resp.network_insights_analysis.explanations[0].component_account #=> String
|
51303
|
+
# resp.network_insights_analysis.explanations[0].component_region #=> String
|
50452
51304
|
# resp.network_insights_analysis.alternate_path_hints #=> Array
|
50453
51305
|
# resp.network_insights_analysis.alternate_path_hints[0].component_id #=> String
|
50454
51306
|
# resp.network_insights_analysis.alternate_path_hints[0].component_arn #=> String
|
@@ -50844,7 +51696,7 @@ module Aws::EC2
|
|
50844
51696
|
# The IPv6 addresses to unassign from the network interface.
|
50845
51697
|
#
|
50846
51698
|
# @option params [Array<String>] :ipv_6_prefixes
|
50847
|
-
#
|
51699
|
+
# The IPv6 prefixes to unassign from the network interface.
|
50848
51700
|
#
|
50849
51701
|
# @option params [required, String] :network_interface_id
|
50850
51702
|
# The ID of the network interface.
|
@@ -51111,7 +51963,8 @@ module Aws::EC2
|
|
51111
51963
|
# @option params [String] :group_name
|
51112
51964
|
# \[EC2-Classic, default VPC\] The name of the security group. You must
|
51113
51965
|
# specify either the security group ID or the security group name in the
|
51114
|
-
# request.
|
51966
|
+
# request. For security groups in a nondefault VPC, you must specify the
|
51967
|
+
# security group ID.
|
51115
51968
|
#
|
51116
51969
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
51117
51970
|
# The IP permissions for the security group rule. You must specify
|
@@ -51273,7 +52126,7 @@ module Aws::EC2
|
|
51273
52126
|
params: params,
|
51274
52127
|
config: config)
|
51275
52128
|
context[:gem_name] = 'aws-sdk-ec2'
|
51276
|
-
context[:gem_version] = '1.
|
52129
|
+
context[:gem_version] = '1.337.0'
|
51277
52130
|
Seahorse::Client::Request.new(handlers, context)
|
51278
52131
|
end
|
51279
52132
|
|