aws-sdk-ec2 1.215.0 → 1.216.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +1533 -89
- data/lib/aws-sdk-ec2/client_api.rb +594 -2
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +16 -16
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +2093 -81
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cce1900ca95a9c49f46ae31f651d1c30f3dafd1c067cceef76ba01c380cb0886
|
4
|
+
data.tar.gz: 51e960ae7ea2c304b3bdac4b7a1172a103f77ba6ec3b6b2598b43dbd86096ff2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7e263c80c95cddd5682e99b23297ca80a97e9e46348bfad437241cb470bf1e1fa250473992e19abce51f9243da125f7840532c2d7862bea59fa64fe253a4f4e
|
7
|
+
data.tar.gz: a0f7981ad5f558ca94edac69ef79c8cf448ef0c639c3ba0d602d6ba76be39d996761168304ca8c9f3cda66c7303ebceaa31846a4d7eed2010f959da0b7014737
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -378,6 +378,58 @@ module Aws::EC2
|
|
378
378
|
req.send_request(options)
|
379
379
|
end
|
380
380
|
|
381
|
+
# Accepts a request to associate subnets with a transit gateway
|
382
|
+
# multicast domain.
|
383
|
+
#
|
384
|
+
# @option params [String] :transit_gateway_multicast_domain_id
|
385
|
+
# The ID of the transit gateway multicast domain.
|
386
|
+
#
|
387
|
+
# @option params [String] :transit_gateway_attachment_id
|
388
|
+
# The ID of the transit gateway attachment.
|
389
|
+
#
|
390
|
+
# @option params [Array<String>] :subnet_ids
|
391
|
+
# The IDs of the subnets to associate with the transit gateway multicast
|
392
|
+
# domain.
|
393
|
+
#
|
394
|
+
# @option params [Boolean] :dry_run
|
395
|
+
# Checks whether you have the required permissions for the action,
|
396
|
+
# without actually making the request, and provides an error response.
|
397
|
+
# If you have the required permissions, the error response is
|
398
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
399
|
+
#
|
400
|
+
# @return [Types::AcceptTransitGatewayMulticastDomainAssociationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
401
|
+
#
|
402
|
+
# * {Types::AcceptTransitGatewayMulticastDomainAssociationsResult#associations #associations} => Types::TransitGatewayMulticastDomainAssociations
|
403
|
+
#
|
404
|
+
# @example Request syntax with placeholder values
|
405
|
+
#
|
406
|
+
# resp = client.accept_transit_gateway_multicast_domain_associations({
|
407
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
408
|
+
# transit_gateway_attachment_id: "TransitGatewayAttachmentId",
|
409
|
+
# subnet_ids: ["String"],
|
410
|
+
# dry_run: false,
|
411
|
+
# })
|
412
|
+
#
|
413
|
+
# @example Response structure
|
414
|
+
#
|
415
|
+
# resp.associations.transit_gateway_multicast_domain_id #=> String
|
416
|
+
# resp.associations.transit_gateway_attachment_id #=> String
|
417
|
+
# resp.associations.resource_id #=> String
|
418
|
+
# resp.associations.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
419
|
+
# resp.associations.resource_owner_id #=> String
|
420
|
+
# resp.associations.subnets #=> Array
|
421
|
+
# resp.associations.subnets[0].subnet_id #=> String
|
422
|
+
# resp.associations.subnets[0].state #=> String, one of "pendingAcceptance", "associating", "associated", "disassociating", "disassociated", "rejected", "failed"
|
423
|
+
#
|
424
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptTransitGatewayMulticastDomainAssociations AWS API Documentation
|
425
|
+
#
|
426
|
+
# @overload accept_transit_gateway_multicast_domain_associations(params = {})
|
427
|
+
# @param [Hash] params ({})
|
428
|
+
def accept_transit_gateway_multicast_domain_associations(params = {}, options = {})
|
429
|
+
req = build_request(:accept_transit_gateway_multicast_domain_associations, params)
|
430
|
+
req.send_request(options)
|
431
|
+
end
|
432
|
+
|
381
433
|
# Accepts a transit gateway peering attachment request. The peering
|
382
434
|
# attachment must be in the `pendingAcceptance` state.
|
383
435
|
#
|
@@ -885,7 +937,7 @@ module Aws::EC2
|
|
885
937
|
# quantity: 1, # required
|
886
938
|
# tag_specifications: [
|
887
939
|
# {
|
888
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
940
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
889
941
|
# tags: [
|
890
942
|
# {
|
891
943
|
# key: "String",
|
@@ -1686,7 +1738,7 @@ module Aws::EC2
|
|
1686
1738
|
# resp = client.associate_transit_gateway_multicast_domain({
|
1687
1739
|
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
1688
1740
|
# transit_gateway_attachment_id: "TransitGatewayAttachmentId",
|
1689
|
-
# subnet_ids: ["
|
1741
|
+
# subnet_ids: ["SubnetId"],
|
1690
1742
|
# dry_run: false,
|
1691
1743
|
# })
|
1692
1744
|
#
|
@@ -1695,10 +1747,11 @@ module Aws::EC2
|
|
1695
1747
|
# resp.associations.transit_gateway_multicast_domain_id #=> String
|
1696
1748
|
# resp.associations.transit_gateway_attachment_id #=> String
|
1697
1749
|
# resp.associations.resource_id #=> String
|
1698
|
-
# resp.associations.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
1750
|
+
# resp.associations.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
1751
|
+
# resp.associations.resource_owner_id #=> String
|
1699
1752
|
# resp.associations.subnets #=> Array
|
1700
1753
|
# resp.associations.subnets[0].subnet_id #=> String
|
1701
|
-
# resp.associations.subnets[0].state #=> String, one of "associating", "associated", "disassociating", "disassociated"
|
1754
|
+
# resp.associations.subnets[0].state #=> String, one of "pendingAcceptance", "associating", "associated", "disassociating", "disassociated", "rejected", "failed"
|
1702
1755
|
#
|
1703
1756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateTransitGatewayMulticastDomain AWS API Documentation
|
1704
1757
|
#
|
@@ -1742,7 +1795,7 @@ module Aws::EC2
|
|
1742
1795
|
# resp.association.transit_gateway_route_table_id #=> String
|
1743
1796
|
# resp.association.transit_gateway_attachment_id #=> String
|
1744
1797
|
# resp.association.resource_id #=> String
|
1745
|
-
# resp.association.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
1798
|
+
# resp.association.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
1746
1799
|
# resp.association.state #=> String, one of "associating", "associated", "disassociating", "disassociated"
|
1747
1800
|
#
|
1748
1801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateTransitGatewayRouteTable AWS API Documentation
|
@@ -3558,7 +3611,7 @@ module Aws::EC2
|
|
3558
3611
|
# source_snapshot_id: "String", # required
|
3559
3612
|
# tag_specifications: [
|
3560
3613
|
# {
|
3561
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
3614
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
3562
3615
|
# tags: [
|
3563
3616
|
# {
|
3564
3617
|
# key: "String",
|
@@ -3744,7 +3797,7 @@ module Aws::EC2
|
|
3744
3797
|
# instance_match_criteria: "open", # accepts open, targeted
|
3745
3798
|
# tag_specifications: [
|
3746
3799
|
# {
|
3747
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
3800
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
3748
3801
|
# tags: [
|
3749
3802
|
# {
|
3750
3803
|
# key: "String",
|
@@ -3830,7 +3883,7 @@ module Aws::EC2
|
|
3830
3883
|
# vpc_id: "VpcId", # required
|
3831
3884
|
# tag_specifications: [
|
3832
3885
|
# {
|
3833
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
3886
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
3834
3887
|
# tags: [
|
3835
3888
|
# {
|
3836
3889
|
# key: "String",
|
@@ -4019,7 +4072,7 @@ module Aws::EC2
|
|
4019
4072
|
# client_token: "String",
|
4020
4073
|
# tag_specifications: [
|
4021
4074
|
# {
|
4022
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4075
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4023
4076
|
# tags: [
|
4024
4077
|
# {
|
4025
4078
|
# key: "String",
|
@@ -4236,7 +4289,7 @@ module Aws::EC2
|
|
4236
4289
|
# type: "ipsec.1", # required, accepts ipsec.1
|
4237
4290
|
# tag_specifications: [
|
4238
4291
|
# {
|
4239
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4292
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4240
4293
|
# tags: [
|
4241
4294
|
# {
|
4242
4295
|
# key: "String",
|
@@ -4520,7 +4573,7 @@ module Aws::EC2
|
|
4520
4573
|
# ],
|
4521
4574
|
# tag_specifications: [
|
4522
4575
|
# {
|
4523
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4576
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4524
4577
|
# tags: [
|
4525
4578
|
# {
|
4526
4579
|
# key: "String",
|
@@ -4594,7 +4647,7 @@ module Aws::EC2
|
|
4594
4647
|
# vpc_id: "VpcId", # required
|
4595
4648
|
# tag_specifications: [
|
4596
4649
|
# {
|
4597
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4650
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4598
4651
|
# tags: [
|
4599
4652
|
# {
|
4600
4653
|
# key: "String",
|
@@ -4801,7 +4854,7 @@ module Aws::EC2
|
|
4801
4854
|
# replace_unhealthy_instances: false,
|
4802
4855
|
# tag_specifications: [
|
4803
4856
|
# {
|
4804
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4857
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
4805
4858
|
# tags: [
|
4806
4859
|
# {
|
4807
4860
|
# key: "String",
|
@@ -5007,7 +5060,7 @@ module Aws::EC2
|
|
5007
5060
|
# log_format: "String",
|
5008
5061
|
# tag_specifications: [
|
5009
5062
|
# {
|
5010
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5063
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5011
5064
|
# tags: [
|
5012
5065
|
# {
|
5013
5066
|
# key: "String",
|
@@ -5106,7 +5159,7 @@ module Aws::EC2
|
|
5106
5159
|
# client_token: "String",
|
5107
5160
|
# tag_specifications: [
|
5108
5161
|
# {
|
5109
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5162
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5110
5163
|
# tags: [
|
5111
5164
|
# {
|
5112
5165
|
# key: "String",
|
@@ -5259,7 +5312,7 @@ module Aws::EC2
|
|
5259
5312
|
# no_reboot: false,
|
5260
5313
|
# tag_specifications: [
|
5261
5314
|
# {
|
5262
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5315
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5263
5316
|
# tags: [
|
5264
5317
|
# {
|
5265
5318
|
# key: "String",
|
@@ -5328,7 +5381,7 @@ module Aws::EC2
|
|
5328
5381
|
# target_environment: "citrix", # required, accepts citrix, vmware, microsoft
|
5329
5382
|
# tag_specifications: [
|
5330
5383
|
# {
|
5331
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5384
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5332
5385
|
# tags: [
|
5333
5386
|
# {
|
5334
5387
|
# key: "String",
|
@@ -5411,7 +5464,7 @@ module Aws::EC2
|
|
5411
5464
|
# resp = client.create_internet_gateway({
|
5412
5465
|
# tag_specifications: [
|
5413
5466
|
# {
|
5414
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5467
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5415
5468
|
# tags: [
|
5416
5469
|
# {
|
5417
5470
|
# key: "String",
|
@@ -5500,7 +5553,7 @@ module Aws::EC2
|
|
5500
5553
|
# dry_run: false,
|
5501
5554
|
# tag_specifications: [
|
5502
5555
|
# {
|
5503
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5556
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5504
5557
|
# tags: [
|
5505
5558
|
# {
|
5506
5559
|
# key: "String",
|
@@ -5702,7 +5755,7 @@ module Aws::EC2
|
|
5702
5755
|
# user_data: "String",
|
5703
5756
|
# tag_specifications: [
|
5704
5757
|
# {
|
5705
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5758
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5706
5759
|
# tags: [
|
5707
5760
|
# {
|
5708
5761
|
# key: "String",
|
@@ -5767,7 +5820,7 @@ module Aws::EC2
|
|
5767
5820
|
# },
|
5768
5821
|
# tag_specifications: [
|
5769
5822
|
# {
|
5770
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5823
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5771
5824
|
# tags: [
|
5772
5825
|
# {
|
5773
5826
|
# key: "String",
|
@@ -5988,7 +6041,7 @@ module Aws::EC2
|
|
5988
6041
|
# user_data: "String",
|
5989
6042
|
# tag_specifications: [
|
5990
6043
|
# {
|
5991
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6044
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5992
6045
|
# tags: [
|
5993
6046
|
# {
|
5994
6047
|
# key: "String",
|
@@ -6115,7 +6168,7 @@ module Aws::EC2
|
|
6115
6168
|
# resp.launch_template_version.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
|
6116
6169
|
# resp.launch_template_version.launch_template_data.user_data #=> String
|
6117
6170
|
# resp.launch_template_version.launch_template_data.tag_specifications #=> Array
|
6118
|
-
# resp.launch_template_version.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
6171
|
+
# resp.launch_template_version.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "network-insights-analysis", "network-insights-path", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-connect-peer", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
6119
6172
|
# resp.launch_template_version.launch_template_data.tag_specifications[0].tags #=> Array
|
6120
6173
|
# resp.launch_template_version.launch_template_data.tag_specifications[0].tags[0].key #=> String
|
6121
6174
|
# resp.launch_template_version.launch_template_data.tag_specifications[0].tags[0].value #=> String
|
@@ -6240,7 +6293,7 @@ module Aws::EC2
|
|
6240
6293
|
# vpc_id: "VpcId", # required
|
6241
6294
|
# tag_specifications: [
|
6242
6295
|
# {
|
6243
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6296
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6244
6297
|
# tags: [
|
6245
6298
|
# {
|
6246
6299
|
# key: "String",
|
@@ -6339,7 +6392,7 @@ module Aws::EC2
|
|
6339
6392
|
# max_entries: 1, # required
|
6340
6393
|
# tag_specifications: [
|
6341
6394
|
# {
|
6342
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6395
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6343
6396
|
# tags: [
|
6344
6397
|
# {
|
6345
6398
|
# key: "String",
|
@@ -6460,7 +6513,7 @@ module Aws::EC2
|
|
6460
6513
|
# subnet_id: "SubnetId", # required
|
6461
6514
|
# tag_specifications: [
|
6462
6515
|
# {
|
6463
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6516
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6464
6517
|
# tags: [
|
6465
6518
|
# {
|
6466
6519
|
# key: "String",
|
@@ -6577,7 +6630,7 @@ module Aws::EC2
|
|
6577
6630
|
# vpc_id: "VpcId", # required
|
6578
6631
|
# tag_specifications: [
|
6579
6632
|
# {
|
6580
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6633
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6581
6634
|
# tags: [
|
6582
6635
|
# {
|
6583
6636
|
# key: "String",
|
@@ -6748,6 +6801,108 @@ module Aws::EC2
|
|
6748
6801
|
req.send_request(options)
|
6749
6802
|
end
|
6750
6803
|
|
6804
|
+
# Creates a path to analyze for reachability.
|
6805
|
+
#
|
6806
|
+
# Reachability Analyzer enables you to analyze and debug network
|
6807
|
+
# reachability between two resources in your virtual private cloud
|
6808
|
+
# (VPC). For more information, see [What is Reachability Analyzer][1].
|
6809
|
+
#
|
6810
|
+
#
|
6811
|
+
#
|
6812
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/reachability/
|
6813
|
+
#
|
6814
|
+
# @option params [String] :source_ip
|
6815
|
+
# The IP address of the AWS resource that is the source of the path.
|
6816
|
+
#
|
6817
|
+
# @option params [String] :destination_ip
|
6818
|
+
# The IP address of the AWS resource that is the destination of the
|
6819
|
+
# path.
|
6820
|
+
#
|
6821
|
+
# @option params [required, String] :source
|
6822
|
+
# The AWS resource that is the source of the path.
|
6823
|
+
#
|
6824
|
+
# @option params [required, String] :destination
|
6825
|
+
# The AWS resource that is the destination of the path.
|
6826
|
+
#
|
6827
|
+
# @option params [required, String] :protocol
|
6828
|
+
# The protocol.
|
6829
|
+
#
|
6830
|
+
# @option params [Integer] :destination_port
|
6831
|
+
# The destination port.
|
6832
|
+
#
|
6833
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
6834
|
+
# The tags to add to the path.
|
6835
|
+
#
|
6836
|
+
# @option params [Boolean] :dry_run
|
6837
|
+
# Checks whether you have the required permissions for the action,
|
6838
|
+
# without actually making the request, and provides an error response.
|
6839
|
+
# If you have the required permissions, the error response is
|
6840
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
6841
|
+
#
|
6842
|
+
# @option params [required, String] :client_token
|
6843
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
6844
|
+
# idempotency of the request. For more information, see [How to Ensure
|
6845
|
+
# Idempotency][1].
|
6846
|
+
#
|
6847
|
+
# **A suitable default value is auto-generated.** You should normally
|
6848
|
+
# not need to pass this option.**
|
6849
|
+
#
|
6850
|
+
#
|
6851
|
+
#
|
6852
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
6853
|
+
#
|
6854
|
+
# @return [Types::CreateNetworkInsightsPathResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6855
|
+
#
|
6856
|
+
# * {Types::CreateNetworkInsightsPathResult#network_insights_path #network_insights_path} => Types::NetworkInsightsPath
|
6857
|
+
#
|
6858
|
+
# @example Request syntax with placeholder values
|
6859
|
+
#
|
6860
|
+
# resp = client.create_network_insights_path({
|
6861
|
+
# source_ip: "IpAddress",
|
6862
|
+
# destination_ip: "IpAddress",
|
6863
|
+
# source: "String", # required
|
6864
|
+
# destination: "String", # required
|
6865
|
+
# protocol: "tcp", # required, accepts tcp, udp
|
6866
|
+
# destination_port: 1,
|
6867
|
+
# tag_specifications: [
|
6868
|
+
# {
|
6869
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6870
|
+
# tags: [
|
6871
|
+
# {
|
6872
|
+
# key: "String",
|
6873
|
+
# value: "String",
|
6874
|
+
# },
|
6875
|
+
# ],
|
6876
|
+
# },
|
6877
|
+
# ],
|
6878
|
+
# dry_run: false,
|
6879
|
+
# client_token: "String", # required
|
6880
|
+
# })
|
6881
|
+
#
|
6882
|
+
# @example Response structure
|
6883
|
+
#
|
6884
|
+
# resp.network_insights_path.network_insights_path_id #=> String
|
6885
|
+
# resp.network_insights_path.network_insights_path_arn #=> String
|
6886
|
+
# resp.network_insights_path.created_date #=> Time
|
6887
|
+
# resp.network_insights_path.source #=> String
|
6888
|
+
# resp.network_insights_path.destination #=> String
|
6889
|
+
# resp.network_insights_path.source_ip #=> String
|
6890
|
+
# resp.network_insights_path.destination_ip #=> String
|
6891
|
+
# resp.network_insights_path.protocol #=> String, one of "tcp", "udp"
|
6892
|
+
# resp.network_insights_path.destination_port #=> Integer
|
6893
|
+
# resp.network_insights_path.tags #=> Array
|
6894
|
+
# resp.network_insights_path.tags[0].key #=> String
|
6895
|
+
# resp.network_insights_path.tags[0].value #=> String
|
6896
|
+
#
|
6897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInsightsPath AWS API Documentation
|
6898
|
+
#
|
6899
|
+
# @overload create_network_insights_path(params = {})
|
6900
|
+
# @param [Hash] params ({})
|
6901
|
+
def create_network_insights_path(params = {}, options = {})
|
6902
|
+
req = build_request(:create_network_insights_path, params)
|
6903
|
+
req.send_request(options)
|
6904
|
+
end
|
6905
|
+
|
6751
6906
|
# Creates a network interface in the specified subnet.
|
6752
6907
|
#
|
6753
6908
|
# For more information about network interfaces, see [Elastic Network
|
@@ -6895,7 +7050,7 @@ module Aws::EC2
|
|
6895
7050
|
# subnet_id: "SubnetId", # required
|
6896
7051
|
# tag_specifications: [
|
6897
7052
|
# {
|
6898
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7053
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6899
7054
|
# tags: [
|
6900
7055
|
# {
|
6901
7056
|
# key: "String",
|
@@ -7091,7 +7246,7 @@ module Aws::EC2
|
|
7091
7246
|
# partition_count: 1,
|
7092
7247
|
# tag_specifications: [
|
7093
7248
|
# {
|
7094
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7249
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7095
7250
|
# tags: [
|
7096
7251
|
# {
|
7097
7252
|
# key: "String",
|
@@ -7426,7 +7581,7 @@ module Aws::EC2
|
|
7426
7581
|
# vpc_id: "VpcId", # required
|
7427
7582
|
# tag_specifications: [
|
7428
7583
|
# {
|
7429
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7584
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7430
7585
|
# tags: [
|
7431
7586
|
# {
|
7432
7587
|
# key: "String",
|
@@ -7576,7 +7731,7 @@ module Aws::EC2
|
|
7576
7731
|
# vpc_id: "VpcId",
|
7577
7732
|
# tag_specifications: [
|
7578
7733
|
# {
|
7579
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7734
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7580
7735
|
# tags: [
|
7581
7736
|
# {
|
7582
7737
|
# key: "String",
|
@@ -7706,7 +7861,7 @@ module Aws::EC2
|
|
7706
7861
|
# volume_id: "VolumeId", # required
|
7707
7862
|
# tag_specifications: [
|
7708
7863
|
# {
|
7709
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7864
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7710
7865
|
# tags: [
|
7711
7866
|
# {
|
7712
7867
|
# key: "String",
|
@@ -7785,7 +7940,7 @@ module Aws::EC2
|
|
7785
7940
|
# },
|
7786
7941
|
# tag_specifications: [
|
7787
7942
|
# {
|
7788
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7943
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7789
7944
|
# tags: [
|
7790
7945
|
# {
|
7791
7946
|
# key: "String",
|
@@ -8010,7 +8165,7 @@ module Aws::EC2
|
|
8010
8165
|
# resp = client.create_subnet({
|
8011
8166
|
# tag_specifications: [
|
8012
8167
|
# {
|
8013
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8168
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8014
8169
|
# tags: [
|
8015
8170
|
# {
|
8016
8171
|
# key: "String",
|
@@ -8190,7 +8345,7 @@ module Aws::EC2
|
|
8190
8345
|
# description: "String",
|
8191
8346
|
# tag_specifications: [
|
8192
8347
|
# {
|
8193
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8348
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8194
8349
|
# tags: [
|
8195
8350
|
# {
|
8196
8351
|
# key: "String",
|
@@ -8464,7 +8619,7 @@ module Aws::EC2
|
|
8464
8619
|
# description: "String",
|
8465
8620
|
# tag_specifications: [
|
8466
8621
|
# {
|
8467
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8622
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8468
8623
|
# tags: [
|
8469
8624
|
# {
|
8470
8625
|
# key: "String",
|
@@ -8563,7 +8718,7 @@ module Aws::EC2
|
|
8563
8718
|
# description: "String",
|
8564
8719
|
# tag_specifications: [
|
8565
8720
|
# {
|
8566
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8721
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8567
8722
|
# tags: [
|
8568
8723
|
# {
|
8569
8724
|
# key: "String",
|
@@ -8653,10 +8808,11 @@ module Aws::EC2
|
|
8653
8808
|
# vpn_ecmp_support: "enable", # accepts enable, disable
|
8654
8809
|
# dns_support: "enable", # accepts enable, disable
|
8655
8810
|
# multicast_support: "enable", # accepts enable, disable
|
8811
|
+
# transit_gateway_cidr_blocks: ["String"],
|
8656
8812
|
# },
|
8657
8813
|
# tag_specifications: [
|
8658
8814
|
# {
|
8659
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8815
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8660
8816
|
# tags: [
|
8661
8817
|
# {
|
8662
8818
|
# key: "String",
|
@@ -8677,6 +8833,8 @@ module Aws::EC2
|
|
8677
8833
|
# resp.transit_gateway.description #=> String
|
8678
8834
|
# resp.transit_gateway.creation_time #=> Time
|
8679
8835
|
# resp.transit_gateway.options.amazon_side_asn #=> Integer
|
8836
|
+
# resp.transit_gateway.options.transit_gateway_cidr_blocks #=> Array
|
8837
|
+
# resp.transit_gateway.options.transit_gateway_cidr_blocks[0] #=> String
|
8680
8838
|
# resp.transit_gateway.options.auto_accept_shared_attachments #=> String, one of "enable", "disable"
|
8681
8839
|
# resp.transit_gateway.options.default_route_table_association #=> String, one of "enable", "disable"
|
8682
8840
|
# resp.transit_gateway.options.association_default_route_table_id #=> String
|
@@ -8698,6 +8856,179 @@ module Aws::EC2
|
|
8698
8856
|
req.send_request(options)
|
8699
8857
|
end
|
8700
8858
|
|
8859
|
+
# Creates a Connect attachment from a specified transit gateway
|
8860
|
+
# attachment. A Connect attachment is a GRE-based tunnel attachment that
|
8861
|
+
# you can use to establish a connection between a transit gateway and an
|
8862
|
+
# appliance.
|
8863
|
+
#
|
8864
|
+
# A Connect attachment uses an existing VPC or AWS Direct Connect
|
8865
|
+
# attachment as the underlying transport mechanism.
|
8866
|
+
#
|
8867
|
+
# @option params [required, String] :transport_transit_gateway_attachment_id
|
8868
|
+
# The ID of the transit gateway attachment. You can specify a VPC
|
8869
|
+
# attachment or a AWS Direct Connect attachment.
|
8870
|
+
#
|
8871
|
+
# @option params [required, Types::CreateTransitGatewayConnectRequestOptions] :options
|
8872
|
+
# The Connect attachment options.
|
8873
|
+
#
|
8874
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
8875
|
+
# The tags to apply to the Connect attachment.
|
8876
|
+
#
|
8877
|
+
# @option params [Boolean] :dry_run
|
8878
|
+
# Checks whether you have the required permissions for the action,
|
8879
|
+
# without actually making the request, and provides an error response.
|
8880
|
+
# If you have the required permissions, the error response is
|
8881
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
8882
|
+
#
|
8883
|
+
# @return [Types::CreateTransitGatewayConnectResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8884
|
+
#
|
8885
|
+
# * {Types::CreateTransitGatewayConnectResult#transit_gateway_connect #transit_gateway_connect} => Types::TransitGatewayConnect
|
8886
|
+
#
|
8887
|
+
# @example Request syntax with placeholder values
|
8888
|
+
#
|
8889
|
+
# resp = client.create_transit_gateway_connect({
|
8890
|
+
# transport_transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
|
8891
|
+
# options: { # required
|
8892
|
+
# protocol: "gre", # required, accepts gre
|
8893
|
+
# },
|
8894
|
+
# tag_specifications: [
|
8895
|
+
# {
|
8896
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8897
|
+
# tags: [
|
8898
|
+
# {
|
8899
|
+
# key: "String",
|
8900
|
+
# value: "String",
|
8901
|
+
# },
|
8902
|
+
# ],
|
8903
|
+
# },
|
8904
|
+
# ],
|
8905
|
+
# dry_run: false,
|
8906
|
+
# })
|
8907
|
+
#
|
8908
|
+
# @example Response structure
|
8909
|
+
#
|
8910
|
+
# resp.transit_gateway_connect.transit_gateway_attachment_id #=> String
|
8911
|
+
# resp.transit_gateway_connect.transport_transit_gateway_attachment_id #=> String
|
8912
|
+
# resp.transit_gateway_connect.transit_gateway_id #=> String
|
8913
|
+
# resp.transit_gateway_connect.state #=> String, one of "initiating", "initiatingRequest", "pendingAcceptance", "rollingBack", "pending", "available", "modifying", "deleting", "deleted", "failed", "rejected", "rejecting", "failing"
|
8914
|
+
# resp.transit_gateway_connect.creation_time #=> Time
|
8915
|
+
# resp.transit_gateway_connect.options.protocol #=> String, one of "gre"
|
8916
|
+
# resp.transit_gateway_connect.tags #=> Array
|
8917
|
+
# resp.transit_gateway_connect.tags[0].key #=> String
|
8918
|
+
# resp.transit_gateway_connect.tags[0].value #=> String
|
8919
|
+
#
|
8920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTransitGatewayConnect AWS API Documentation
|
8921
|
+
#
|
8922
|
+
# @overload create_transit_gateway_connect(params = {})
|
8923
|
+
# @param [Hash] params ({})
|
8924
|
+
def create_transit_gateway_connect(params = {}, options = {})
|
8925
|
+
req = build_request(:create_transit_gateway_connect, params)
|
8926
|
+
req.send_request(options)
|
8927
|
+
end
|
8928
|
+
|
8929
|
+
# Creates a Connect peer for a specified transit gateway Connect
|
8930
|
+
# attachment between a transit gateway and an appliance.
|
8931
|
+
#
|
8932
|
+
# The peer address and transit gateway address must be the same IP
|
8933
|
+
# address family (IPv4 or IPv6).
|
8934
|
+
#
|
8935
|
+
# For more information, see [Connect peers][1] in the *Transit Gateways
|
8936
|
+
# Guide*.
|
8937
|
+
#
|
8938
|
+
#
|
8939
|
+
#
|
8940
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html#tgw-connect-peer
|
8941
|
+
#
|
8942
|
+
# @option params [required, String] :transit_gateway_attachment_id
|
8943
|
+
# The ID of the Connect attachment.
|
8944
|
+
#
|
8945
|
+
# @option params [String] :transit_gateway_address
|
8946
|
+
# The peer IP address (GRE outer IP address) on the transit gateway side
|
8947
|
+
# of the Connect peer, which must be specified from a transit gateway
|
8948
|
+
# CIDR block. If not specified, Amazon automatically assigns the first
|
8949
|
+
# available IP address from the transit gateway CIDR block.
|
8950
|
+
#
|
8951
|
+
# @option params [required, String] :peer_address
|
8952
|
+
# The peer IP address (GRE outer IP address) on the appliance side of
|
8953
|
+
# the Connect peer.
|
8954
|
+
#
|
8955
|
+
# @option params [Types::TransitGatewayConnectRequestBgpOptions] :bgp_options
|
8956
|
+
# The BGP options for the Connect peer.
|
8957
|
+
#
|
8958
|
+
# @option params [required, Array<String>] :inside_cidr_blocks
|
8959
|
+
# The range of inside IP addresses that are used for BGP peering. You
|
8960
|
+
# must specify a size /29 IPv4 CIDR block from the `169.254.0.0/16`
|
8961
|
+
# range. The first address from the range must be configured on the
|
8962
|
+
# appliance as the BGP IP address. You can also optionally specify a
|
8963
|
+
# size /125 IPv6 CIDR block from the `fd00::/8` range.
|
8964
|
+
#
|
8965
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
8966
|
+
# The tags to apply to the Connect peer.
|
8967
|
+
#
|
8968
|
+
# @option params [Boolean] :dry_run
|
8969
|
+
# Checks whether you have the required permissions for the action,
|
8970
|
+
# without actually making the request, and provides an error response.
|
8971
|
+
# If you have the required permissions, the error response is
|
8972
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
8973
|
+
#
|
8974
|
+
# @return [Types::CreateTransitGatewayConnectPeerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8975
|
+
#
|
8976
|
+
# * {Types::CreateTransitGatewayConnectPeerResult#transit_gateway_connect_peer #transit_gateway_connect_peer} => Types::TransitGatewayConnectPeer
|
8977
|
+
#
|
8978
|
+
# @example Request syntax with placeholder values
|
8979
|
+
#
|
8980
|
+
# resp = client.create_transit_gateway_connect_peer({
|
8981
|
+
# transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
|
8982
|
+
# transit_gateway_address: "String",
|
8983
|
+
# peer_address: "String", # required
|
8984
|
+
# bgp_options: {
|
8985
|
+
# peer_asn: 1,
|
8986
|
+
# },
|
8987
|
+
# inside_cidr_blocks: ["String"], # required
|
8988
|
+
# tag_specifications: [
|
8989
|
+
# {
|
8990
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8991
|
+
# tags: [
|
8992
|
+
# {
|
8993
|
+
# key: "String",
|
8994
|
+
# value: "String",
|
8995
|
+
# },
|
8996
|
+
# ],
|
8997
|
+
# },
|
8998
|
+
# ],
|
8999
|
+
# dry_run: false,
|
9000
|
+
# })
|
9001
|
+
#
|
9002
|
+
# @example Response structure
|
9003
|
+
#
|
9004
|
+
# resp.transit_gateway_connect_peer.transit_gateway_attachment_id #=> String
|
9005
|
+
# resp.transit_gateway_connect_peer.transit_gateway_connect_peer_id #=> String
|
9006
|
+
# resp.transit_gateway_connect_peer.state #=> String, one of "pending", "available", "deleting", "deleted"
|
9007
|
+
# resp.transit_gateway_connect_peer.creation_time #=> Time
|
9008
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.transit_gateway_address #=> String
|
9009
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.peer_address #=> String
|
9010
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.inside_cidr_blocks #=> Array
|
9011
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.inside_cidr_blocks[0] #=> String
|
9012
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.protocol #=> String, one of "gre"
|
9013
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations #=> Array
|
9014
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].transit_gateway_asn #=> Integer
|
9015
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].peer_asn #=> Integer
|
9016
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].transit_gateway_address #=> String
|
9017
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].peer_address #=> String
|
9018
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].bgp_status #=> String, one of "up", "down"
|
9019
|
+
# resp.transit_gateway_connect_peer.tags #=> Array
|
9020
|
+
# resp.transit_gateway_connect_peer.tags[0].key #=> String
|
9021
|
+
# resp.transit_gateway_connect_peer.tags[0].value #=> String
|
9022
|
+
#
|
9023
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTransitGatewayConnectPeer AWS API Documentation
|
9024
|
+
#
|
9025
|
+
# @overload create_transit_gateway_connect_peer(params = {})
|
9026
|
+
# @param [Hash] params ({})
|
9027
|
+
def create_transit_gateway_connect_peer(params = {}, options = {})
|
9028
|
+
req = build_request(:create_transit_gateway_connect_peer, params)
|
9029
|
+
req.send_request(options)
|
9030
|
+
end
|
9031
|
+
|
8701
9032
|
# Creates a multicast domain using the specified transit gateway.
|
8702
9033
|
#
|
8703
9034
|
# The transit gateway must be in the available state before you create a
|
@@ -8711,6 +9042,9 @@ module Aws::EC2
|
|
8711
9042
|
# @option params [required, String] :transit_gateway_id
|
8712
9043
|
# The ID of the transit gateway.
|
8713
9044
|
#
|
9045
|
+
# @option params [Types::CreateTransitGatewayMulticastDomainRequestOptions] :options
|
9046
|
+
# The options for the transit gateway multicast domain.
|
9047
|
+
#
|
8714
9048
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
8715
9049
|
# The tags for the transit gateway multicast domain.
|
8716
9050
|
#
|
@@ -8728,9 +9062,14 @@ module Aws::EC2
|
|
8728
9062
|
#
|
8729
9063
|
# resp = client.create_transit_gateway_multicast_domain({
|
8730
9064
|
# transit_gateway_id: "TransitGatewayId", # required
|
9065
|
+
# options: {
|
9066
|
+
# igmpv_2_support: "enable", # accepts enable, disable
|
9067
|
+
# static_sources_support: "enable", # accepts enable, disable
|
9068
|
+
# auto_accept_shared_associations: "enable", # accepts enable, disable
|
9069
|
+
# },
|
8731
9070
|
# tag_specifications: [
|
8732
9071
|
# {
|
8733
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9072
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8734
9073
|
# tags: [
|
8735
9074
|
# {
|
8736
9075
|
# key: "String",
|
@@ -8746,6 +9085,11 @@ module Aws::EC2
|
|
8746
9085
|
#
|
8747
9086
|
# resp.transit_gateway_multicast_domain.transit_gateway_multicast_domain_id #=> String
|
8748
9087
|
# resp.transit_gateway_multicast_domain.transit_gateway_id #=> String
|
9088
|
+
# resp.transit_gateway_multicast_domain.transit_gateway_multicast_domain_arn #=> String
|
9089
|
+
# resp.transit_gateway_multicast_domain.owner_id #=> String
|
9090
|
+
# resp.transit_gateway_multicast_domain.options.igmpv_2_support #=> String, one of "enable", "disable"
|
9091
|
+
# resp.transit_gateway_multicast_domain.options.static_sources_support #=> String, one of "enable", "disable"
|
9092
|
+
# resp.transit_gateway_multicast_domain.options.auto_accept_shared_associations #=> String, one of "enable", "disable"
|
8749
9093
|
# resp.transit_gateway_multicast_domain.state #=> String, one of "pending", "available", "deleting", "deleted"
|
8750
9094
|
# resp.transit_gateway_multicast_domain.creation_time #=> Time
|
8751
9095
|
# resp.transit_gateway_multicast_domain.tags #=> Array
|
@@ -8804,7 +9148,7 @@ module Aws::EC2
|
|
8804
9148
|
# peer_region: "String", # required
|
8805
9149
|
# tag_specifications: [
|
8806
9150
|
# {
|
8807
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9151
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8808
9152
|
# tags: [
|
8809
9153
|
# {
|
8810
9154
|
# key: "String",
|
@@ -8885,7 +9229,7 @@ module Aws::EC2
|
|
8885
9229
|
# resp.transit_gateway_prefix_list_reference.state #=> String, one of "pending", "available", "modifying", "deleting"
|
8886
9230
|
# resp.transit_gateway_prefix_list_reference.blackhole #=> Boolean
|
8887
9231
|
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.transit_gateway_attachment_id #=> String
|
8888
|
-
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
9232
|
+
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
8889
9233
|
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_id #=> String
|
8890
9234
|
#
|
8891
9235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTransitGatewayPrefixListReference AWS API Documentation
|
@@ -8939,7 +9283,7 @@ module Aws::EC2
|
|
8939
9283
|
# resp.route.transit_gateway_attachments #=> Array
|
8940
9284
|
# resp.route.transit_gateway_attachments[0].resource_id #=> String
|
8941
9285
|
# resp.route.transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
|
8942
|
-
# resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
9286
|
+
# resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
8943
9287
|
# resp.route.type #=> String, one of "static", "propagated"
|
8944
9288
|
# resp.route.state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
|
8945
9289
|
#
|
@@ -8976,7 +9320,7 @@ module Aws::EC2
|
|
8976
9320
|
# transit_gateway_id: "TransitGatewayId", # required
|
8977
9321
|
# tag_specifications: [
|
8978
9322
|
# {
|
8979
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9323
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8980
9324
|
# tags: [
|
8981
9325
|
# {
|
8982
9326
|
# key: "String",
|
@@ -9059,7 +9403,7 @@ module Aws::EC2
|
|
9059
9403
|
# },
|
9060
9404
|
# tag_specifications: [
|
9061
9405
|
# {
|
9062
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9406
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9063
9407
|
# tags: [
|
9064
9408
|
# {
|
9065
9409
|
# key: "String",
|
@@ -9352,7 +9696,7 @@ module Aws::EC2
|
|
9352
9696
|
# dry_run: false,
|
9353
9697
|
# tag_specifications: [
|
9354
9698
|
# {
|
9355
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9699
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9356
9700
|
# tags: [
|
9357
9701
|
# {
|
9358
9702
|
# key: "String",
|
@@ -9515,7 +9859,7 @@ module Aws::EC2
|
|
9515
9859
|
# ipv_6_cidr_block_network_border_group: "String",
|
9516
9860
|
# tag_specifications: [
|
9517
9861
|
# {
|
9518
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9862
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9519
9863
|
# tags: [
|
9520
9864
|
# {
|
9521
9865
|
# key: "String",
|
@@ -9672,7 +10016,7 @@ module Aws::EC2
|
|
9672
10016
|
# private_dns_enabled: false,
|
9673
10017
|
# tag_specifications: [
|
9674
10018
|
# {
|
9675
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10019
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9676
10020
|
# tags: [
|
9677
10021
|
# {
|
9678
10022
|
# key: "String",
|
@@ -9878,7 +10222,7 @@ module Aws::EC2
|
|
9878
10222
|
# client_token: "String",
|
9879
10223
|
# tag_specifications: [
|
9880
10224
|
# {
|
9881
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10225
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9882
10226
|
# tags: [
|
9883
10227
|
# {
|
9884
10228
|
# key: "String",
|
@@ -9991,7 +10335,7 @@ module Aws::EC2
|
|
9991
10335
|
# peer_region: "String",
|
9992
10336
|
# tag_specifications: [
|
9993
10337
|
# {
|
9994
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10338
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9995
10339
|
# tags: [
|
9996
10340
|
# {
|
9997
10341
|
# key: "String",
|
@@ -10167,7 +10511,7 @@ module Aws::EC2
|
|
10167
10511
|
# },
|
10168
10512
|
# tag_specifications: [
|
10169
10513
|
# {
|
10170
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10514
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10171
10515
|
# tags: [
|
10172
10516
|
# {
|
10173
10517
|
# key: "String",
|
@@ -10328,7 +10672,7 @@ module Aws::EC2
|
|
10328
10672
|
# type: "ipsec.1", # required, accepts ipsec.1
|
10329
10673
|
# tag_specifications: [
|
10330
10674
|
# {
|
10331
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10675
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10332
10676
|
# tags: [
|
10333
10677
|
# {
|
10334
10678
|
# key: "String",
|
@@ -11290,6 +11634,76 @@ module Aws::EC2
|
|
11290
11634
|
req.send_request(options)
|
11291
11635
|
end
|
11292
11636
|
|
11637
|
+
# Deletes the specified network insights analysis.
|
11638
|
+
#
|
11639
|
+
# @option params [Boolean] :dry_run
|
11640
|
+
# Checks whether you have the required permissions for the action,
|
11641
|
+
# without actually making the request, and provides an error response.
|
11642
|
+
# If you have the required permissions, the error response is
|
11643
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
11644
|
+
#
|
11645
|
+
# @option params [required, String] :network_insights_analysis_id
|
11646
|
+
# The ID of the network insights analysis.
|
11647
|
+
#
|
11648
|
+
# @return [Types::DeleteNetworkInsightsAnalysisResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11649
|
+
#
|
11650
|
+
# * {Types::DeleteNetworkInsightsAnalysisResult#network_insights_analysis_id #network_insights_analysis_id} => String
|
11651
|
+
#
|
11652
|
+
# @example Request syntax with placeholder values
|
11653
|
+
#
|
11654
|
+
# resp = client.delete_network_insights_analysis({
|
11655
|
+
# dry_run: false,
|
11656
|
+
# network_insights_analysis_id: "NetworkInsightsAnalysisId", # required
|
11657
|
+
# })
|
11658
|
+
#
|
11659
|
+
# @example Response structure
|
11660
|
+
#
|
11661
|
+
# resp.network_insights_analysis_id #=> String
|
11662
|
+
#
|
11663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkInsightsAnalysis AWS API Documentation
|
11664
|
+
#
|
11665
|
+
# @overload delete_network_insights_analysis(params = {})
|
11666
|
+
# @param [Hash] params ({})
|
11667
|
+
def delete_network_insights_analysis(params = {}, options = {})
|
11668
|
+
req = build_request(:delete_network_insights_analysis, params)
|
11669
|
+
req.send_request(options)
|
11670
|
+
end
|
11671
|
+
|
11672
|
+
# Deletes the specified path.
|
11673
|
+
#
|
11674
|
+
# @option params [Boolean] :dry_run
|
11675
|
+
# Checks whether you have the required permissions for the action,
|
11676
|
+
# without actually making the request, and provides an error response.
|
11677
|
+
# If you have the required permissions, the error response is
|
11678
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
11679
|
+
#
|
11680
|
+
# @option params [required, String] :network_insights_path_id
|
11681
|
+
# The ID of the path.
|
11682
|
+
#
|
11683
|
+
# @return [Types::DeleteNetworkInsightsPathResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11684
|
+
#
|
11685
|
+
# * {Types::DeleteNetworkInsightsPathResult#network_insights_path_id #network_insights_path_id} => String
|
11686
|
+
#
|
11687
|
+
# @example Request syntax with placeholder values
|
11688
|
+
#
|
11689
|
+
# resp = client.delete_network_insights_path({
|
11690
|
+
# dry_run: false,
|
11691
|
+
# network_insights_path_id: "NetworkInsightsPathId", # required
|
11692
|
+
# })
|
11693
|
+
#
|
11694
|
+
# @example Response structure
|
11695
|
+
#
|
11696
|
+
# resp.network_insights_path_id #=> String
|
11697
|
+
#
|
11698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkInsightsPath AWS API Documentation
|
11699
|
+
#
|
11700
|
+
# @overload delete_network_insights_path(params = {})
|
11701
|
+
# @param [Hash] params ({})
|
11702
|
+
def delete_network_insights_path(params = {}, options = {})
|
11703
|
+
req = build_request(:delete_network_insights_path, params)
|
11704
|
+
req.send_request(options)
|
11705
|
+
end
|
11706
|
+
|
11293
11707
|
# Deletes the specified network interface. You must detach the network
|
11294
11708
|
# interface before you can delete it.
|
11295
11709
|
#
|
@@ -11992,6 +12406,8 @@ module Aws::EC2
|
|
11992
12406
|
# resp.transit_gateway.description #=> String
|
11993
12407
|
# resp.transit_gateway.creation_time #=> Time
|
11994
12408
|
# resp.transit_gateway.options.amazon_side_asn #=> Integer
|
12409
|
+
# resp.transit_gateway.options.transit_gateway_cidr_blocks #=> Array
|
12410
|
+
# resp.transit_gateway.options.transit_gateway_cidr_blocks[0] #=> String
|
11995
12411
|
# resp.transit_gateway.options.auto_accept_shared_attachments #=> String, one of "enable", "disable"
|
11996
12412
|
# resp.transit_gateway.options.default_route_table_association #=> String, one of "enable", "disable"
|
11997
12413
|
# resp.transit_gateway.options.association_default_route_table_id #=> String
|
@@ -12013,6 +12429,102 @@ module Aws::EC2
|
|
12013
12429
|
req.send_request(options)
|
12014
12430
|
end
|
12015
12431
|
|
12432
|
+
# Deletes the specified Connect attachment. You must first delete any
|
12433
|
+
# Connect peers for the attachment.
|
12434
|
+
#
|
12435
|
+
# @option params [required, String] :transit_gateway_attachment_id
|
12436
|
+
# The ID of the Connect attachment.
|
12437
|
+
#
|
12438
|
+
# @option params [Boolean] :dry_run
|
12439
|
+
# Checks whether you have the required permissions for the action,
|
12440
|
+
# without actually making the request, and provides an error response.
|
12441
|
+
# If you have the required permissions, the error response is
|
12442
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
12443
|
+
#
|
12444
|
+
# @return [Types::DeleteTransitGatewayConnectResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12445
|
+
#
|
12446
|
+
# * {Types::DeleteTransitGatewayConnectResult#transit_gateway_connect #transit_gateway_connect} => Types::TransitGatewayConnect
|
12447
|
+
#
|
12448
|
+
# @example Request syntax with placeholder values
|
12449
|
+
#
|
12450
|
+
# resp = client.delete_transit_gateway_connect({
|
12451
|
+
# transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
|
12452
|
+
# dry_run: false,
|
12453
|
+
# })
|
12454
|
+
#
|
12455
|
+
# @example Response structure
|
12456
|
+
#
|
12457
|
+
# resp.transit_gateway_connect.transit_gateway_attachment_id #=> String
|
12458
|
+
# resp.transit_gateway_connect.transport_transit_gateway_attachment_id #=> String
|
12459
|
+
# resp.transit_gateway_connect.transit_gateway_id #=> String
|
12460
|
+
# resp.transit_gateway_connect.state #=> String, one of "initiating", "initiatingRequest", "pendingAcceptance", "rollingBack", "pending", "available", "modifying", "deleting", "deleted", "failed", "rejected", "rejecting", "failing"
|
12461
|
+
# resp.transit_gateway_connect.creation_time #=> Time
|
12462
|
+
# resp.transit_gateway_connect.options.protocol #=> String, one of "gre"
|
12463
|
+
# resp.transit_gateway_connect.tags #=> Array
|
12464
|
+
# resp.transit_gateway_connect.tags[0].key #=> String
|
12465
|
+
# resp.transit_gateway_connect.tags[0].value #=> String
|
12466
|
+
#
|
12467
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTransitGatewayConnect AWS API Documentation
|
12468
|
+
#
|
12469
|
+
# @overload delete_transit_gateway_connect(params = {})
|
12470
|
+
# @param [Hash] params ({})
|
12471
|
+
def delete_transit_gateway_connect(params = {}, options = {})
|
12472
|
+
req = build_request(:delete_transit_gateway_connect, params)
|
12473
|
+
req.send_request(options)
|
12474
|
+
end
|
12475
|
+
|
12476
|
+
# Deletes the specified Connect peer.
|
12477
|
+
#
|
12478
|
+
# @option params [required, String] :transit_gateway_connect_peer_id
|
12479
|
+
# The ID of the Connect peer.
|
12480
|
+
#
|
12481
|
+
# @option params [Boolean] :dry_run
|
12482
|
+
# Checks whether you have the required permissions for the action,
|
12483
|
+
# without actually making the request, and provides an error response.
|
12484
|
+
# If you have the required permissions, the error response is
|
12485
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
12486
|
+
#
|
12487
|
+
# @return [Types::DeleteTransitGatewayConnectPeerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12488
|
+
#
|
12489
|
+
# * {Types::DeleteTransitGatewayConnectPeerResult#transit_gateway_connect_peer #transit_gateway_connect_peer} => Types::TransitGatewayConnectPeer
|
12490
|
+
#
|
12491
|
+
# @example Request syntax with placeholder values
|
12492
|
+
#
|
12493
|
+
# resp = client.delete_transit_gateway_connect_peer({
|
12494
|
+
# transit_gateway_connect_peer_id: "TransitGatewayConnectPeerId", # required
|
12495
|
+
# dry_run: false,
|
12496
|
+
# })
|
12497
|
+
#
|
12498
|
+
# @example Response structure
|
12499
|
+
#
|
12500
|
+
# resp.transit_gateway_connect_peer.transit_gateway_attachment_id #=> String
|
12501
|
+
# resp.transit_gateway_connect_peer.transit_gateway_connect_peer_id #=> String
|
12502
|
+
# resp.transit_gateway_connect_peer.state #=> String, one of "pending", "available", "deleting", "deleted"
|
12503
|
+
# resp.transit_gateway_connect_peer.creation_time #=> Time
|
12504
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.transit_gateway_address #=> String
|
12505
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.peer_address #=> String
|
12506
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.inside_cidr_blocks #=> Array
|
12507
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.inside_cidr_blocks[0] #=> String
|
12508
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.protocol #=> String, one of "gre"
|
12509
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations #=> Array
|
12510
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].transit_gateway_asn #=> Integer
|
12511
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].peer_asn #=> Integer
|
12512
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].transit_gateway_address #=> String
|
12513
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].peer_address #=> String
|
12514
|
+
# resp.transit_gateway_connect_peer.connect_peer_configuration.bgp_configurations[0].bgp_status #=> String, one of "up", "down"
|
12515
|
+
# resp.transit_gateway_connect_peer.tags #=> Array
|
12516
|
+
# resp.transit_gateway_connect_peer.tags[0].key #=> String
|
12517
|
+
# resp.transit_gateway_connect_peer.tags[0].value #=> String
|
12518
|
+
#
|
12519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTransitGatewayConnectPeer AWS API Documentation
|
12520
|
+
#
|
12521
|
+
# @overload delete_transit_gateway_connect_peer(params = {})
|
12522
|
+
# @param [Hash] params ({})
|
12523
|
+
def delete_transit_gateway_connect_peer(params = {}, options = {})
|
12524
|
+
req = build_request(:delete_transit_gateway_connect_peer, params)
|
12525
|
+
req.send_request(options)
|
12526
|
+
end
|
12527
|
+
|
12016
12528
|
# Deletes the specified transit gateway multicast domain.
|
12017
12529
|
#
|
12018
12530
|
# @option params [required, String] :transit_gateway_multicast_domain_id
|
@@ -12039,6 +12551,11 @@ module Aws::EC2
|
|
12039
12551
|
#
|
12040
12552
|
# resp.transit_gateway_multicast_domain.transit_gateway_multicast_domain_id #=> String
|
12041
12553
|
# resp.transit_gateway_multicast_domain.transit_gateway_id #=> String
|
12554
|
+
# resp.transit_gateway_multicast_domain.transit_gateway_multicast_domain_arn #=> String
|
12555
|
+
# resp.transit_gateway_multicast_domain.owner_id #=> String
|
12556
|
+
# resp.transit_gateway_multicast_domain.options.igmpv_2_support #=> String, one of "enable", "disable"
|
12557
|
+
# resp.transit_gateway_multicast_domain.options.static_sources_support #=> String, one of "enable", "disable"
|
12558
|
+
# resp.transit_gateway_multicast_domain.options.auto_accept_shared_associations #=> String, one of "enable", "disable"
|
12042
12559
|
# resp.transit_gateway_multicast_domain.state #=> String, one of "pending", "available", "deleting", "deleted"
|
12043
12560
|
# resp.transit_gateway_multicast_domain.creation_time #=> Time
|
12044
12561
|
# resp.transit_gateway_multicast_domain.tags #=> Array
|
@@ -12137,7 +12654,7 @@ module Aws::EC2
|
|
12137
12654
|
# resp.transit_gateway_prefix_list_reference.state #=> String, one of "pending", "available", "modifying", "deleting"
|
12138
12655
|
# resp.transit_gateway_prefix_list_reference.blackhole #=> Boolean
|
12139
12656
|
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.transit_gateway_attachment_id #=> String
|
12140
|
-
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
12657
|
+
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
12141
12658
|
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_id #=> String
|
12142
12659
|
#
|
12143
12660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTransitGatewayPrefixListReference AWS API Documentation
|
@@ -12184,7 +12701,7 @@ module Aws::EC2
|
|
12184
12701
|
# resp.route.transit_gateway_attachments #=> Array
|
12185
12702
|
# resp.route.transit_gateway_attachments[0].resource_id #=> String
|
12186
12703
|
# resp.route.transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
|
12187
|
-
# resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
12704
|
+
# resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
12188
12705
|
# resp.route.type #=> String, one of "static", "propagated"
|
12189
12706
|
# resp.route.state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
|
12190
12707
|
#
|
@@ -18594,7 +19111,7 @@ module Aws::EC2
|
|
18594
19111
|
# resp.launch_template_versions[0].launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
|
18595
19112
|
# resp.launch_template_versions[0].launch_template_data.user_data #=> String
|
18596
19113
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications #=> Array
|
18597
|
-
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
19114
|
+
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "network-insights-analysis", "network-insights-path", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-connect-peer", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
18598
19115
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags #=> Array
|
18599
19116
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags[0].key #=> String
|
18600
19117
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags[0].value #=> String
|
@@ -19709,6 +20226,399 @@ module Aws::EC2
|
|
19709
20226
|
req.send_request(options)
|
19710
20227
|
end
|
19711
20228
|
|
20229
|
+
# Describes one or more of your network insights analyses.
|
20230
|
+
#
|
20231
|
+
# @option params [Array<String>] :network_insights_analysis_ids
|
20232
|
+
# The ID of the network insights analyses. You must specify either
|
20233
|
+
# analysis IDs or a path ID.
|
20234
|
+
#
|
20235
|
+
# @option params [String] :network_insights_path_id
|
20236
|
+
# The ID of the path. You must specify either a path ID or analysis IDs.
|
20237
|
+
#
|
20238
|
+
# @option params [Time,DateTime,Date,Integer,String] :analysis_start_time
|
20239
|
+
# The time when the network insights analyses started.
|
20240
|
+
#
|
20241
|
+
# @option params [Time,DateTime,Date,Integer,String] :analysis_end_time
|
20242
|
+
# The time when the network insights analyses ended.
|
20243
|
+
#
|
20244
|
+
# @option params [Array<Types::Filter>] :filters
|
20245
|
+
# The filters. The following are possible values:
|
20246
|
+
#
|
20247
|
+
# * PathFound - A Boolean value that indicates whether a feasible path
|
20248
|
+
# is found.
|
20249
|
+
#
|
20250
|
+
# * Status - The status of the analysis (running \| succeeded \|
|
20251
|
+
# failed).
|
20252
|
+
#
|
20253
|
+
# @option params [Integer] :max_results
|
20254
|
+
# The maximum number of results to return with a single call. To
|
20255
|
+
# retrieve the remaining results, make another call with the returned
|
20256
|
+
# `nextToken` value.
|
20257
|
+
#
|
20258
|
+
# @option params [Boolean] :dry_run
|
20259
|
+
# Checks whether you have the required permissions for the action,
|
20260
|
+
# without actually making the request, and provides an error response.
|
20261
|
+
# If you have the required permissions, the error response is
|
20262
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
20263
|
+
#
|
20264
|
+
# @option params [String] :next_token
|
20265
|
+
# The token for the next page of results.
|
20266
|
+
#
|
20267
|
+
# @return [Types::DescribeNetworkInsightsAnalysesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20268
|
+
#
|
20269
|
+
# * {Types::DescribeNetworkInsightsAnalysesResult#network_insights_analyses #network_insights_analyses} => Array<Types::NetworkInsightsAnalysis>
|
20270
|
+
# * {Types::DescribeNetworkInsightsAnalysesResult#next_token #next_token} => String
|
20271
|
+
#
|
20272
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
20273
|
+
#
|
20274
|
+
# @example Request syntax with placeholder values
|
20275
|
+
#
|
20276
|
+
# resp = client.describe_network_insights_analyses({
|
20277
|
+
# network_insights_analysis_ids: ["NetworkInsightsAnalysisId"],
|
20278
|
+
# network_insights_path_id: "NetworkInsightsPathId",
|
20279
|
+
# analysis_start_time: Time.now,
|
20280
|
+
# analysis_end_time: Time.now,
|
20281
|
+
# filters: [
|
20282
|
+
# {
|
20283
|
+
# name: "String",
|
20284
|
+
# values: ["String"],
|
20285
|
+
# },
|
20286
|
+
# ],
|
20287
|
+
# max_results: 1,
|
20288
|
+
# dry_run: false,
|
20289
|
+
# next_token: "NextToken",
|
20290
|
+
# })
|
20291
|
+
#
|
20292
|
+
# @example Response structure
|
20293
|
+
#
|
20294
|
+
# resp.network_insights_analyses #=> Array
|
20295
|
+
# resp.network_insights_analyses[0].network_insights_analysis_id #=> String
|
20296
|
+
# resp.network_insights_analyses[0].network_insights_analysis_arn #=> String
|
20297
|
+
# resp.network_insights_analyses[0].network_insights_path_id #=> String
|
20298
|
+
# resp.network_insights_analyses[0].filter_in_arns #=> Array
|
20299
|
+
# resp.network_insights_analyses[0].filter_in_arns[0] #=> String
|
20300
|
+
# resp.network_insights_analyses[0].start_date #=> Time
|
20301
|
+
# resp.network_insights_analyses[0].status #=> String, one of "running", "succeeded", "failed"
|
20302
|
+
# resp.network_insights_analyses[0].status_message #=> String
|
20303
|
+
# resp.network_insights_analyses[0].network_path_found #=> Boolean
|
20304
|
+
# resp.network_insights_analyses[0].forward_path_components #=> Array
|
20305
|
+
# resp.network_insights_analyses[0].forward_path_components[0].sequence_number #=> Integer
|
20306
|
+
# resp.network_insights_analyses[0].forward_path_components[0].acl_rule.cidr #=> String
|
20307
|
+
# resp.network_insights_analyses[0].forward_path_components[0].acl_rule.egress #=> Boolean
|
20308
|
+
# resp.network_insights_analyses[0].forward_path_components[0].acl_rule.port_range.from #=> Integer
|
20309
|
+
# resp.network_insights_analyses[0].forward_path_components[0].acl_rule.port_range.to #=> Integer
|
20310
|
+
# resp.network_insights_analyses[0].forward_path_components[0].acl_rule.protocol #=> String
|
20311
|
+
# resp.network_insights_analyses[0].forward_path_components[0].acl_rule.rule_action #=> String
|
20312
|
+
# resp.network_insights_analyses[0].forward_path_components[0].acl_rule.rule_number #=> Integer
|
20313
|
+
# resp.network_insights_analyses[0].forward_path_components[0].component.id #=> String
|
20314
|
+
# resp.network_insights_analyses[0].forward_path_components[0].component.arn #=> String
|
20315
|
+
# resp.network_insights_analyses[0].forward_path_components[0].destination_vpc.id #=> String
|
20316
|
+
# resp.network_insights_analyses[0].forward_path_components[0].destination_vpc.arn #=> String
|
20317
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.destination_addresses #=> Array
|
20318
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.destination_addresses[0] #=> String
|
20319
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.destination_port_ranges #=> Array
|
20320
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.destination_port_ranges[0].from #=> Integer
|
20321
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.destination_port_ranges[0].to #=> Integer
|
20322
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.protocol #=> String
|
20323
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.source_addresses #=> Array
|
20324
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.source_addresses[0] #=> String
|
20325
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.source_port_ranges #=> Array
|
20326
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.source_port_ranges[0].from #=> Integer
|
20327
|
+
# resp.network_insights_analyses[0].forward_path_components[0].outbound_header.source_port_ranges[0].to #=> Integer
|
20328
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.destination_addresses #=> Array
|
20329
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.destination_addresses[0] #=> String
|
20330
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.destination_port_ranges #=> Array
|
20331
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.destination_port_ranges[0].from #=> Integer
|
20332
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.destination_port_ranges[0].to #=> Integer
|
20333
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.protocol #=> String
|
20334
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.source_addresses #=> Array
|
20335
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.source_addresses[0] #=> String
|
20336
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.source_port_ranges #=> Array
|
20337
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.source_port_ranges[0].from #=> Integer
|
20338
|
+
# resp.network_insights_analyses[0].forward_path_components[0].inbound_header.source_port_ranges[0].to #=> Integer
|
20339
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.destination_cidr #=> String
|
20340
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.destination_prefix_list_id #=> String
|
20341
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.egress_only_internet_gateway_id #=> String
|
20342
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.gateway_id #=> String
|
20343
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.instance_id #=> String
|
20344
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.nat_gateway_id #=> String
|
20345
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.network_interface_id #=> String
|
20346
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.origin #=> String
|
20347
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.transit_gateway_id #=> String
|
20348
|
+
# resp.network_insights_analyses[0].forward_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
20349
|
+
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.cidr #=> String
|
20350
|
+
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.direction #=> String
|
20351
|
+
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.security_group_id #=> String
|
20352
|
+
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.port_range.from #=> Integer
|
20353
|
+
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.port_range.to #=> Integer
|
20354
|
+
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.prefix_list_id #=> String
|
20355
|
+
# resp.network_insights_analyses[0].forward_path_components[0].security_group_rule.protocol #=> String
|
20356
|
+
# resp.network_insights_analyses[0].forward_path_components[0].source_vpc.id #=> String
|
20357
|
+
# resp.network_insights_analyses[0].forward_path_components[0].source_vpc.arn #=> String
|
20358
|
+
# resp.network_insights_analyses[0].forward_path_components[0].subnet.id #=> String
|
20359
|
+
# resp.network_insights_analyses[0].forward_path_components[0].subnet.arn #=> String
|
20360
|
+
# resp.network_insights_analyses[0].forward_path_components[0].vpc.id #=> String
|
20361
|
+
# resp.network_insights_analyses[0].forward_path_components[0].vpc.arn #=> String
|
20362
|
+
# resp.network_insights_analyses[0].return_path_components #=> Array
|
20363
|
+
# resp.network_insights_analyses[0].return_path_components[0].sequence_number #=> Integer
|
20364
|
+
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.cidr #=> String
|
20365
|
+
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.egress #=> Boolean
|
20366
|
+
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.port_range.from #=> Integer
|
20367
|
+
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.port_range.to #=> Integer
|
20368
|
+
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.protocol #=> String
|
20369
|
+
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.rule_action #=> String
|
20370
|
+
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.rule_number #=> Integer
|
20371
|
+
# resp.network_insights_analyses[0].return_path_components[0].component.id #=> String
|
20372
|
+
# resp.network_insights_analyses[0].return_path_components[0].component.arn #=> String
|
20373
|
+
# resp.network_insights_analyses[0].return_path_components[0].destination_vpc.id #=> String
|
20374
|
+
# resp.network_insights_analyses[0].return_path_components[0].destination_vpc.arn #=> String
|
20375
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.destination_addresses #=> Array
|
20376
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.destination_addresses[0] #=> String
|
20377
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.destination_port_ranges #=> Array
|
20378
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.destination_port_ranges[0].from #=> Integer
|
20379
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.destination_port_ranges[0].to #=> Integer
|
20380
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.protocol #=> String
|
20381
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.source_addresses #=> Array
|
20382
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.source_addresses[0] #=> String
|
20383
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.source_port_ranges #=> Array
|
20384
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.source_port_ranges[0].from #=> Integer
|
20385
|
+
# resp.network_insights_analyses[0].return_path_components[0].outbound_header.source_port_ranges[0].to #=> Integer
|
20386
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.destination_addresses #=> Array
|
20387
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.destination_addresses[0] #=> String
|
20388
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.destination_port_ranges #=> Array
|
20389
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.destination_port_ranges[0].from #=> Integer
|
20390
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.destination_port_ranges[0].to #=> Integer
|
20391
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.protocol #=> String
|
20392
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.source_addresses #=> Array
|
20393
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.source_addresses[0] #=> String
|
20394
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.source_port_ranges #=> Array
|
20395
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.source_port_ranges[0].from #=> Integer
|
20396
|
+
# resp.network_insights_analyses[0].return_path_components[0].inbound_header.source_port_ranges[0].to #=> Integer
|
20397
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.destination_cidr #=> String
|
20398
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.destination_prefix_list_id #=> String
|
20399
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.egress_only_internet_gateway_id #=> String
|
20400
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.gateway_id #=> String
|
20401
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.instance_id #=> String
|
20402
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.nat_gateway_id #=> String
|
20403
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.network_interface_id #=> String
|
20404
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.origin #=> String
|
20405
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.transit_gateway_id #=> String
|
20406
|
+
# resp.network_insights_analyses[0].return_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
20407
|
+
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.cidr #=> String
|
20408
|
+
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.direction #=> String
|
20409
|
+
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.security_group_id #=> String
|
20410
|
+
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.port_range.from #=> Integer
|
20411
|
+
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.port_range.to #=> Integer
|
20412
|
+
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.prefix_list_id #=> String
|
20413
|
+
# resp.network_insights_analyses[0].return_path_components[0].security_group_rule.protocol #=> String
|
20414
|
+
# resp.network_insights_analyses[0].return_path_components[0].source_vpc.id #=> String
|
20415
|
+
# resp.network_insights_analyses[0].return_path_components[0].source_vpc.arn #=> String
|
20416
|
+
# resp.network_insights_analyses[0].return_path_components[0].subnet.id #=> String
|
20417
|
+
# resp.network_insights_analyses[0].return_path_components[0].subnet.arn #=> String
|
20418
|
+
# resp.network_insights_analyses[0].return_path_components[0].vpc.id #=> String
|
20419
|
+
# resp.network_insights_analyses[0].return_path_components[0].vpc.arn #=> String
|
20420
|
+
# resp.network_insights_analyses[0].explanations #=> Array
|
20421
|
+
# resp.network_insights_analyses[0].explanations[0].acl.id #=> String
|
20422
|
+
# resp.network_insights_analyses[0].explanations[0].acl.arn #=> String
|
20423
|
+
# resp.network_insights_analyses[0].explanations[0].acl_rule.cidr #=> String
|
20424
|
+
# resp.network_insights_analyses[0].explanations[0].acl_rule.egress #=> Boolean
|
20425
|
+
# resp.network_insights_analyses[0].explanations[0].acl_rule.port_range.from #=> Integer
|
20426
|
+
# resp.network_insights_analyses[0].explanations[0].acl_rule.port_range.to #=> Integer
|
20427
|
+
# resp.network_insights_analyses[0].explanations[0].acl_rule.protocol #=> String
|
20428
|
+
# resp.network_insights_analyses[0].explanations[0].acl_rule.rule_action #=> String
|
20429
|
+
# resp.network_insights_analyses[0].explanations[0].acl_rule.rule_number #=> Integer
|
20430
|
+
# resp.network_insights_analyses[0].explanations[0].address #=> String
|
20431
|
+
# resp.network_insights_analyses[0].explanations[0].addresses #=> Array
|
20432
|
+
# resp.network_insights_analyses[0].explanations[0].addresses[0] #=> String
|
20433
|
+
# resp.network_insights_analyses[0].explanations[0].attached_to.id #=> String
|
20434
|
+
# resp.network_insights_analyses[0].explanations[0].attached_to.arn #=> String
|
20435
|
+
# resp.network_insights_analyses[0].explanations[0].availability_zones #=> Array
|
20436
|
+
# resp.network_insights_analyses[0].explanations[0].availability_zones[0] #=> String
|
20437
|
+
# resp.network_insights_analyses[0].explanations[0].cidrs #=> Array
|
20438
|
+
# resp.network_insights_analyses[0].explanations[0].cidrs[0] #=> String
|
20439
|
+
# resp.network_insights_analyses[0].explanations[0].component.id #=> String
|
20440
|
+
# resp.network_insights_analyses[0].explanations[0].component.arn #=> String
|
20441
|
+
# resp.network_insights_analyses[0].explanations[0].customer_gateway.id #=> String
|
20442
|
+
# resp.network_insights_analyses[0].explanations[0].customer_gateway.arn #=> String
|
20443
|
+
# resp.network_insights_analyses[0].explanations[0].destination.id #=> String
|
20444
|
+
# resp.network_insights_analyses[0].explanations[0].destination.arn #=> String
|
20445
|
+
# resp.network_insights_analyses[0].explanations[0].destination_vpc.id #=> String
|
20446
|
+
# resp.network_insights_analyses[0].explanations[0].destination_vpc.arn #=> String
|
20447
|
+
# resp.network_insights_analyses[0].explanations[0].direction #=> String
|
20448
|
+
# resp.network_insights_analyses[0].explanations[0].explanation_code #=> String
|
20449
|
+
# resp.network_insights_analyses[0].explanations[0].ingress_route_table.id #=> String
|
20450
|
+
# resp.network_insights_analyses[0].explanations[0].ingress_route_table.arn #=> String
|
20451
|
+
# resp.network_insights_analyses[0].explanations[0].internet_gateway.id #=> String
|
20452
|
+
# resp.network_insights_analyses[0].explanations[0].internet_gateway.arn #=> String
|
20453
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_arn #=> String
|
20454
|
+
# resp.network_insights_analyses[0].explanations[0].classic_load_balancer_listener.load_balancer_port #=> Integer
|
20455
|
+
# resp.network_insights_analyses[0].explanations[0].classic_load_balancer_listener.instance_port #=> Integer
|
20456
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_listener_port #=> Integer
|
20457
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target.address #=> String
|
20458
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target.availability_zone #=> String
|
20459
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target.instance.id #=> String
|
20460
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target.instance.arn #=> String
|
20461
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target.port #=> Integer
|
20462
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target_group.id #=> String
|
20463
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target_group.arn #=> String
|
20464
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target_groups #=> Array
|
20465
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target_groups[0].id #=> String
|
20466
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target_groups[0].arn #=> String
|
20467
|
+
# resp.network_insights_analyses[0].explanations[0].load_balancer_target_port #=> Integer
|
20468
|
+
# resp.network_insights_analyses[0].explanations[0].elastic_load_balancer_listener.id #=> String
|
20469
|
+
# resp.network_insights_analyses[0].explanations[0].elastic_load_balancer_listener.arn #=> String
|
20470
|
+
# resp.network_insights_analyses[0].explanations[0].missing_component #=> String
|
20471
|
+
# resp.network_insights_analyses[0].explanations[0].nat_gateway.id #=> String
|
20472
|
+
# resp.network_insights_analyses[0].explanations[0].nat_gateway.arn #=> String
|
20473
|
+
# resp.network_insights_analyses[0].explanations[0].network_interface.id #=> String
|
20474
|
+
# resp.network_insights_analyses[0].explanations[0].network_interface.arn #=> String
|
20475
|
+
# resp.network_insights_analyses[0].explanations[0].packet_field #=> String
|
20476
|
+
# resp.network_insights_analyses[0].explanations[0].vpc_peering_connection.id #=> String
|
20477
|
+
# resp.network_insights_analyses[0].explanations[0].vpc_peering_connection.arn #=> String
|
20478
|
+
# resp.network_insights_analyses[0].explanations[0].port #=> Integer
|
20479
|
+
# resp.network_insights_analyses[0].explanations[0].port_ranges #=> Array
|
20480
|
+
# resp.network_insights_analyses[0].explanations[0].port_ranges[0].from #=> Integer
|
20481
|
+
# resp.network_insights_analyses[0].explanations[0].port_ranges[0].to #=> Integer
|
20482
|
+
# resp.network_insights_analyses[0].explanations[0].prefix_list.id #=> String
|
20483
|
+
# resp.network_insights_analyses[0].explanations[0].prefix_list.arn #=> String
|
20484
|
+
# resp.network_insights_analyses[0].explanations[0].protocols #=> Array
|
20485
|
+
# resp.network_insights_analyses[0].explanations[0].protocols[0] #=> String
|
20486
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.destination_cidr #=> String
|
20487
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.destination_prefix_list_id #=> String
|
20488
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.egress_only_internet_gateway_id #=> String
|
20489
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.gateway_id #=> String
|
20490
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.instance_id #=> String
|
20491
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.nat_gateway_id #=> String
|
20492
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.network_interface_id #=> String
|
20493
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.origin #=> String
|
20494
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.transit_gateway_id #=> String
|
20495
|
+
# resp.network_insights_analyses[0].explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
20496
|
+
# resp.network_insights_analyses[0].explanations[0].route_table.id #=> String
|
20497
|
+
# resp.network_insights_analyses[0].explanations[0].route_table.arn #=> String
|
20498
|
+
# resp.network_insights_analyses[0].explanations[0].security_group.id #=> String
|
20499
|
+
# resp.network_insights_analyses[0].explanations[0].security_group.arn #=> String
|
20500
|
+
# resp.network_insights_analyses[0].explanations[0].security_group_rule.cidr #=> String
|
20501
|
+
# resp.network_insights_analyses[0].explanations[0].security_group_rule.direction #=> String
|
20502
|
+
# resp.network_insights_analyses[0].explanations[0].security_group_rule.security_group_id #=> String
|
20503
|
+
# resp.network_insights_analyses[0].explanations[0].security_group_rule.port_range.from #=> Integer
|
20504
|
+
# resp.network_insights_analyses[0].explanations[0].security_group_rule.port_range.to #=> Integer
|
20505
|
+
# resp.network_insights_analyses[0].explanations[0].security_group_rule.prefix_list_id #=> String
|
20506
|
+
# resp.network_insights_analyses[0].explanations[0].security_group_rule.protocol #=> String
|
20507
|
+
# resp.network_insights_analyses[0].explanations[0].security_groups #=> Array
|
20508
|
+
# resp.network_insights_analyses[0].explanations[0].security_groups[0].id #=> String
|
20509
|
+
# resp.network_insights_analyses[0].explanations[0].security_groups[0].arn #=> String
|
20510
|
+
# resp.network_insights_analyses[0].explanations[0].source_vpc.id #=> String
|
20511
|
+
# resp.network_insights_analyses[0].explanations[0].source_vpc.arn #=> String
|
20512
|
+
# resp.network_insights_analyses[0].explanations[0].state #=> String
|
20513
|
+
# resp.network_insights_analyses[0].explanations[0].subnet.id #=> String
|
20514
|
+
# resp.network_insights_analyses[0].explanations[0].subnet.arn #=> String
|
20515
|
+
# resp.network_insights_analyses[0].explanations[0].subnet_route_table.id #=> String
|
20516
|
+
# resp.network_insights_analyses[0].explanations[0].subnet_route_table.arn #=> String
|
20517
|
+
# resp.network_insights_analyses[0].explanations[0].vpc.id #=> String
|
20518
|
+
# resp.network_insights_analyses[0].explanations[0].vpc.arn #=> String
|
20519
|
+
# resp.network_insights_analyses[0].explanations[0].vpc_endpoint.id #=> String
|
20520
|
+
# resp.network_insights_analyses[0].explanations[0].vpc_endpoint.arn #=> String
|
20521
|
+
# resp.network_insights_analyses[0].explanations[0].vpn_connection.id #=> String
|
20522
|
+
# resp.network_insights_analyses[0].explanations[0].vpn_connection.arn #=> String
|
20523
|
+
# resp.network_insights_analyses[0].explanations[0].vpn_gateway.id #=> String
|
20524
|
+
# resp.network_insights_analyses[0].explanations[0].vpn_gateway.arn #=> String
|
20525
|
+
# resp.network_insights_analyses[0].alternate_path_hints #=> Array
|
20526
|
+
# resp.network_insights_analyses[0].alternate_path_hints[0].component_id #=> String
|
20527
|
+
# resp.network_insights_analyses[0].alternate_path_hints[0].component_arn #=> String
|
20528
|
+
# resp.network_insights_analyses[0].tags #=> Array
|
20529
|
+
# resp.network_insights_analyses[0].tags[0].key #=> String
|
20530
|
+
# resp.network_insights_analyses[0].tags[0].value #=> String
|
20531
|
+
# resp.next_token #=> String
|
20532
|
+
#
|
20533
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInsightsAnalyses AWS API Documentation
|
20534
|
+
#
|
20535
|
+
# @overload describe_network_insights_analyses(params = {})
|
20536
|
+
# @param [Hash] params ({})
|
20537
|
+
def describe_network_insights_analyses(params = {}, options = {})
|
20538
|
+
req = build_request(:describe_network_insights_analyses, params)
|
20539
|
+
req.send_request(options)
|
20540
|
+
end
|
20541
|
+
|
20542
|
+
# Describes one or more of your paths.
|
20543
|
+
#
|
20544
|
+
# @option params [Array<String>] :network_insights_path_ids
|
20545
|
+
# The IDs of the paths.
|
20546
|
+
#
|
20547
|
+
# @option params [Array<Types::Filter>] :filters
|
20548
|
+
# The filters. The following are possible values:
|
20549
|
+
#
|
20550
|
+
# * Destination - The ID of the resource.
|
20551
|
+
#
|
20552
|
+
# * DestinationPort - The destination port.
|
20553
|
+
#
|
20554
|
+
# * Name - The path name.
|
20555
|
+
#
|
20556
|
+
# * Protocol - The protocol.
|
20557
|
+
#
|
20558
|
+
# * Source - The ID of the resource.
|
20559
|
+
#
|
20560
|
+
# @option params [Integer] :max_results
|
20561
|
+
# The maximum number of results to return with a single call. To
|
20562
|
+
# retrieve the remaining results, make another call with the returned
|
20563
|
+
# `nextToken` value.
|
20564
|
+
#
|
20565
|
+
# @option params [Boolean] :dry_run
|
20566
|
+
# Checks whether you have the required permissions for the action,
|
20567
|
+
# without actually making the request, and provides an error response.
|
20568
|
+
# If you have the required permissions, the error response is
|
20569
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
20570
|
+
#
|
20571
|
+
# @option params [String] :next_token
|
20572
|
+
# The token for the next page of results.
|
20573
|
+
#
|
20574
|
+
# @return [Types::DescribeNetworkInsightsPathsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20575
|
+
#
|
20576
|
+
# * {Types::DescribeNetworkInsightsPathsResult#network_insights_paths #network_insights_paths} => Array<Types::NetworkInsightsPath>
|
20577
|
+
# * {Types::DescribeNetworkInsightsPathsResult#next_token #next_token} => String
|
20578
|
+
#
|
20579
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
20580
|
+
#
|
20581
|
+
# @example Request syntax with placeholder values
|
20582
|
+
#
|
20583
|
+
# resp = client.describe_network_insights_paths({
|
20584
|
+
# network_insights_path_ids: ["NetworkInsightsPathId"],
|
20585
|
+
# filters: [
|
20586
|
+
# {
|
20587
|
+
# name: "String",
|
20588
|
+
# values: ["String"],
|
20589
|
+
# },
|
20590
|
+
# ],
|
20591
|
+
# max_results: 1,
|
20592
|
+
# dry_run: false,
|
20593
|
+
# next_token: "NextToken",
|
20594
|
+
# })
|
20595
|
+
#
|
20596
|
+
# @example Response structure
|
20597
|
+
#
|
20598
|
+
# resp.network_insights_paths #=> Array
|
20599
|
+
# resp.network_insights_paths[0].network_insights_path_id #=> String
|
20600
|
+
# resp.network_insights_paths[0].network_insights_path_arn #=> String
|
20601
|
+
# resp.network_insights_paths[0].created_date #=> Time
|
20602
|
+
# resp.network_insights_paths[0].source #=> String
|
20603
|
+
# resp.network_insights_paths[0].destination #=> String
|
20604
|
+
# resp.network_insights_paths[0].source_ip #=> String
|
20605
|
+
# resp.network_insights_paths[0].destination_ip #=> String
|
20606
|
+
# resp.network_insights_paths[0].protocol #=> String, one of "tcp", "udp"
|
20607
|
+
# resp.network_insights_paths[0].destination_port #=> Integer
|
20608
|
+
# resp.network_insights_paths[0].tags #=> Array
|
20609
|
+
# resp.network_insights_paths[0].tags[0].key #=> String
|
20610
|
+
# resp.network_insights_paths[0].tags[0].value #=> String
|
20611
|
+
# resp.next_token #=> String
|
20612
|
+
#
|
20613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInsightsPaths AWS API Documentation
|
20614
|
+
#
|
20615
|
+
# @overload describe_network_insights_paths(params = {})
|
20616
|
+
# @param [Hash] params ({})
|
20617
|
+
def describe_network_insights_paths(params = {}, options = {})
|
20618
|
+
req = build_request(:describe_network_insights_paths, params)
|
20619
|
+
req.send_request(options)
|
20620
|
+
end
|
20621
|
+
|
19712
20622
|
# Describes a network interface attribute. You can specify only one
|
19713
20623
|
# attribute at a time.
|
19714
20624
|
#
|
@@ -22763,7 +23673,7 @@ module Aws::EC2
|
|
22763
23673
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].user_data #=> String
|
22764
23674
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].weighted_capacity #=> Float
|
22765
23675
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications #=> Array
|
22766
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
23676
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "network-insights-analysis", "network-insights-path", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-connect-peer", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
22767
23677
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags #=> Array
|
22768
23678
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags[0].key #=> String
|
22769
23679
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags[0].value #=> String
|
@@ -22795,7 +23705,7 @@ module Aws::EC2
|
|
22795
23705
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.load_balancers_config.target_groups_config.target_groups[0].arn #=> String
|
22796
23706
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.instance_pools_to_use_count #=> Integer
|
22797
23707
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications #=> Array
|
22798
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
23708
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "network-insights-analysis", "network-insights-path", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-connect-peer", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
22799
23709
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].tags #=> Array
|
22800
23710
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].tags[0].key #=> String
|
22801
23711
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.tag_specifications[0].tags[0].value #=> String
|
@@ -23669,7 +24579,7 @@ module Aws::EC2
|
|
23669
24579
|
# resp.tags #=> Array
|
23670
24580
|
# resp.tags[0].key #=> String
|
23671
24581
|
# resp.tags[0].resource_id #=> String
|
23672
|
-
# resp.tags[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
24582
|
+
# resp.tags[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "network-insights-analysis", "network-insights-path", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-connect-peer", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
23673
24583
|
# resp.tags[0].value #=> String
|
23674
24584
|
#
|
23675
24585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTags AWS API Documentation
|
@@ -23974,7 +24884,7 @@ module Aws::EC2
|
|
23974
24884
|
# resource.
|
23975
24885
|
#
|
23976
24886
|
# * `resource-type` - The resource type. Valid values are `vpc` \| `vpn`
|
23977
|
-
# \| `direct-connect-gateway` \| `peering`.
|
24887
|
+
# \| `direct-connect-gateway` \| `peering` \| `connect`.
|
23978
24888
|
#
|
23979
24889
|
# * `state` - The state of the attachment. Valid values are `available`
|
23980
24890
|
# \| `deleted` \| `deleting` \| `failed` \| `failing` \|
|
@@ -24031,7 +24941,7 @@ module Aws::EC2
|
|
24031
24941
|
# resp.transit_gateway_attachments[0].transit_gateway_id #=> String
|
24032
24942
|
# resp.transit_gateway_attachments[0].transit_gateway_owner_id #=> String
|
24033
24943
|
# resp.transit_gateway_attachments[0].resource_owner_id #=> String
|
24034
|
-
# resp.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
24944
|
+
# resp.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
24035
24945
|
# resp.transit_gateway_attachments[0].resource_id #=> String
|
24036
24946
|
# resp.transit_gateway_attachments[0].state #=> String, one of "initiating", "initiatingRequest", "pendingAcceptance", "rollingBack", "pending", "available", "modifying", "deleting", "deleted", "failed", "rejected", "rejecting", "failing"
|
24037
24947
|
# resp.transit_gateway_attachments[0].association.transit_gateway_route_table_id #=> String
|
@@ -24051,6 +24961,170 @@ module Aws::EC2
|
|
24051
24961
|
req.send_request(options)
|
24052
24962
|
end
|
24053
24963
|
|
24964
|
+
# Describes one or more Connect peers.
|
24965
|
+
#
|
24966
|
+
# @option params [Array<String>] :transit_gateway_connect_peer_ids
|
24967
|
+
# The IDs of the Connect peers.
|
24968
|
+
#
|
24969
|
+
# @option params [Array<Types::Filter>] :filters
|
24970
|
+
# One or more filters. The possible values are:
|
24971
|
+
#
|
24972
|
+
# * `state` - The state of the Connect peer (`pending` \| `available` \|
|
24973
|
+
# `deleting` \| `deleted`).
|
24974
|
+
#
|
24975
|
+
# * `transit-gateway-attachment-id` - The ID of the attachment.
|
24976
|
+
#
|
24977
|
+
# * `transit-gateway-connect-peer-id` - The ID of the Connect peer.
|
24978
|
+
#
|
24979
|
+
# @option params [Integer] :max_results
|
24980
|
+
# The maximum number of results to return with a single call. To
|
24981
|
+
# retrieve the remaining results, make another call with the returned
|
24982
|
+
# `nextToken` value.
|
24983
|
+
#
|
24984
|
+
# @option params [String] :next_token
|
24985
|
+
# The token for the next page of results.
|
24986
|
+
#
|
24987
|
+
# @option params [Boolean] :dry_run
|
24988
|
+
# Checks whether you have the required permissions for the action,
|
24989
|
+
# without actually making the request, and provides an error response.
|
24990
|
+
# If you have the required permissions, the error response is
|
24991
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
24992
|
+
#
|
24993
|
+
# @return [Types::DescribeTransitGatewayConnectPeersResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24994
|
+
#
|
24995
|
+
# * {Types::DescribeTransitGatewayConnectPeersResult#transit_gateway_connect_peers #transit_gateway_connect_peers} => Array<Types::TransitGatewayConnectPeer>
|
24996
|
+
# * {Types::DescribeTransitGatewayConnectPeersResult#next_token #next_token} => String
|
24997
|
+
#
|
24998
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
24999
|
+
#
|
25000
|
+
# @example Request syntax with placeholder values
|
25001
|
+
#
|
25002
|
+
# resp = client.describe_transit_gateway_connect_peers({
|
25003
|
+
# transit_gateway_connect_peer_ids: ["TransitGatewayConnectPeerId"],
|
25004
|
+
# filters: [
|
25005
|
+
# {
|
25006
|
+
# name: "String",
|
25007
|
+
# values: ["String"],
|
25008
|
+
# },
|
25009
|
+
# ],
|
25010
|
+
# max_results: 1,
|
25011
|
+
# next_token: "String",
|
25012
|
+
# dry_run: false,
|
25013
|
+
# })
|
25014
|
+
#
|
25015
|
+
# @example Response structure
|
25016
|
+
#
|
25017
|
+
# resp.transit_gateway_connect_peers #=> Array
|
25018
|
+
# resp.transit_gateway_connect_peers[0].transit_gateway_attachment_id #=> String
|
25019
|
+
# resp.transit_gateway_connect_peers[0].transit_gateway_connect_peer_id #=> String
|
25020
|
+
# resp.transit_gateway_connect_peers[0].state #=> String, one of "pending", "available", "deleting", "deleted"
|
25021
|
+
# resp.transit_gateway_connect_peers[0].creation_time #=> Time
|
25022
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.transit_gateway_address #=> String
|
25023
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.peer_address #=> String
|
25024
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.inside_cidr_blocks #=> Array
|
25025
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.inside_cidr_blocks[0] #=> String
|
25026
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.protocol #=> String, one of "gre"
|
25027
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.bgp_configurations #=> Array
|
25028
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.bgp_configurations[0].transit_gateway_asn #=> Integer
|
25029
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.bgp_configurations[0].peer_asn #=> Integer
|
25030
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.bgp_configurations[0].transit_gateway_address #=> String
|
25031
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.bgp_configurations[0].peer_address #=> String
|
25032
|
+
# resp.transit_gateway_connect_peers[0].connect_peer_configuration.bgp_configurations[0].bgp_status #=> String, one of "up", "down"
|
25033
|
+
# resp.transit_gateway_connect_peers[0].tags #=> Array
|
25034
|
+
# resp.transit_gateway_connect_peers[0].tags[0].key #=> String
|
25035
|
+
# resp.transit_gateway_connect_peers[0].tags[0].value #=> String
|
25036
|
+
# resp.next_token #=> String
|
25037
|
+
#
|
25038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTransitGatewayConnectPeers AWS API Documentation
|
25039
|
+
#
|
25040
|
+
# @overload describe_transit_gateway_connect_peers(params = {})
|
25041
|
+
# @param [Hash] params ({})
|
25042
|
+
def describe_transit_gateway_connect_peers(params = {}, options = {})
|
25043
|
+
req = build_request(:describe_transit_gateway_connect_peers, params)
|
25044
|
+
req.send_request(options)
|
25045
|
+
end
|
25046
|
+
|
25047
|
+
# Describes one or more Connect attachments.
|
25048
|
+
#
|
25049
|
+
# @option params [Array<String>] :transit_gateway_attachment_ids
|
25050
|
+
# The IDs of the attachments.
|
25051
|
+
#
|
25052
|
+
# @option params [Array<Types::Filter>] :filters
|
25053
|
+
# One or more filters. The possible values are:
|
25054
|
+
#
|
25055
|
+
# * `options.protocol` - The tunnel protocol (`gre`).
|
25056
|
+
#
|
25057
|
+
# * `state` - The state of the attachment (`initiating` \|
|
25058
|
+
# `initiatingRequest` \| `pendingAcceptance` \| `rollingBack` \|
|
25059
|
+
# `pending` \| `available` \| `modifying` \| `deleting` \| `deleted`
|
25060
|
+
# \| `failed` \| `rejected` \| `rejecting` \| `failing`).
|
25061
|
+
#
|
25062
|
+
# * `transit-gateway-attachment-id` - The ID of the Connect attachment.
|
25063
|
+
#
|
25064
|
+
# * `transit-gateway-id` - The ID of the transit gateway.
|
25065
|
+
#
|
25066
|
+
# * `transport-transit-gateway-attachment-id` - The ID of the transit
|
25067
|
+
# gateway attachment from which the Connect attachment was created.
|
25068
|
+
#
|
25069
|
+
# @option params [Integer] :max_results
|
25070
|
+
# The maximum number of results to return with a single call. To
|
25071
|
+
# retrieve the remaining results, make another call with the returned
|
25072
|
+
# `nextToken` value.
|
25073
|
+
#
|
25074
|
+
# @option params [String] :next_token
|
25075
|
+
# The token for the next page of results.
|
25076
|
+
#
|
25077
|
+
# @option params [Boolean] :dry_run
|
25078
|
+
# Checks whether you have the required permissions for the action,
|
25079
|
+
# without actually making the request, and provides an error response.
|
25080
|
+
# If you have the required permissions, the error response is
|
25081
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
25082
|
+
#
|
25083
|
+
# @return [Types::DescribeTransitGatewayConnectsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25084
|
+
#
|
25085
|
+
# * {Types::DescribeTransitGatewayConnectsResult#transit_gateway_connects #transit_gateway_connects} => Array<Types::TransitGatewayConnect>
|
25086
|
+
# * {Types::DescribeTransitGatewayConnectsResult#next_token #next_token} => String
|
25087
|
+
#
|
25088
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
25089
|
+
#
|
25090
|
+
# @example Request syntax with placeholder values
|
25091
|
+
#
|
25092
|
+
# resp = client.describe_transit_gateway_connects({
|
25093
|
+
# transit_gateway_attachment_ids: ["TransitGatewayAttachmentId"],
|
25094
|
+
# filters: [
|
25095
|
+
# {
|
25096
|
+
# name: "String",
|
25097
|
+
# values: ["String"],
|
25098
|
+
# },
|
25099
|
+
# ],
|
25100
|
+
# max_results: 1,
|
25101
|
+
# next_token: "String",
|
25102
|
+
# dry_run: false,
|
25103
|
+
# })
|
25104
|
+
#
|
25105
|
+
# @example Response structure
|
25106
|
+
#
|
25107
|
+
# resp.transit_gateway_connects #=> Array
|
25108
|
+
# resp.transit_gateway_connects[0].transit_gateway_attachment_id #=> String
|
25109
|
+
# resp.transit_gateway_connects[0].transport_transit_gateway_attachment_id #=> String
|
25110
|
+
# resp.transit_gateway_connects[0].transit_gateway_id #=> String
|
25111
|
+
# resp.transit_gateway_connects[0].state #=> String, one of "initiating", "initiatingRequest", "pendingAcceptance", "rollingBack", "pending", "available", "modifying", "deleting", "deleted", "failed", "rejected", "rejecting", "failing"
|
25112
|
+
# resp.transit_gateway_connects[0].creation_time #=> Time
|
25113
|
+
# resp.transit_gateway_connects[0].options.protocol #=> String, one of "gre"
|
25114
|
+
# resp.transit_gateway_connects[0].tags #=> Array
|
25115
|
+
# resp.transit_gateway_connects[0].tags[0].key #=> String
|
25116
|
+
# resp.transit_gateway_connects[0].tags[0].value #=> String
|
25117
|
+
# resp.next_token #=> String
|
25118
|
+
#
|
25119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTransitGatewayConnects AWS API Documentation
|
25120
|
+
#
|
25121
|
+
# @overload describe_transit_gateway_connects(params = {})
|
25122
|
+
# @param [Hash] params ({})
|
25123
|
+
def describe_transit_gateway_connects(params = {}, options = {})
|
25124
|
+
req = build_request(:describe_transit_gateway_connects, params)
|
25125
|
+
req.send_request(options)
|
25126
|
+
end
|
25127
|
+
|
24054
25128
|
# Describes one or more transit gateway multicast domains.
|
24055
25129
|
#
|
24056
25130
|
# @option params [Array<String>] :transit_gateway_multicast_domain_ids
|
@@ -24108,6 +25182,11 @@ module Aws::EC2
|
|
24108
25182
|
# resp.transit_gateway_multicast_domains #=> Array
|
24109
25183
|
# resp.transit_gateway_multicast_domains[0].transit_gateway_multicast_domain_id #=> String
|
24110
25184
|
# resp.transit_gateway_multicast_domains[0].transit_gateway_id #=> String
|
25185
|
+
# resp.transit_gateway_multicast_domains[0].transit_gateway_multicast_domain_arn #=> String
|
25186
|
+
# resp.transit_gateway_multicast_domains[0].owner_id #=> String
|
25187
|
+
# resp.transit_gateway_multicast_domains[0].options.igmpv_2_support #=> String, one of "enable", "disable"
|
25188
|
+
# resp.transit_gateway_multicast_domains[0].options.static_sources_support #=> String, one of "enable", "disable"
|
25189
|
+
# resp.transit_gateway_multicast_domains[0].options.auto_accept_shared_associations #=> String, one of "enable", "disable"
|
24111
25190
|
# resp.transit_gateway_multicast_domains[0].state #=> String, one of "pending", "available", "deleting", "deleted"
|
24112
25191
|
# resp.transit_gateway_multicast_domains[0].creation_time #=> Time
|
24113
25192
|
# resp.transit_gateway_multicast_domains[0].tags #=> Array
|
@@ -24480,6 +25559,8 @@ module Aws::EC2
|
|
24480
25559
|
# resp.transit_gateways[0].description #=> String
|
24481
25560
|
# resp.transit_gateways[0].creation_time #=> Time
|
24482
25561
|
# resp.transit_gateways[0].options.amazon_side_asn #=> Integer
|
25562
|
+
# resp.transit_gateways[0].options.transit_gateway_cidr_blocks #=> Array
|
25563
|
+
# resp.transit_gateways[0].options.transit_gateway_cidr_blocks[0] #=> String
|
24483
25564
|
# resp.transit_gateways[0].options.auto_accept_shared_attachments #=> String, one of "enable", "disable"
|
24484
25565
|
# resp.transit_gateways[0].options.default_route_table_association #=> String, one of "enable", "disable"
|
24485
25566
|
# resp.transit_gateways[0].options.association_default_route_table_id #=> String
|
@@ -26877,7 +27958,7 @@ module Aws::EC2
|
|
26877
27958
|
#
|
26878
27959
|
# resp.propagation.transit_gateway_attachment_id #=> String
|
26879
27960
|
# resp.propagation.resource_id #=> String
|
26880
|
-
# resp.propagation.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
27961
|
+
# resp.propagation.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
26881
27962
|
# resp.propagation.transit_gateway_route_table_id #=> String
|
26882
27963
|
# resp.propagation.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
|
26883
27964
|
#
|
@@ -27339,7 +28420,7 @@ module Aws::EC2
|
|
27339
28420
|
# resp = client.disassociate_transit_gateway_multicast_domain({
|
27340
28421
|
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
27341
28422
|
# transit_gateway_attachment_id: "TransitGatewayAttachmentId",
|
27342
|
-
# subnet_ids: ["
|
28423
|
+
# subnet_ids: ["SubnetId"],
|
27343
28424
|
# dry_run: false,
|
27344
28425
|
# })
|
27345
28426
|
#
|
@@ -27348,10 +28429,11 @@ module Aws::EC2
|
|
27348
28429
|
# resp.associations.transit_gateway_multicast_domain_id #=> String
|
27349
28430
|
# resp.associations.transit_gateway_attachment_id #=> String
|
27350
28431
|
# resp.associations.resource_id #=> String
|
27351
|
-
# resp.associations.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
28432
|
+
# resp.associations.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
28433
|
+
# resp.associations.resource_owner_id #=> String
|
27352
28434
|
# resp.associations.subnets #=> Array
|
27353
28435
|
# resp.associations.subnets[0].subnet_id #=> String
|
27354
|
-
# resp.associations.subnets[0].state #=> String, one of "associating", "associated", "disassociating", "disassociated"
|
28436
|
+
# resp.associations.subnets[0].state #=> String, one of "pendingAcceptance", "associating", "associated", "disassociating", "disassociated", "rejected", "failed"
|
27355
28437
|
#
|
27356
28438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateTransitGatewayMulticastDomain AWS API Documentation
|
27357
28439
|
#
|
@@ -27394,7 +28476,7 @@ module Aws::EC2
|
|
27394
28476
|
# resp.association.transit_gateway_route_table_id #=> String
|
27395
28477
|
# resp.association.transit_gateway_attachment_id #=> String
|
27396
28478
|
# resp.association.resource_id #=> String
|
27397
|
-
# resp.association.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
28479
|
+
# resp.association.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
27398
28480
|
# resp.association.state #=> String, one of "associating", "associated", "disassociating", "disassociated"
|
27399
28481
|
#
|
27400
28482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateTransitGatewayRouteTable AWS API Documentation
|
@@ -27609,7 +28691,7 @@ module Aws::EC2
|
|
27609
28691
|
#
|
27610
28692
|
# resp.propagation.transit_gateway_attachment_id #=> String
|
27611
28693
|
# resp.propagation.resource_id #=> String
|
27612
|
-
# resp.propagation.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
28694
|
+
# resp.propagation.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
27613
28695
|
# resp.propagation.transit_gateway_route_table_id #=> String
|
27614
28696
|
# resp.propagation.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
|
27615
28697
|
#
|
@@ -27943,7 +29025,7 @@ module Aws::EC2
|
|
27943
29025
|
# role_name: "String",
|
27944
29026
|
# tag_specifications: [
|
27945
29027
|
# {
|
27946
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
29028
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
27947
29029
|
# tags: [
|
27948
29030
|
# {
|
27949
29031
|
# key: "String",
|
@@ -28815,7 +29897,7 @@ module Aws::EC2
|
|
28815
29897
|
# resp.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
|
28816
29898
|
# resp.launch_template_data.user_data #=> String
|
28817
29899
|
# resp.launch_template_data.tag_specifications #=> Array
|
28818
|
-
# resp.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
29900
|
+
# resp.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "egress-only-internet-gateway", "elastic-ip", "elastic-gpu", "export-image-task", "export-instance-task", "fleet", "fpga-image", "host-reservation", "image", "import-image-task", "import-snapshot-task", "instance", "internet-gateway", "key-pair", "launch-template", "local-gateway-route-table-vpc-association", "natgateway", "network-acl", "network-interface", "network-insights-analysis", "network-insights-path", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-connect-peer", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway", "vpc-flow-log"
|
28819
29901
|
# resp.launch_template_data.tag_specifications[0].tags #=> Array
|
28820
29902
|
# resp.launch_template_data.tag_specifications[0].tags[0].key #=> String
|
28821
29903
|
# resp.launch_template_data.tag_specifications[0].tags[0].value #=> String
|
@@ -29243,9 +30325,10 @@ module Aws::EC2
|
|
29243
30325
|
# resp.multicast_domain_associations #=> Array
|
29244
30326
|
# resp.multicast_domain_associations[0].transit_gateway_attachment_id #=> String
|
29245
30327
|
# resp.multicast_domain_associations[0].resource_id #=> String
|
29246
|
-
# resp.multicast_domain_associations[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
30328
|
+
# resp.multicast_domain_associations[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
30329
|
+
# resp.multicast_domain_associations[0].resource_owner_id #=> String
|
29247
30330
|
# resp.multicast_domain_associations[0].subnet.subnet_id #=> String
|
29248
|
-
# resp.multicast_domain_associations[0].subnet.state #=> String, one of "associating", "associated", "disassociating", "disassociated"
|
30331
|
+
# resp.multicast_domain_associations[0].subnet.state #=> String, one of "pendingAcceptance", "associating", "associated", "disassociating", "disassociated", "rejected", "failed"
|
29249
30332
|
# resp.next_token #=> String
|
29250
30333
|
#
|
29251
30334
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetTransitGatewayMulticastDomainAssociations AWS API Documentation
|
@@ -29331,7 +30414,7 @@ module Aws::EC2
|
|
29331
30414
|
# resp.transit_gateway_prefix_list_references[0].state #=> String, one of "pending", "available", "modifying", "deleting"
|
29332
30415
|
# resp.transit_gateway_prefix_list_references[0].blackhole #=> Boolean
|
29333
30416
|
# resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.transit_gateway_attachment_id #=> String
|
29334
|
-
# resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
30417
|
+
# resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
29335
30418
|
# resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.resource_id #=> String
|
29336
30419
|
# resp.next_token #=> String
|
29337
30420
|
#
|
@@ -29356,7 +30439,7 @@ module Aws::EC2
|
|
29356
30439
|
# * `resource-id` - The ID of the resource.
|
29357
30440
|
#
|
29358
30441
|
# * `resource-type` - The resource type. Valid values are `vpc` \| `vpn`
|
29359
|
-
# \| `direct-connect-gateway` \| `peering`.
|
30442
|
+
# \| `direct-connect-gateway` \| `peering` \| `connect`.
|
29360
30443
|
#
|
29361
30444
|
# * `transit-gateway-attachment-id` - The ID of the attachment.
|
29362
30445
|
#
|
@@ -29401,7 +30484,7 @@ module Aws::EC2
|
|
29401
30484
|
# resp.associations #=> Array
|
29402
30485
|
# resp.associations[0].transit_gateway_attachment_id #=> String
|
29403
30486
|
# resp.associations[0].resource_id #=> String
|
29404
|
-
# resp.associations[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
30487
|
+
# resp.associations[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
29405
30488
|
# resp.associations[0].state #=> String, one of "associating", "associated", "disassociating", "disassociated"
|
29406
30489
|
# resp.next_token #=> String
|
29407
30490
|
#
|
@@ -29426,7 +30509,7 @@ module Aws::EC2
|
|
29426
30509
|
# * `resource-id` - The ID of the resource.
|
29427
30510
|
#
|
29428
30511
|
# * `resource-type` - The resource type. Valid values are `vpc` \| `vpn`
|
29429
|
-
# \| `direct-connect-gateway` \| `peering`.
|
30512
|
+
# \| `direct-connect-gateway` \| `peering` \| `connect`.
|
29430
30513
|
#
|
29431
30514
|
# * `transit-gateway-attachment-id` - The ID of the attachment.
|
29432
30515
|
#
|
@@ -29471,7 +30554,7 @@ module Aws::EC2
|
|
29471
30554
|
# resp.transit_gateway_route_table_propagations #=> Array
|
29472
30555
|
# resp.transit_gateway_route_table_propagations[0].transit_gateway_attachment_id #=> String
|
29473
30556
|
# resp.transit_gateway_route_table_propagations[0].resource_id #=> String
|
29474
|
-
# resp.transit_gateway_route_table_propagations[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
30557
|
+
# resp.transit_gateway_route_table_propagations[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
29475
30558
|
# resp.transit_gateway_route_table_propagations[0].state #=> String, one of "enabling", "enabled", "disabling", "disabled"
|
29476
30559
|
# resp.next_token #=> String
|
29477
30560
|
#
|
@@ -29709,7 +30792,7 @@ module Aws::EC2
|
|
29709
30792
|
# ],
|
29710
30793
|
# tag_specifications: [
|
29711
30794
|
# {
|
29712
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
30795
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
29713
30796
|
# tags: [
|
29714
30797
|
# {
|
29715
30798
|
# key: "String",
|
@@ -29929,7 +31012,7 @@ module Aws::EC2
|
|
29929
31012
|
# public_key_material: "data", # required
|
29930
31013
|
# tag_specifications: [
|
29931
31014
|
# {
|
29932
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
31015
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
29933
31016
|
# tags: [
|
29934
31017
|
# {
|
29935
31018
|
# key: "String",
|
@@ -30065,7 +31148,7 @@ module Aws::EC2
|
|
30065
31148
|
# role_name: "String",
|
30066
31149
|
# tag_specifications: [
|
30067
31150
|
# {
|
30068
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
31151
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
30069
31152
|
# tags: [
|
30070
31153
|
# {
|
30071
31154
|
# key: "String",
|
@@ -32664,6 +33747,8 @@ module Aws::EC2
|
|
32664
33747
|
# transit_gateway_id: "TransitGatewayId", # required
|
32665
33748
|
# description: "String",
|
32666
33749
|
# options: {
|
33750
|
+
# add_transit_gateway_cidr_blocks: ["String"],
|
33751
|
+
# remove_transit_gateway_cidr_blocks: ["String"],
|
32667
33752
|
# vpn_ecmp_support: "enable", # accepts enable, disable
|
32668
33753
|
# dns_support: "enable", # accepts enable, disable
|
32669
33754
|
# auto_accept_shared_attachments: "enable", # accepts enable, disable
|
@@ -32684,6 +33769,8 @@ module Aws::EC2
|
|
32684
33769
|
# resp.transit_gateway.description #=> String
|
32685
33770
|
# resp.transit_gateway.creation_time #=> Time
|
32686
33771
|
# resp.transit_gateway.options.amazon_side_asn #=> Integer
|
33772
|
+
# resp.transit_gateway.options.transit_gateway_cidr_blocks #=> Array
|
33773
|
+
# resp.transit_gateway.options.transit_gateway_cidr_blocks[0] #=> String
|
32687
33774
|
# resp.transit_gateway.options.auto_accept_shared_attachments #=> String, one of "enable", "disable"
|
32688
33775
|
# resp.transit_gateway.options.default_route_table_association #=> String, one of "enable", "disable"
|
32689
33776
|
# resp.transit_gateway.options.association_default_route_table_id #=> String
|
@@ -32748,7 +33835,7 @@ module Aws::EC2
|
|
32748
33835
|
# resp.transit_gateway_prefix_list_reference.state #=> String, one of "pending", "available", "modifying", "deleting"
|
32749
33836
|
# resp.transit_gateway_prefix_list_reference.blackhole #=> Boolean
|
32750
33837
|
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.transit_gateway_attachment_id #=> String
|
32751
|
-
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
33838
|
+
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
32752
33839
|
# resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_id #=> String
|
32753
33840
|
#
|
32754
33841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayPrefixListReference AWS API Documentation
|
@@ -34213,7 +35300,7 @@ module Aws::EC2
|
|
34213
35300
|
# dry_run: false,
|
34214
35301
|
# pool_tag_specifications: [
|
34215
35302
|
# {
|
34216
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
35303
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
34217
35304
|
# tags: [
|
34218
35305
|
# {
|
34219
35306
|
# key: "String",
|
@@ -34296,7 +35383,7 @@ module Aws::EC2
|
|
34296
35383
|
# offering_id: "OfferingId", # required
|
34297
35384
|
# tag_specifications: [
|
34298
35385
|
# {
|
34299
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
35386
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
34300
35387
|
# tags: [
|
34301
35388
|
# {
|
34302
35389
|
# key: "String",
|
@@ -34930,6 +36017,58 @@ module Aws::EC2
|
|
34930
36017
|
req.send_request(options)
|
34931
36018
|
end
|
34932
36019
|
|
36020
|
+
# Rejects a request to associate cross-account subnets with a transit
|
36021
|
+
# gateway multicast domain.
|
36022
|
+
#
|
36023
|
+
# @option params [String] :transit_gateway_multicast_domain_id
|
36024
|
+
# The ID of the transit gateway multicast domain.
|
36025
|
+
#
|
36026
|
+
# @option params [String] :transit_gateway_attachment_id
|
36027
|
+
# The ID of the transit gateway attachment.
|
36028
|
+
#
|
36029
|
+
# @option params [Array<String>] :subnet_ids
|
36030
|
+
# The IDs of the subnets to associate with the transit gateway multicast
|
36031
|
+
# domain.
|
36032
|
+
#
|
36033
|
+
# @option params [Boolean] :dry_run
|
36034
|
+
# Checks whether you have the required permissions for the action,
|
36035
|
+
# without actually making the request, and provides an error response.
|
36036
|
+
# If you have the required permissions, the error response is
|
36037
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
36038
|
+
#
|
36039
|
+
# @return [Types::RejectTransitGatewayMulticastDomainAssociationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
36040
|
+
#
|
36041
|
+
# * {Types::RejectTransitGatewayMulticastDomainAssociationsResult#associations #associations} => Types::TransitGatewayMulticastDomainAssociations
|
36042
|
+
#
|
36043
|
+
# @example Request syntax with placeholder values
|
36044
|
+
#
|
36045
|
+
# resp = client.reject_transit_gateway_multicast_domain_associations({
|
36046
|
+
# transit_gateway_multicast_domain_id: "TransitGatewayMulticastDomainId",
|
36047
|
+
# transit_gateway_attachment_id: "TransitGatewayAttachmentId",
|
36048
|
+
# subnet_ids: ["String"],
|
36049
|
+
# dry_run: false,
|
36050
|
+
# })
|
36051
|
+
#
|
36052
|
+
# @example Response structure
|
36053
|
+
#
|
36054
|
+
# resp.associations.transit_gateway_multicast_domain_id #=> String
|
36055
|
+
# resp.associations.transit_gateway_attachment_id #=> String
|
36056
|
+
# resp.associations.resource_id #=> String
|
36057
|
+
# resp.associations.resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
36058
|
+
# resp.associations.resource_owner_id #=> String
|
36059
|
+
# resp.associations.subnets #=> Array
|
36060
|
+
# resp.associations.subnets[0].subnet_id #=> String
|
36061
|
+
# resp.associations.subnets[0].state #=> String, one of "pendingAcceptance", "associating", "associated", "disassociating", "disassociated", "rejected", "failed"
|
36062
|
+
#
|
36063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectTransitGatewayMulticastDomainAssociations AWS API Documentation
|
36064
|
+
#
|
36065
|
+
# @overload reject_transit_gateway_multicast_domain_associations(params = {})
|
36066
|
+
# @param [Hash] params ({})
|
36067
|
+
def reject_transit_gateway_multicast_domain_associations(params = {}, options = {})
|
36068
|
+
req = build_request(:reject_transit_gateway_multicast_domain_associations, params)
|
36069
|
+
req.send_request(options)
|
36070
|
+
end
|
36071
|
+
|
34933
36072
|
# Rejects a transit gateway peering attachment request.
|
34934
36073
|
#
|
34935
36074
|
# @option params [required, String] :transit_gateway_attachment_id
|
@@ -35689,7 +36828,7 @@ module Aws::EC2
|
|
35689
36828
|
# resp.route.transit_gateway_attachments #=> Array
|
35690
36829
|
# resp.route.transit_gateway_attachments[0].resource_id #=> String
|
35691
36830
|
# resp.route.transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
|
35692
|
-
# resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
36831
|
+
# resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
35693
36832
|
# resp.route.type #=> String, one of "static", "propagated"
|
35694
36833
|
# resp.route.state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
|
35695
36834
|
#
|
@@ -36077,7 +37216,7 @@ module Aws::EC2
|
|
36077
37216
|
# weighted_capacity: 1.0,
|
36078
37217
|
# tag_specifications: [
|
36079
37218
|
# {
|
36080
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
37219
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
36081
37220
|
# tags: [
|
36082
37221
|
# {
|
36083
37222
|
# key: "String",
|
@@ -36137,7 +37276,7 @@ module Aws::EC2
|
|
36137
37276
|
# instance_pools_to_use_count: 1,
|
36138
37277
|
# tag_specifications: [
|
36139
37278
|
# {
|
36140
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
37279
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
36141
37280
|
# tags: [
|
36142
37281
|
# {
|
36143
37282
|
# key: "String",
|
@@ -36428,7 +37567,7 @@ module Aws::EC2
|
|
36428
37567
|
# valid_until: Time.now,
|
36429
37568
|
# tag_specifications: [
|
36430
37569
|
# {
|
36431
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
37570
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
36432
37571
|
# tags: [
|
36433
37572
|
# {
|
36434
37573
|
# key: "String",
|
@@ -37846,7 +38985,7 @@ module Aws::EC2
|
|
37846
38985
|
# ],
|
37847
38986
|
# tag_specifications: [
|
37848
38987
|
# {
|
37849
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
38988
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
37850
38989
|
# tags: [
|
37851
38990
|
# {
|
37852
38991
|
# key: "String",
|
@@ -38384,7 +39523,8 @@ module Aws::EC2
|
|
38384
39523
|
# resp.multicast_groups[0].transit_gateway_attachment_id #=> String
|
38385
39524
|
# resp.multicast_groups[0].subnet_id #=> String
|
38386
39525
|
# resp.multicast_groups[0].resource_id #=> String
|
38387
|
-
# resp.multicast_groups[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
39526
|
+
# resp.multicast_groups[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
39527
|
+
# resp.multicast_groups[0].resource_owner_id #=> String
|
38388
39528
|
# resp.multicast_groups[0].network_interface_id #=> String
|
38389
39529
|
# resp.multicast_groups[0].group_member #=> Boolean
|
38390
39530
|
# resp.multicast_groups[0].group_source #=> Boolean
|
@@ -38416,7 +39556,8 @@ module Aws::EC2
|
|
38416
39556
|
# attachment.
|
38417
39557
|
#
|
38418
39558
|
# * `attachment.resource-type` - The attachment resource type. Valid
|
38419
|
-
# values are `vpc` \| `vpn` \| `direct-connect-gateway` \| `peering
|
39559
|
+
# values are `vpc` \| `vpn` \| `direct-connect-gateway` \| `peering`
|
39560
|
+
# \| `connect`.
|
38420
39561
|
#
|
38421
39562
|
# * `prefix-list-id` - The ID of the prefix list.
|
38422
39563
|
#
|
@@ -38475,7 +39616,7 @@ module Aws::EC2
|
|
38475
39616
|
# resp.routes[0].transit_gateway_attachments #=> Array
|
38476
39617
|
# resp.routes[0].transit_gateway_attachments[0].resource_id #=> String
|
38477
39618
|
# resp.routes[0].transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
|
38478
|
-
# resp.routes[0].transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "peering", "tgw-peering"
|
39619
|
+
# resp.routes[0].transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "direct-connect-gateway", "connect", "peering", "tgw-peering"
|
38479
39620
|
# resp.routes[0].type #=> String, one of "static", "propagated"
|
38480
39621
|
# resp.routes[0].state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
|
38481
39622
|
# resp.additional_routes_available #=> Boolean
|
@@ -38641,6 +39782,309 @@ module Aws::EC2
|
|
38641
39782
|
req.send_request(options)
|
38642
39783
|
end
|
38643
39784
|
|
39785
|
+
# Starts analyzing the specified path. If the path is reachable, the
|
39786
|
+
# operation returns the shortest feasible path.
|
39787
|
+
#
|
39788
|
+
# @option params [required, String] :network_insights_path_id
|
39789
|
+
# The ID of the path.
|
39790
|
+
#
|
39791
|
+
# @option params [Array<String>] :filter_in_arns
|
39792
|
+
# The Amazon Resource Names (ARN) of the resources that the path must
|
39793
|
+
# traverse.
|
39794
|
+
#
|
39795
|
+
# @option params [Boolean] :dry_run
|
39796
|
+
# Checks whether you have the required permissions for the action,
|
39797
|
+
# without actually making the request, and provides an error response.
|
39798
|
+
# If you have the required permissions, the error response is
|
39799
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
39800
|
+
#
|
39801
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
39802
|
+
# The tags to apply.
|
39803
|
+
#
|
39804
|
+
# @option params [required, String] :client_token
|
39805
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
39806
|
+
# idempotency of the request. For more information, see [How to Ensure
|
39807
|
+
# Idempotency][1].
|
39808
|
+
#
|
39809
|
+
# **A suitable default value is auto-generated.** You should normally
|
39810
|
+
# not need to pass this option.**
|
39811
|
+
#
|
39812
|
+
#
|
39813
|
+
#
|
39814
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
39815
|
+
#
|
39816
|
+
# @return [Types::StartNetworkInsightsAnalysisResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
39817
|
+
#
|
39818
|
+
# * {Types::StartNetworkInsightsAnalysisResult#network_insights_analysis #network_insights_analysis} => Types::NetworkInsightsAnalysis
|
39819
|
+
#
|
39820
|
+
# @example Request syntax with placeholder values
|
39821
|
+
#
|
39822
|
+
# resp = client.start_network_insights_analysis({
|
39823
|
+
# network_insights_path_id: "NetworkInsightsPathId", # required
|
39824
|
+
# filter_in_arns: ["ResourceArn"],
|
39825
|
+
# dry_run: false,
|
39826
|
+
# tag_specifications: [
|
39827
|
+
# {
|
39828
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
39829
|
+
# tags: [
|
39830
|
+
# {
|
39831
|
+
# key: "String",
|
39832
|
+
# value: "String",
|
39833
|
+
# },
|
39834
|
+
# ],
|
39835
|
+
# },
|
39836
|
+
# ],
|
39837
|
+
# client_token: "String", # required
|
39838
|
+
# })
|
39839
|
+
#
|
39840
|
+
# @example Response structure
|
39841
|
+
#
|
39842
|
+
# resp.network_insights_analysis.network_insights_analysis_id #=> String
|
39843
|
+
# resp.network_insights_analysis.network_insights_analysis_arn #=> String
|
39844
|
+
# resp.network_insights_analysis.network_insights_path_id #=> String
|
39845
|
+
# resp.network_insights_analysis.filter_in_arns #=> Array
|
39846
|
+
# resp.network_insights_analysis.filter_in_arns[0] #=> String
|
39847
|
+
# resp.network_insights_analysis.start_date #=> Time
|
39848
|
+
# resp.network_insights_analysis.status #=> String, one of "running", "succeeded", "failed"
|
39849
|
+
# resp.network_insights_analysis.status_message #=> String
|
39850
|
+
# resp.network_insights_analysis.network_path_found #=> Boolean
|
39851
|
+
# resp.network_insights_analysis.forward_path_components #=> Array
|
39852
|
+
# resp.network_insights_analysis.forward_path_components[0].sequence_number #=> Integer
|
39853
|
+
# resp.network_insights_analysis.forward_path_components[0].acl_rule.cidr #=> String
|
39854
|
+
# resp.network_insights_analysis.forward_path_components[0].acl_rule.egress #=> Boolean
|
39855
|
+
# resp.network_insights_analysis.forward_path_components[0].acl_rule.port_range.from #=> Integer
|
39856
|
+
# resp.network_insights_analysis.forward_path_components[0].acl_rule.port_range.to #=> Integer
|
39857
|
+
# resp.network_insights_analysis.forward_path_components[0].acl_rule.protocol #=> String
|
39858
|
+
# resp.network_insights_analysis.forward_path_components[0].acl_rule.rule_action #=> String
|
39859
|
+
# resp.network_insights_analysis.forward_path_components[0].acl_rule.rule_number #=> Integer
|
39860
|
+
# resp.network_insights_analysis.forward_path_components[0].component.id #=> String
|
39861
|
+
# resp.network_insights_analysis.forward_path_components[0].component.arn #=> String
|
39862
|
+
# resp.network_insights_analysis.forward_path_components[0].destination_vpc.id #=> String
|
39863
|
+
# resp.network_insights_analysis.forward_path_components[0].destination_vpc.arn #=> String
|
39864
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.destination_addresses #=> Array
|
39865
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.destination_addresses[0] #=> String
|
39866
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.destination_port_ranges #=> Array
|
39867
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.destination_port_ranges[0].from #=> Integer
|
39868
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.destination_port_ranges[0].to #=> Integer
|
39869
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.protocol #=> String
|
39870
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.source_addresses #=> Array
|
39871
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.source_addresses[0] #=> String
|
39872
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.source_port_ranges #=> Array
|
39873
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.source_port_ranges[0].from #=> Integer
|
39874
|
+
# resp.network_insights_analysis.forward_path_components[0].outbound_header.source_port_ranges[0].to #=> Integer
|
39875
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.destination_addresses #=> Array
|
39876
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.destination_addresses[0] #=> String
|
39877
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.destination_port_ranges #=> Array
|
39878
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.destination_port_ranges[0].from #=> Integer
|
39879
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.destination_port_ranges[0].to #=> Integer
|
39880
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.protocol #=> String
|
39881
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.source_addresses #=> Array
|
39882
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.source_addresses[0] #=> String
|
39883
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.source_port_ranges #=> Array
|
39884
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.source_port_ranges[0].from #=> Integer
|
39885
|
+
# resp.network_insights_analysis.forward_path_components[0].inbound_header.source_port_ranges[0].to #=> Integer
|
39886
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.destination_cidr #=> String
|
39887
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.destination_prefix_list_id #=> String
|
39888
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.egress_only_internet_gateway_id #=> String
|
39889
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.gateway_id #=> String
|
39890
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.instance_id #=> String
|
39891
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.nat_gateway_id #=> String
|
39892
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.network_interface_id #=> String
|
39893
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.origin #=> String
|
39894
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.transit_gateway_id #=> String
|
39895
|
+
# resp.network_insights_analysis.forward_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
39896
|
+
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.cidr #=> String
|
39897
|
+
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.direction #=> String
|
39898
|
+
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.security_group_id #=> String
|
39899
|
+
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.port_range.from #=> Integer
|
39900
|
+
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.port_range.to #=> Integer
|
39901
|
+
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.prefix_list_id #=> String
|
39902
|
+
# resp.network_insights_analysis.forward_path_components[0].security_group_rule.protocol #=> String
|
39903
|
+
# resp.network_insights_analysis.forward_path_components[0].source_vpc.id #=> String
|
39904
|
+
# resp.network_insights_analysis.forward_path_components[0].source_vpc.arn #=> String
|
39905
|
+
# resp.network_insights_analysis.forward_path_components[0].subnet.id #=> String
|
39906
|
+
# resp.network_insights_analysis.forward_path_components[0].subnet.arn #=> String
|
39907
|
+
# resp.network_insights_analysis.forward_path_components[0].vpc.id #=> String
|
39908
|
+
# resp.network_insights_analysis.forward_path_components[0].vpc.arn #=> String
|
39909
|
+
# resp.network_insights_analysis.return_path_components #=> Array
|
39910
|
+
# resp.network_insights_analysis.return_path_components[0].sequence_number #=> Integer
|
39911
|
+
# resp.network_insights_analysis.return_path_components[0].acl_rule.cidr #=> String
|
39912
|
+
# resp.network_insights_analysis.return_path_components[0].acl_rule.egress #=> Boolean
|
39913
|
+
# resp.network_insights_analysis.return_path_components[0].acl_rule.port_range.from #=> Integer
|
39914
|
+
# resp.network_insights_analysis.return_path_components[0].acl_rule.port_range.to #=> Integer
|
39915
|
+
# resp.network_insights_analysis.return_path_components[0].acl_rule.protocol #=> String
|
39916
|
+
# resp.network_insights_analysis.return_path_components[0].acl_rule.rule_action #=> String
|
39917
|
+
# resp.network_insights_analysis.return_path_components[0].acl_rule.rule_number #=> Integer
|
39918
|
+
# resp.network_insights_analysis.return_path_components[0].component.id #=> String
|
39919
|
+
# resp.network_insights_analysis.return_path_components[0].component.arn #=> String
|
39920
|
+
# resp.network_insights_analysis.return_path_components[0].destination_vpc.id #=> String
|
39921
|
+
# resp.network_insights_analysis.return_path_components[0].destination_vpc.arn #=> String
|
39922
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.destination_addresses #=> Array
|
39923
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.destination_addresses[0] #=> String
|
39924
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.destination_port_ranges #=> Array
|
39925
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.destination_port_ranges[0].from #=> Integer
|
39926
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.destination_port_ranges[0].to #=> Integer
|
39927
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.protocol #=> String
|
39928
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.source_addresses #=> Array
|
39929
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.source_addresses[0] #=> String
|
39930
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.source_port_ranges #=> Array
|
39931
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.source_port_ranges[0].from #=> Integer
|
39932
|
+
# resp.network_insights_analysis.return_path_components[0].outbound_header.source_port_ranges[0].to #=> Integer
|
39933
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.destination_addresses #=> Array
|
39934
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.destination_addresses[0] #=> String
|
39935
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.destination_port_ranges #=> Array
|
39936
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.destination_port_ranges[0].from #=> Integer
|
39937
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.destination_port_ranges[0].to #=> Integer
|
39938
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.protocol #=> String
|
39939
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.source_addresses #=> Array
|
39940
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.source_addresses[0] #=> String
|
39941
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.source_port_ranges #=> Array
|
39942
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.source_port_ranges[0].from #=> Integer
|
39943
|
+
# resp.network_insights_analysis.return_path_components[0].inbound_header.source_port_ranges[0].to #=> Integer
|
39944
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.destination_cidr #=> String
|
39945
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.destination_prefix_list_id #=> String
|
39946
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.egress_only_internet_gateway_id #=> String
|
39947
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.gateway_id #=> String
|
39948
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.instance_id #=> String
|
39949
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.nat_gateway_id #=> String
|
39950
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.network_interface_id #=> String
|
39951
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.origin #=> String
|
39952
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.transit_gateway_id #=> String
|
39953
|
+
# resp.network_insights_analysis.return_path_components[0].route_table_route.vpc_peering_connection_id #=> String
|
39954
|
+
# resp.network_insights_analysis.return_path_components[0].security_group_rule.cidr #=> String
|
39955
|
+
# resp.network_insights_analysis.return_path_components[0].security_group_rule.direction #=> String
|
39956
|
+
# resp.network_insights_analysis.return_path_components[0].security_group_rule.security_group_id #=> String
|
39957
|
+
# resp.network_insights_analysis.return_path_components[0].security_group_rule.port_range.from #=> Integer
|
39958
|
+
# resp.network_insights_analysis.return_path_components[0].security_group_rule.port_range.to #=> Integer
|
39959
|
+
# resp.network_insights_analysis.return_path_components[0].security_group_rule.prefix_list_id #=> String
|
39960
|
+
# resp.network_insights_analysis.return_path_components[0].security_group_rule.protocol #=> String
|
39961
|
+
# resp.network_insights_analysis.return_path_components[0].source_vpc.id #=> String
|
39962
|
+
# resp.network_insights_analysis.return_path_components[0].source_vpc.arn #=> String
|
39963
|
+
# resp.network_insights_analysis.return_path_components[0].subnet.id #=> String
|
39964
|
+
# resp.network_insights_analysis.return_path_components[0].subnet.arn #=> String
|
39965
|
+
# resp.network_insights_analysis.return_path_components[0].vpc.id #=> String
|
39966
|
+
# resp.network_insights_analysis.return_path_components[0].vpc.arn #=> String
|
39967
|
+
# resp.network_insights_analysis.explanations #=> Array
|
39968
|
+
# resp.network_insights_analysis.explanations[0].acl.id #=> String
|
39969
|
+
# resp.network_insights_analysis.explanations[0].acl.arn #=> String
|
39970
|
+
# resp.network_insights_analysis.explanations[0].acl_rule.cidr #=> String
|
39971
|
+
# resp.network_insights_analysis.explanations[0].acl_rule.egress #=> Boolean
|
39972
|
+
# resp.network_insights_analysis.explanations[0].acl_rule.port_range.from #=> Integer
|
39973
|
+
# resp.network_insights_analysis.explanations[0].acl_rule.port_range.to #=> Integer
|
39974
|
+
# resp.network_insights_analysis.explanations[0].acl_rule.protocol #=> String
|
39975
|
+
# resp.network_insights_analysis.explanations[0].acl_rule.rule_action #=> String
|
39976
|
+
# resp.network_insights_analysis.explanations[0].acl_rule.rule_number #=> Integer
|
39977
|
+
# resp.network_insights_analysis.explanations[0].address #=> String
|
39978
|
+
# resp.network_insights_analysis.explanations[0].addresses #=> Array
|
39979
|
+
# resp.network_insights_analysis.explanations[0].addresses[0] #=> String
|
39980
|
+
# resp.network_insights_analysis.explanations[0].attached_to.id #=> String
|
39981
|
+
# resp.network_insights_analysis.explanations[0].attached_to.arn #=> String
|
39982
|
+
# resp.network_insights_analysis.explanations[0].availability_zones #=> Array
|
39983
|
+
# resp.network_insights_analysis.explanations[0].availability_zones[0] #=> String
|
39984
|
+
# resp.network_insights_analysis.explanations[0].cidrs #=> Array
|
39985
|
+
# resp.network_insights_analysis.explanations[0].cidrs[0] #=> String
|
39986
|
+
# resp.network_insights_analysis.explanations[0].component.id #=> String
|
39987
|
+
# resp.network_insights_analysis.explanations[0].component.arn #=> String
|
39988
|
+
# resp.network_insights_analysis.explanations[0].customer_gateway.id #=> String
|
39989
|
+
# resp.network_insights_analysis.explanations[0].customer_gateway.arn #=> String
|
39990
|
+
# resp.network_insights_analysis.explanations[0].destination.id #=> String
|
39991
|
+
# resp.network_insights_analysis.explanations[0].destination.arn #=> String
|
39992
|
+
# resp.network_insights_analysis.explanations[0].destination_vpc.id #=> String
|
39993
|
+
# resp.network_insights_analysis.explanations[0].destination_vpc.arn #=> String
|
39994
|
+
# resp.network_insights_analysis.explanations[0].direction #=> String
|
39995
|
+
# resp.network_insights_analysis.explanations[0].explanation_code #=> String
|
39996
|
+
# resp.network_insights_analysis.explanations[0].ingress_route_table.id #=> String
|
39997
|
+
# resp.network_insights_analysis.explanations[0].ingress_route_table.arn #=> String
|
39998
|
+
# resp.network_insights_analysis.explanations[0].internet_gateway.id #=> String
|
39999
|
+
# resp.network_insights_analysis.explanations[0].internet_gateway.arn #=> String
|
40000
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_arn #=> String
|
40001
|
+
# resp.network_insights_analysis.explanations[0].classic_load_balancer_listener.load_balancer_port #=> Integer
|
40002
|
+
# resp.network_insights_analysis.explanations[0].classic_load_balancer_listener.instance_port #=> Integer
|
40003
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_listener_port #=> Integer
|
40004
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target.address #=> String
|
40005
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target.availability_zone #=> String
|
40006
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target.instance.id #=> String
|
40007
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target.instance.arn #=> String
|
40008
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target.port #=> Integer
|
40009
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target_group.id #=> String
|
40010
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target_group.arn #=> String
|
40011
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target_groups #=> Array
|
40012
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target_groups[0].id #=> String
|
40013
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target_groups[0].arn #=> String
|
40014
|
+
# resp.network_insights_analysis.explanations[0].load_balancer_target_port #=> Integer
|
40015
|
+
# resp.network_insights_analysis.explanations[0].elastic_load_balancer_listener.id #=> String
|
40016
|
+
# resp.network_insights_analysis.explanations[0].elastic_load_balancer_listener.arn #=> String
|
40017
|
+
# resp.network_insights_analysis.explanations[0].missing_component #=> String
|
40018
|
+
# resp.network_insights_analysis.explanations[0].nat_gateway.id #=> String
|
40019
|
+
# resp.network_insights_analysis.explanations[0].nat_gateway.arn #=> String
|
40020
|
+
# resp.network_insights_analysis.explanations[0].network_interface.id #=> String
|
40021
|
+
# resp.network_insights_analysis.explanations[0].network_interface.arn #=> String
|
40022
|
+
# resp.network_insights_analysis.explanations[0].packet_field #=> String
|
40023
|
+
# resp.network_insights_analysis.explanations[0].vpc_peering_connection.id #=> String
|
40024
|
+
# resp.network_insights_analysis.explanations[0].vpc_peering_connection.arn #=> String
|
40025
|
+
# resp.network_insights_analysis.explanations[0].port #=> Integer
|
40026
|
+
# resp.network_insights_analysis.explanations[0].port_ranges #=> Array
|
40027
|
+
# resp.network_insights_analysis.explanations[0].port_ranges[0].from #=> Integer
|
40028
|
+
# resp.network_insights_analysis.explanations[0].port_ranges[0].to #=> Integer
|
40029
|
+
# resp.network_insights_analysis.explanations[0].prefix_list.id #=> String
|
40030
|
+
# resp.network_insights_analysis.explanations[0].prefix_list.arn #=> String
|
40031
|
+
# resp.network_insights_analysis.explanations[0].protocols #=> Array
|
40032
|
+
# resp.network_insights_analysis.explanations[0].protocols[0] #=> String
|
40033
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.destination_cidr #=> String
|
40034
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.destination_prefix_list_id #=> String
|
40035
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.egress_only_internet_gateway_id #=> String
|
40036
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.gateway_id #=> String
|
40037
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.instance_id #=> String
|
40038
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.nat_gateway_id #=> String
|
40039
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.network_interface_id #=> String
|
40040
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.origin #=> String
|
40041
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.transit_gateway_id #=> String
|
40042
|
+
# resp.network_insights_analysis.explanations[0].route_table_route.vpc_peering_connection_id #=> String
|
40043
|
+
# resp.network_insights_analysis.explanations[0].route_table.id #=> String
|
40044
|
+
# resp.network_insights_analysis.explanations[0].route_table.arn #=> String
|
40045
|
+
# resp.network_insights_analysis.explanations[0].security_group.id #=> String
|
40046
|
+
# resp.network_insights_analysis.explanations[0].security_group.arn #=> String
|
40047
|
+
# resp.network_insights_analysis.explanations[0].security_group_rule.cidr #=> String
|
40048
|
+
# resp.network_insights_analysis.explanations[0].security_group_rule.direction #=> String
|
40049
|
+
# resp.network_insights_analysis.explanations[0].security_group_rule.security_group_id #=> String
|
40050
|
+
# resp.network_insights_analysis.explanations[0].security_group_rule.port_range.from #=> Integer
|
40051
|
+
# resp.network_insights_analysis.explanations[0].security_group_rule.port_range.to #=> Integer
|
40052
|
+
# resp.network_insights_analysis.explanations[0].security_group_rule.prefix_list_id #=> String
|
40053
|
+
# resp.network_insights_analysis.explanations[0].security_group_rule.protocol #=> String
|
40054
|
+
# resp.network_insights_analysis.explanations[0].security_groups #=> Array
|
40055
|
+
# resp.network_insights_analysis.explanations[0].security_groups[0].id #=> String
|
40056
|
+
# resp.network_insights_analysis.explanations[0].security_groups[0].arn #=> String
|
40057
|
+
# resp.network_insights_analysis.explanations[0].source_vpc.id #=> String
|
40058
|
+
# resp.network_insights_analysis.explanations[0].source_vpc.arn #=> String
|
40059
|
+
# resp.network_insights_analysis.explanations[0].state #=> String
|
40060
|
+
# resp.network_insights_analysis.explanations[0].subnet.id #=> String
|
40061
|
+
# resp.network_insights_analysis.explanations[0].subnet.arn #=> String
|
40062
|
+
# resp.network_insights_analysis.explanations[0].subnet_route_table.id #=> String
|
40063
|
+
# resp.network_insights_analysis.explanations[0].subnet_route_table.arn #=> String
|
40064
|
+
# resp.network_insights_analysis.explanations[0].vpc.id #=> String
|
40065
|
+
# resp.network_insights_analysis.explanations[0].vpc.arn #=> String
|
40066
|
+
# resp.network_insights_analysis.explanations[0].vpc_endpoint.id #=> String
|
40067
|
+
# resp.network_insights_analysis.explanations[0].vpc_endpoint.arn #=> String
|
40068
|
+
# resp.network_insights_analysis.explanations[0].vpn_connection.id #=> String
|
40069
|
+
# resp.network_insights_analysis.explanations[0].vpn_connection.arn #=> String
|
40070
|
+
# resp.network_insights_analysis.explanations[0].vpn_gateway.id #=> String
|
40071
|
+
# resp.network_insights_analysis.explanations[0].vpn_gateway.arn #=> String
|
40072
|
+
# resp.network_insights_analysis.alternate_path_hints #=> Array
|
40073
|
+
# resp.network_insights_analysis.alternate_path_hints[0].component_id #=> String
|
40074
|
+
# resp.network_insights_analysis.alternate_path_hints[0].component_arn #=> String
|
40075
|
+
# resp.network_insights_analysis.tags #=> Array
|
40076
|
+
# resp.network_insights_analysis.tags[0].key #=> String
|
40077
|
+
# resp.network_insights_analysis.tags[0].value #=> String
|
40078
|
+
#
|
40079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartNetworkInsightsAnalysis AWS API Documentation
|
40080
|
+
#
|
40081
|
+
# @overload start_network_insights_analysis(params = {})
|
40082
|
+
# @param [Hash] params ({})
|
40083
|
+
def start_network_insights_analysis(params = {}, options = {})
|
40084
|
+
req = build_request(:start_network_insights_analysis, params)
|
40085
|
+
req.send_request(options)
|
40086
|
+
end
|
40087
|
+
|
38644
40088
|
# Initiates the verification process to prove that the service provider
|
38645
40089
|
# owns the private DNS name domain for the endpoint service.
|
38646
40090
|
#
|
@@ -39395,7 +40839,7 @@ module Aws::EC2
|
|
39395
40839
|
params: params,
|
39396
40840
|
config: config)
|
39397
40841
|
context[:gem_name] = 'aws-sdk-ec2'
|
39398
|
-
context[:gem_version] = '1.
|
40842
|
+
context[:gem_version] = '1.216.0'
|
39399
40843
|
Seahorse::Client::Request.new(handlers, context)
|
39400
40844
|
end
|
39401
40845
|
|