aws-sdk-ec2 1.422.0 → 1.424.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +599 -43
- data/lib/aws-sdk-ec2/client_api.rb +266 -1
- data/lib/aws-sdk-ec2/endpoints.rb +84 -0
- data/lib/aws-sdk-ec2/instance.rb +2 -1
- data/lib/aws-sdk-ec2/network_interface.rb +20 -0
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-ec2/resource.rb +26 -4
- data/lib/aws-sdk-ec2/subnet.rb +12 -0
- data/lib/aws-sdk-ec2/types.rb +1053 -31
- data/lib/aws-sdk-ec2/vpc.rb +14 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -646,6 +646,7 @@ module Aws::EC2
|
|
646
646
|
# resp.transit_gateway_vpc_attachment.subnet_ids[0] #=> String
|
647
647
|
# resp.transit_gateway_vpc_attachment.creation_time #=> Time
|
648
648
|
# resp.transit_gateway_vpc_attachment.options.dns_support #=> String, one of "enable", "disable"
|
649
|
+
# resp.transit_gateway_vpc_attachment.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
649
650
|
# resp.transit_gateway_vpc_attachment.options.ipv_6_support #=> String, one of "enable", "disable"
|
650
651
|
# resp.transit_gateway_vpc_attachment.options.appliance_mode_support #=> String, one of "enable", "disable"
|
651
652
|
# resp.transit_gateway_vpc_attachment.tags #=> Array
|
@@ -798,6 +799,9 @@ module Aws::EC2
|
|
798
799
|
# you provisioned. You can't advertise only a portion of the
|
799
800
|
# provisioned range.
|
800
801
|
#
|
802
|
+
# @option params [String] :asn
|
803
|
+
# The public 2-byte or 4-byte ASN that you want to advertise.
|
804
|
+
#
|
801
805
|
# @option params [Boolean] :dry_run
|
802
806
|
# Checks whether you have the required permissions for the action,
|
803
807
|
# without actually making the request, and provides an error response.
|
@@ -812,6 +816,7 @@ module Aws::EC2
|
|
812
816
|
#
|
813
817
|
# resp = client.advertise_byoip_cidr({
|
814
818
|
# cidr: "String", # required
|
819
|
+
# asn: "String",
|
815
820
|
# dry_run: false,
|
816
821
|
# })
|
817
822
|
#
|
@@ -819,6 +824,11 @@ module Aws::EC2
|
|
819
824
|
#
|
820
825
|
# resp.byoip_cidr.cidr #=> String
|
821
826
|
# resp.byoip_cidr.description #=> String
|
827
|
+
# resp.byoip_cidr.asn_associations #=> Array
|
828
|
+
# resp.byoip_cidr.asn_associations[0].asn #=> String
|
829
|
+
# resp.byoip_cidr.asn_associations[0].cidr #=> String
|
830
|
+
# resp.byoip_cidr.asn_associations[0].status_message #=> String
|
831
|
+
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
822
832
|
# resp.byoip_cidr.status_message #=> String
|
823
833
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
824
834
|
#
|
@@ -1191,6 +1201,10 @@ module Aws::EC2
|
|
1191
1201
|
# @option params [Boolean] :preview_next_cidr
|
1192
1202
|
# A preview of the next available CIDR in a pool.
|
1193
1203
|
#
|
1204
|
+
# @option params [Array<String>] :allowed_cidrs
|
1205
|
+
# Include a particular CIDR range that can be returned by the pool.
|
1206
|
+
# Allowed CIDRs are only allowed if using netmask length for allocation.
|
1207
|
+
#
|
1194
1208
|
# @option params [Array<String>] :disallowed_cidrs
|
1195
1209
|
# Exclude a particular CIDR range from being returned by the pool.
|
1196
1210
|
# Disallowed CIDRs are only allowed if using netmask length for
|
@@ -1210,6 +1224,7 @@ module Aws::EC2
|
|
1210
1224
|
# client_token: "String",
|
1211
1225
|
# description: "String",
|
1212
1226
|
# preview_next_cidr: false,
|
1227
|
+
# allowed_cidrs: ["String"],
|
1213
1228
|
# disallowed_cidrs: ["String"],
|
1214
1229
|
# })
|
1215
1230
|
#
|
@@ -1219,7 +1234,7 @@ module Aws::EC2
|
|
1219
1234
|
# resp.ipam_pool_allocation.ipam_pool_allocation_id #=> String
|
1220
1235
|
# resp.ipam_pool_allocation.description #=> String
|
1221
1236
|
# resp.ipam_pool_allocation.resource_id #=> String
|
1222
|
-
# resp.ipam_pool_allocation.resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom"
|
1237
|
+
# resp.ipam_pool_allocation.resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom", "subnet"
|
1223
1238
|
# resp.ipam_pool_allocation.resource_region #=> String
|
1224
1239
|
# resp.ipam_pool_allocation.resource_owner #=> String
|
1225
1240
|
#
|
@@ -2008,6 +2023,61 @@ module Aws::EC2
|
|
2008
2023
|
req.send_request(options)
|
2009
2024
|
end
|
2010
2025
|
|
2026
|
+
# Associates your Autonomous System Number (ASN) with a BYOIP CIDR that
|
2027
|
+
# you own in the same Amazon Web Services Region. For more information,
|
2028
|
+
# see [Tutorial: Bring your ASN to IPAM][1] in the *Amazon VPC IPAM
|
2029
|
+
# guide*.
|
2030
|
+
#
|
2031
|
+
# After the association succeeds, the ASN is eligible for advertisement.
|
2032
|
+
# You can view the association with [DescribeByoipCidrs][2]. You can
|
2033
|
+
# advertise the CIDR with [AdvertiseByoipCidr][3].
|
2034
|
+
#
|
2035
|
+
#
|
2036
|
+
#
|
2037
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-byoasn.html
|
2038
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeByoipCidrs.html
|
2039
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_AdvertiseByoipCidr.html
|
2040
|
+
#
|
2041
|
+
# @option params [Boolean] :dry_run
|
2042
|
+
# Checks whether you have the required permissions for the action,
|
2043
|
+
# without actually making the request, and provides an error response.
|
2044
|
+
# If you have the required permissions, the error response is
|
2045
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
2046
|
+
#
|
2047
|
+
# @option params [required, String] :asn
|
2048
|
+
# A public 2-byte or 4-byte ASN.
|
2049
|
+
#
|
2050
|
+
# @option params [required, String] :cidr
|
2051
|
+
# The BYOIP CIDR you want to associate with an ASN.
|
2052
|
+
#
|
2053
|
+
# @return [Types::AssociateIpamByoasnResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2054
|
+
#
|
2055
|
+
# * {Types::AssociateIpamByoasnResult#asn_association #asn_association} => Types::AsnAssociation
|
2056
|
+
#
|
2057
|
+
# @example Request syntax with placeholder values
|
2058
|
+
#
|
2059
|
+
# resp = client.associate_ipam_byoasn({
|
2060
|
+
# dry_run: false,
|
2061
|
+
# asn: "String", # required
|
2062
|
+
# cidr: "String", # required
|
2063
|
+
# })
|
2064
|
+
#
|
2065
|
+
# @example Response structure
|
2066
|
+
#
|
2067
|
+
# resp.asn_association.asn #=> String
|
2068
|
+
# resp.asn_association.cidr #=> String
|
2069
|
+
# resp.asn_association.status_message #=> String
|
2070
|
+
# resp.asn_association.state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
2071
|
+
#
|
2072
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateIpamByoasn AWS API Documentation
|
2073
|
+
#
|
2074
|
+
# @overload associate_ipam_byoasn(params = {})
|
2075
|
+
# @param [Hash] params ({})
|
2076
|
+
def associate_ipam_byoasn(params = {}, options = {})
|
2077
|
+
req = build_request(:associate_ipam_byoasn, params)
|
2078
|
+
req.send_request(options)
|
2079
|
+
end
|
2080
|
+
|
2011
2081
|
# Associates an IPAM resource discovery with an Amazon VPC IPAM. A
|
2012
2082
|
# resource discovery is an IPAM component that enables IPAM to manage
|
2013
2083
|
# and monitor resources that belong to the owning account.
|
@@ -2233,16 +2303,20 @@ module Aws::EC2
|
|
2233
2303
|
end
|
2234
2304
|
|
2235
2305
|
# Associates a CIDR block with your subnet. You can only associate a
|
2236
|
-
# single IPv6 CIDR block with your subnet.
|
2237
|
-
# a prefix length of /64.
|
2306
|
+
# single IPv6 CIDR block with your subnet.
|
2238
2307
|
#
|
2239
|
-
# @option params [
|
2240
|
-
# The IPv6 CIDR block for your subnet.
|
2241
|
-
# length.
|
2308
|
+
# @option params [String] :ipv_6_cidr_block
|
2309
|
+
# The IPv6 CIDR block for your subnet.
|
2242
2310
|
#
|
2243
2311
|
# @option params [required, String] :subnet_id
|
2244
2312
|
# The ID of your subnet.
|
2245
2313
|
#
|
2314
|
+
# @option params [String] :ipv_6_ipam_pool_id
|
2315
|
+
# An IPv6 IPAM pool ID.
|
2316
|
+
#
|
2317
|
+
# @option params [Integer] :ipv_6_netmask_length
|
2318
|
+
# An IPv6 netmask length.
|
2319
|
+
#
|
2246
2320
|
# @return [Types::AssociateSubnetCidrBlockResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2247
2321
|
#
|
2248
2322
|
# * {Types::AssociateSubnetCidrBlockResult#ipv_6_cidr_block_association #ipv_6_cidr_block_association} => Types::SubnetIpv6CidrBlockAssociation
|
@@ -2251,8 +2325,10 @@ module Aws::EC2
|
|
2251
2325
|
# @example Request syntax with placeholder values
|
2252
2326
|
#
|
2253
2327
|
# resp = client.associate_subnet_cidr_block({
|
2254
|
-
# ipv_6_cidr_block: "String",
|
2328
|
+
# ipv_6_cidr_block: "String",
|
2255
2329
|
# subnet_id: "SubnetId", # required
|
2330
|
+
# ipv_6_ipam_pool_id: "IpamPoolId",
|
2331
|
+
# ipv_6_netmask_length: 1,
|
2256
2332
|
# })
|
2257
2333
|
#
|
2258
2334
|
# @example Response structure
|
@@ -2424,11 +2500,6 @@ module Aws::EC2
|
|
2424
2500
|
req.send_request(options)
|
2425
2501
|
end
|
2426
2502
|
|
2427
|
-
# <note markdown="1"> This API action is currently in **limited preview only**. If you are
|
2428
|
-
# interested in using this feature, contact your account manager.
|
2429
|
-
#
|
2430
|
-
# </note>
|
2431
|
-
#
|
2432
2503
|
# Associates a branch network interface with a trunk network interface.
|
2433
2504
|
#
|
2434
2505
|
# Before you create the association, run the
|
@@ -2512,8 +2583,7 @@ module Aws::EC2
|
|
2512
2583
|
# Associates a CIDR block with your VPC. You can associate a secondary
|
2513
2584
|
# IPv4 CIDR block, an Amazon-provided IPv6 CIDR block, or an IPv6 CIDR
|
2514
2585
|
# block from an IPv6 address pool that you provisioned through bring
|
2515
|
-
# your own IP addresses ([BYOIP][1]).
|
2516
|
-
# at /56.
|
2586
|
+
# your own IP addresses ([BYOIP][1]).
|
2517
2587
|
#
|
2518
2588
|
# You must specify one of the following in the request: an IPv4 CIDR
|
2519
2589
|
# block, an IPv6 pool, or an Amazon-provided IPv6 CIDR block.
|
@@ -2529,7 +2599,7 @@ module Aws::EC2
|
|
2529
2599
|
#
|
2530
2600
|
# @option params [Boolean] :amazon_provided_ipv_6_cidr_block
|
2531
2601
|
# Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
|
2532
|
-
# for the VPC. You cannot specify the range of IPv6 addresses
|
2602
|
+
# for the VPC. You cannot specify the range of IPv6 addresses or the
|
2533
2603
|
# size of the CIDR block.
|
2534
2604
|
#
|
2535
2605
|
# @option params [String] :cidr_block
|
@@ -3164,9 +3234,17 @@ module Aws::EC2
|
|
3164
3234
|
# For information about VPC security group quotas, see [Amazon VPC
|
3165
3235
|
# quotas][1].
|
3166
3236
|
#
|
3237
|
+
# <note markdown="1"> If you want to reference a security group across VPCs attached to a
|
3238
|
+
# transit gateway using the [security group referencing feature][2],
|
3239
|
+
# note that you can only reference security groups for ingress rules.
|
3240
|
+
# You cannot reference a security group for egress rules.
|
3241
|
+
#
|
3242
|
+
# </note>
|
3243
|
+
#
|
3167
3244
|
#
|
3168
3245
|
#
|
3169
3246
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html
|
3247
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
|
3170
3248
|
#
|
3171
3249
|
# @option params [Boolean] :dry_run
|
3172
3250
|
# Checks whether you have the required permissions for the action,
|
@@ -7405,6 +7483,15 @@ module Aws::EC2
|
|
7405
7483
|
#
|
7406
7484
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
7407
7485
|
#
|
7486
|
+
# @option params [String] :tier
|
7487
|
+
# IPAM is offered in a Free Tier and an Advanced Tier. For more
|
7488
|
+
# information about the features available in each tier and the costs
|
7489
|
+
# associated with the tiers, see [Amazon VPC pricing > IPAM tab][1].
|
7490
|
+
#
|
7491
|
+
#
|
7492
|
+
#
|
7493
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
7494
|
+
#
|
7408
7495
|
# @return [Types::CreateIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7409
7496
|
#
|
7410
7497
|
# * {Types::CreateIpamResult#ipam #ipam} => Types::Ipam
|
@@ -7431,6 +7518,7 @@ module Aws::EC2
|
|
7431
7518
|
# },
|
7432
7519
|
# ],
|
7433
7520
|
# client_token: "String",
|
7521
|
+
# tier: "free", # accepts free, advanced
|
7434
7522
|
# })
|
7435
7523
|
#
|
7436
7524
|
# @example Response structure
|
@@ -7452,6 +7540,8 @@ module Aws::EC2
|
|
7452
7540
|
# resp.ipam.default_resource_discovery_id #=> String
|
7453
7541
|
# resp.ipam.default_resource_discovery_association_id #=> String
|
7454
7542
|
# resp.ipam.resource_discovery_association_count #=> Integer
|
7543
|
+
# resp.ipam.state_message #=> String
|
7544
|
+
# resp.ipam.tier #=> String, one of "free", "advanced"
|
7455
7545
|
#
|
7456
7546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpam AWS API Documentation
|
7457
7547
|
#
|
@@ -7593,6 +7683,9 @@ module Aws::EC2
|
|
7593
7683
|
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/intro-create-ipv6-pools.html
|
7594
7684
|
# [2]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
|
7595
7685
|
#
|
7686
|
+
# @option params [Types::IpamPoolSourceResourceRequest] :source_resource
|
7687
|
+
# The resource used to provision CIDRs to a resource planning pool.
|
7688
|
+
#
|
7596
7689
|
# @return [Types::CreateIpamPoolResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7597
7690
|
#
|
7598
7691
|
# * {Types::CreateIpamPoolResult#ipam_pool #ipam_pool} => Types::IpamPool
|
@@ -7631,6 +7724,12 @@ module Aws::EC2
|
|
7631
7724
|
# client_token: "String",
|
7632
7725
|
# aws_service: "ec2", # accepts ec2
|
7633
7726
|
# public_ip_source: "amazon", # accepts amazon, byoip
|
7727
|
+
# source_resource: {
|
7728
|
+
# resource_id: "String",
|
7729
|
+
# resource_type: "vpc", # accepts vpc
|
7730
|
+
# resource_region: "String",
|
7731
|
+
# resource_owner: "String",
|
7732
|
+
# },
|
7634
7733
|
# })
|
7635
7734
|
#
|
7636
7735
|
# @example Response structure
|
@@ -7662,6 +7761,10 @@ module Aws::EC2
|
|
7662
7761
|
# resp.ipam_pool.tags[0].value #=> String
|
7663
7762
|
# resp.ipam_pool.aws_service #=> String, one of "ec2"
|
7664
7763
|
# resp.ipam_pool.public_ip_source #=> String, one of "amazon", "byoip"
|
7764
|
+
# resp.ipam_pool.source_resource.resource_id #=> String
|
7765
|
+
# resp.ipam_pool.source_resource.resource_type #=> String, one of "vpc"
|
7766
|
+
# resp.ipam_pool.source_resource.resource_region #=> String
|
7767
|
+
# resp.ipam_pool.source_resource.resource_owner #=> String
|
7665
7768
|
#
|
7666
7769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPool AWS API Documentation
|
7667
7770
|
#
|
@@ -8136,6 +8239,11 @@ module Aws::EC2
|
|
8136
8239
|
# ena_srd_udp_enabled: false,
|
8137
8240
|
# },
|
8138
8241
|
# },
|
8242
|
+
# connection_tracking_specification: {
|
8243
|
+
# tcp_established_timeout: 1,
|
8244
|
+
# udp_stream_timeout: 1,
|
8245
|
+
# udp_timeout: 1,
|
8246
|
+
# },
|
8139
8247
|
# },
|
8140
8248
|
# ],
|
8141
8249
|
# image_id: "ImageId",
|
@@ -8527,6 +8635,11 @@ module Aws::EC2
|
|
8527
8635
|
# ena_srd_udp_enabled: false,
|
8528
8636
|
# },
|
8529
8637
|
# },
|
8638
|
+
# connection_tracking_specification: {
|
8639
|
+
# tcp_established_timeout: 1,
|
8640
|
+
# udp_stream_timeout: 1,
|
8641
|
+
# udp_timeout: 1,
|
8642
|
+
# },
|
8530
8643
|
# },
|
8531
8644
|
# ],
|
8532
8645
|
# image_id: "ImageId",
|
@@ -8737,6 +8850,9 @@ module Aws::EC2
|
|
8737
8850
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].primary_ipv_6 #=> Boolean
|
8738
8851
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].ena_srd_specification.ena_srd_enabled #=> Boolean
|
8739
8852
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
8853
|
+
# resp.launch_template_version.launch_template_data.network_interfaces[0].connection_tracking_specification.tcp_established_timeout #=> Integer
|
8854
|
+
# resp.launch_template_version.launch_template_data.network_interfaces[0].connection_tracking_specification.udp_timeout #=> Integer
|
8855
|
+
# resp.launch_template_version.launch_template_data.network_interfaces[0].connection_tracking_specification.udp_stream_timeout #=> Integer
|
8740
8856
|
# resp.launch_template_version.launch_template_data.image_id #=> String
|
8741
8857
|
# resp.launch_template_version.launch_template_data.instance_type #=> String, one of "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge", "a1.4xlarge", "a1.metal", "c1.medium", "c1.xlarge", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "c5.large", "c5.xlarge", "c5.2xlarge", "c5.4xlarge", "c5.9xlarge", "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", "c5.metal", "c5a.large", "c5a.xlarge", "c5a.2xlarge", "c5a.4xlarge", "c5a.8xlarge", "c5a.12xlarge", "c5a.16xlarge", "c5a.24xlarge", "c5ad.large", "c5ad.xlarge", "c5ad.2xlarge", "c5ad.4xlarge", "c5ad.8xlarge", "c5ad.12xlarge", "c5ad.16xlarge", "c5ad.24xlarge", "c5d.large", "c5d.xlarge", "c5d.2xlarge", "c5d.4xlarge", "c5d.9xlarge", "c5d.12xlarge", "c5d.18xlarge", "c5d.24xlarge", "c5d.metal", "c5n.large", "c5n.xlarge", "c5n.2xlarge", "c5n.4xlarge", "c5n.9xlarge", "c5n.18xlarge", "c5n.metal", "c6g.medium", "c6g.large", "c6g.xlarge", "c6g.2xlarge", "c6g.4xlarge", "c6g.8xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6g.metal", "c6gd.medium", "c6gd.large", "c6gd.xlarge", "c6gd.2xlarge", "c6gd.4xlarge", "c6gd.8xlarge", "c6gd.12xlarge", "c6gd.16xlarge", "c6gd.metal", "c6gn.medium", "c6gn.large", "c6gn.xlarge", "c6gn.2xlarge", "c6gn.4xlarge", "c6gn.8xlarge", "c6gn.12xlarge", "c6gn.16xlarge", "c6i.large", "c6i.xlarge", "c6i.2xlarge", "c6i.4xlarge", "c6i.8xlarge", "c6i.12xlarge", "c6i.16xlarge", "c6i.24xlarge", "c6i.32xlarge", "c6i.metal", "cc1.4xlarge", "cc2.8xlarge", "cg1.4xlarge", "cr1.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", "d3.xlarge", "d3.2xlarge", "d3.4xlarge", "d3.8xlarge", "d3en.xlarge", "d3en.2xlarge", "d3en.4xlarge", "d3en.6xlarge", "d3en.8xlarge", "d3en.12xlarge", "dl1.24xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", "g2.2xlarge", "g2.8xlarge", "g3.4xlarge", "g3.8xlarge", "g3.16xlarge", "g3s.xlarge", "g4ad.xlarge", "g4ad.2xlarge", "g4ad.4xlarge", "g4ad.8xlarge", "g4ad.16xlarge", "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge", "g4dn.metal", "g5.xlarge", "g5.2xlarge", "g5.4xlarge", "g5.8xlarge", "g5.12xlarge", "g5.16xlarge", "g5.24xlarge", "g5.48xlarge", "g5g.xlarge", "g5g.2xlarge", "g5g.4xlarge", "g5g.8xlarge", "g5g.16xlarge", "g5g.metal", "hi1.4xlarge", "hpc6a.48xlarge", "hs1.8xlarge", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "h1.16xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", "i3.large", "i3.xlarge", "i3.2xlarge", "i3.4xlarge", "i3.8xlarge", "i3.16xlarge", "i3.metal", "i3en.large", "i3en.xlarge", "i3en.2xlarge", "i3en.3xlarge", "i3en.6xlarge", "i3en.12xlarge", "i3en.24xlarge", "i3en.metal", "im4gn.large", "im4gn.xlarge", "im4gn.2xlarge", "im4gn.4xlarge", "im4gn.8xlarge", "im4gn.16xlarge", "inf1.xlarge", "inf1.2xlarge", "inf1.6xlarge", "inf1.24xlarge", "is4gen.medium", "is4gen.large", "is4gen.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge", "m4.16xlarge", "m5.large", "m5.xlarge", "m5.2xlarge", "m5.4xlarge", "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", "m5.metal", "m5a.large", "m5a.xlarge", "m5a.2xlarge", "m5a.4xlarge", "m5a.8xlarge", "m5a.12xlarge", "m5a.16xlarge", "m5a.24xlarge", "m5ad.large", "m5ad.xlarge", "m5ad.2xlarge", "m5ad.4xlarge", "m5ad.8xlarge", "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", "m5d.large", "m5d.xlarge", "m5d.2xlarge", "m5d.4xlarge", "m5d.8xlarge", "m5d.12xlarge", "m5d.16xlarge", "m5d.24xlarge", "m5d.metal", "m5dn.large", "m5dn.xlarge", "m5dn.2xlarge", "m5dn.4xlarge", "m5dn.8xlarge", "m5dn.12xlarge", "m5dn.16xlarge", "m5dn.24xlarge", "m5dn.metal", "m5n.large", "m5n.xlarge", "m5n.2xlarge", "m5n.4xlarge", "m5n.8xlarge", "m5n.12xlarge", "m5n.16xlarge", "m5n.24xlarge", "m5n.metal", "m5zn.large", "m5zn.xlarge", "m5zn.2xlarge", "m5zn.3xlarge", "m5zn.6xlarge", "m5zn.12xlarge", "m5zn.metal", "m6a.large", "m6a.xlarge", "m6a.2xlarge", "m6a.4xlarge", "m6a.8xlarge", "m6a.12xlarge", "m6a.16xlarge", "m6a.24xlarge", "m6a.32xlarge", "m6a.48xlarge", "m6g.metal", "m6g.medium", "m6g.large", "m6g.xlarge", "m6g.2xlarge", "m6g.4xlarge", "m6g.8xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6gd.metal", "m6gd.medium", "m6gd.large", "m6gd.xlarge", "m6gd.2xlarge", "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", "m6gd.16xlarge", "m6i.large", "m6i.xlarge", "m6i.2xlarge", "m6i.4xlarge", "m6i.8xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", "m6i.32xlarge", "m6i.metal", "mac1.metal", "p2.xlarge", "p2.8xlarge", "p2.16xlarge", "p3.2xlarge", "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", "p4d.24xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "r4.large", "r4.xlarge", "r4.2xlarge", "r4.4xlarge", "r4.8xlarge", "r4.16xlarge", "r5.large", "r5.xlarge", "r5.2xlarge", "r5.4xlarge", "r5.8xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", "r5.metal", "r5a.large", "r5a.xlarge", "r5a.2xlarge", "r5a.4xlarge", "r5a.8xlarge", "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", "r5ad.large", "r5ad.xlarge", "r5ad.2xlarge", "r5ad.4xlarge", "r5ad.8xlarge", "r5ad.12xlarge", "r5ad.16xlarge", "r5ad.24xlarge", "r5b.large", "r5b.xlarge", "r5b.2xlarge", "r5b.4xlarge", "r5b.8xlarge", "r5b.12xlarge", "r5b.16xlarge", "r5b.24xlarge", "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", "r5d.4xlarge", "r5d.8xlarge", "r5d.12xlarge", "r5d.16xlarge", "r5d.24xlarge", "r5d.metal", "r5dn.large", "r5dn.xlarge", "r5dn.2xlarge", "r5dn.4xlarge", "r5dn.8xlarge", "r5dn.12xlarge", "r5dn.16xlarge", "r5dn.24xlarge", "r5dn.metal", "r5n.large", "r5n.xlarge", "r5n.2xlarge", "r5n.4xlarge", "r5n.8xlarge", "r5n.12xlarge", "r5n.16xlarge", "r5n.24xlarge", "r5n.metal", "r6g.medium", "r6g.large", "r6g.xlarge", "r6g.2xlarge", "r6g.4xlarge", "r6g.8xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.metal", "r6gd.medium", "r6gd.large", "r6gd.xlarge", "r6gd.2xlarge", "r6gd.4xlarge", "r6gd.8xlarge", "r6gd.12xlarge", "r6gd.16xlarge", "r6gd.metal", "r6i.large", "r6i.xlarge", "r6i.2xlarge", "r6i.4xlarge", "r6i.8xlarge", "r6i.12xlarge", "r6i.16xlarge", "r6i.24xlarge", "r6i.32xlarge", "r6i.metal", "t1.micro", "t2.nano", "t2.micro", "t2.small", "t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro", "t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano", "t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge", "t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium", "t4g.large", "t4g.xlarge", "t4g.2xlarge", "u-6tb1.56xlarge", "u-6tb1.112xlarge", "u-9tb1.112xlarge", "u-12tb1.112xlarge", "u-6tb1.metal", "u-9tb1.metal", "u-12tb1.metal", "u-18tb1.metal", "u-24tb1.metal", "vt1.3xlarge", "vt1.6xlarge", "vt1.24xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.xlarge", "x1e.2xlarge", "x1e.4xlarge", "x1e.8xlarge", "x1e.16xlarge", "x1e.32xlarge", "x2iezn.2xlarge", "x2iezn.4xlarge", "x2iezn.6xlarge", "x2iezn.8xlarge", "x2iezn.12xlarge", "x2iezn.metal", "x2gd.medium", "x2gd.large", "x2gd.xlarge", "x2gd.2xlarge", "x2gd.4xlarge", "x2gd.8xlarge", "x2gd.12xlarge", "x2gd.16xlarge", "x2gd.metal", "z1d.large", "z1d.xlarge", "z1d.2xlarge", "z1d.3xlarge", "z1d.6xlarge", "z1d.12xlarge", "z1d.metal", "x2idn.16xlarge", "x2idn.24xlarge", "x2idn.32xlarge", "x2iedn.xlarge", "x2iedn.2xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", "x2iedn.16xlarge", "x2iedn.24xlarge", "x2iedn.32xlarge", "c6a.large", "c6a.xlarge", "c6a.2xlarge", "c6a.4xlarge", "c6a.8xlarge", "c6a.12xlarge", "c6a.16xlarge", "c6a.24xlarge", "c6a.32xlarge", "c6a.48xlarge", "c6a.metal", "m6a.metal", "i4i.large", "i4i.xlarge", "i4i.2xlarge", "i4i.4xlarge", "i4i.8xlarge", "i4i.16xlarge", "i4i.32xlarge", "i4i.metal", "x2idn.metal", "x2iedn.metal", "c7g.medium", "c7g.large", "c7g.xlarge", "c7g.2xlarge", "c7g.4xlarge", "c7g.8xlarge", "c7g.12xlarge", "c7g.16xlarge", "mac2.metal", "c6id.large", "c6id.xlarge", "c6id.2xlarge", "c6id.4xlarge", "c6id.8xlarge", "c6id.12xlarge", "c6id.16xlarge", "c6id.24xlarge", "c6id.32xlarge", "c6id.metal", "m6id.large", "m6id.xlarge", "m6id.2xlarge", "m6id.4xlarge", "m6id.8xlarge", "m6id.12xlarge", "m6id.16xlarge", "m6id.24xlarge", "m6id.32xlarge", "m6id.metal", "r6id.large", "r6id.xlarge", "r6id.2xlarge", "r6id.4xlarge", "r6id.8xlarge", "r6id.12xlarge", "r6id.16xlarge", "r6id.24xlarge", "r6id.32xlarge", "r6id.metal", "r6a.large", "r6a.xlarge", "r6a.2xlarge", "r6a.4xlarge", "r6a.8xlarge", "r6a.12xlarge", "r6a.16xlarge", "r6a.24xlarge", "r6a.32xlarge", "r6a.48xlarge", "r6a.metal", "p4de.24xlarge", "u-3tb1.56xlarge", "u-18tb1.112xlarge", "u-24tb1.112xlarge", "trn1.2xlarge", "trn1.32xlarge", "hpc6id.32xlarge", "c6in.large", "c6in.xlarge", "c6in.2xlarge", "c6in.4xlarge", "c6in.8xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", "c6in.32xlarge", "m6in.large", "m6in.xlarge", "m6in.2xlarge", "m6in.4xlarge", "m6in.8xlarge", "m6in.12xlarge", "m6in.16xlarge", "m6in.24xlarge", "m6in.32xlarge", "m6idn.large", "m6idn.xlarge", "m6idn.2xlarge", "m6idn.4xlarge", "m6idn.8xlarge", "m6idn.12xlarge", "m6idn.16xlarge", "m6idn.24xlarge", "m6idn.32xlarge", "r6in.large", "r6in.xlarge", "r6in.2xlarge", "r6in.4xlarge", "r6in.8xlarge", "r6in.12xlarge", "r6in.16xlarge", "r6in.24xlarge", "r6in.32xlarge", "r6idn.large", "r6idn.xlarge", "r6idn.2xlarge", "r6idn.4xlarge", "r6idn.8xlarge", "r6idn.12xlarge", "r6idn.16xlarge", "r6idn.24xlarge", "r6idn.32xlarge", "c7g.metal", "m7g.medium", "m7g.large", "m7g.xlarge", "m7g.2xlarge", "m7g.4xlarge", "m7g.8xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.metal", "r7g.medium", "r7g.large", "r7g.xlarge", "r7g.2xlarge", "r7g.4xlarge", "r7g.8xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.metal", "c6in.metal", "m6in.metal", "m6idn.metal", "r6in.metal", "r6idn.metal", "inf2.xlarge", "inf2.8xlarge", "inf2.24xlarge", "inf2.48xlarge", "trn1n.32xlarge", "i4g.large", "i4g.xlarge", "i4g.2xlarge", "i4g.4xlarge", "i4g.8xlarge", "i4g.16xlarge", "hpc7g.4xlarge", "hpc7g.8xlarge", "hpc7g.16xlarge", "c7gn.medium", "c7gn.large", "c7gn.xlarge", "c7gn.2xlarge", "c7gn.4xlarge", "c7gn.8xlarge", "c7gn.12xlarge", "c7gn.16xlarge", "p5.48xlarge", "m7i.large", "m7i.xlarge", "m7i.2xlarge", "m7i.4xlarge", "m7i.8xlarge", "m7i.12xlarge", "m7i.16xlarge", "m7i.24xlarge", "m7i.48xlarge", "m7i-flex.large", "m7i-flex.xlarge", "m7i-flex.2xlarge", "m7i-flex.4xlarge", "m7i-flex.8xlarge", "m7a.medium", "m7a.large", "m7a.xlarge", "m7a.2xlarge", "m7a.4xlarge", "m7a.8xlarge", "m7a.12xlarge", "m7a.16xlarge", "m7a.24xlarge", "m7a.32xlarge", "m7a.48xlarge", "m7a.metal-48xl", "hpc7a.12xlarge", "hpc7a.24xlarge", "hpc7a.48xlarge", "hpc7a.96xlarge", "c7gd.medium", "c7gd.large", "c7gd.xlarge", "c7gd.2xlarge", "c7gd.4xlarge", "c7gd.8xlarge", "c7gd.12xlarge", "c7gd.16xlarge", "m7gd.medium", "m7gd.large", "m7gd.xlarge", "m7gd.2xlarge", "m7gd.4xlarge", "m7gd.8xlarge", "m7gd.12xlarge", "m7gd.16xlarge", "r7gd.medium", "r7gd.large", "r7gd.xlarge", "r7gd.2xlarge", "r7gd.4xlarge", "r7gd.8xlarge", "r7gd.12xlarge", "r7gd.16xlarge", "r7a.medium", "r7a.large", "r7a.xlarge", "r7a.2xlarge", "r7a.4xlarge", "r7a.8xlarge", "r7a.12xlarge", "r7a.16xlarge", "r7a.24xlarge", "r7a.32xlarge", "r7a.48xlarge", "c7i.large", "c7i.xlarge", "c7i.2xlarge", "c7i.4xlarge", "c7i.8xlarge", "c7i.12xlarge", "c7i.16xlarge", "c7i.24xlarge", "c7i.48xlarge", "mac2-m2pro.metal", "r7iz.large", "r7iz.xlarge", "r7iz.2xlarge", "r7iz.4xlarge", "r7iz.8xlarge", "r7iz.12xlarge", "r7iz.16xlarge", "r7iz.32xlarge", "c7a.medium", "c7a.large", "c7a.xlarge", "c7a.2xlarge", "c7a.4xlarge", "c7a.8xlarge", "c7a.12xlarge", "c7a.16xlarge", "c7a.24xlarge", "c7a.32xlarge", "c7a.48xlarge", "c7a.metal-48xl", "r7a.metal-48xl", "r7i.large", "r7i.xlarge", "r7i.2xlarge", "r7i.4xlarge", "r7i.8xlarge", "r7i.12xlarge", "r7i.16xlarge", "r7i.24xlarge", "r7i.48xlarge", "dl2q.24xlarge"
|
8742
8858
|
# resp.launch_template_version.launch_template_data.key_name #=> String
|
@@ -10192,6 +10308,9 @@ module Aws::EC2
|
|
10192
10308
|
# address, the first IPv6 GUA address associated with the ENI becomes
|
10193
10309
|
# the primary IPv6 address.
|
10194
10310
|
#
|
10311
|
+
# @option params [Types::ConnectionTrackingSpecificationRequest] :connection_tracking_specification
|
10312
|
+
# A connection tracking specification for the network interface.
|
10313
|
+
#
|
10195
10314
|
# @return [Types::CreateNetworkInterfaceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10196
10315
|
#
|
10197
10316
|
# * {Types::CreateNetworkInterfaceResult#network_interface #network_interface} => Types::NetworkInterface
|
@@ -10290,6 +10409,11 @@ module Aws::EC2
|
|
10290
10409
|
# ],
|
10291
10410
|
# client_token: "String",
|
10292
10411
|
# enable_primary_ipv_6: false,
|
10412
|
+
# connection_tracking_specification: {
|
10413
|
+
# tcp_established_timeout: 1,
|
10414
|
+
# udp_stream_timeout: 1,
|
10415
|
+
# udp_timeout: 1,
|
10416
|
+
# },
|
10293
10417
|
# })
|
10294
10418
|
#
|
10295
10419
|
# @example Response structure
|
@@ -10312,6 +10436,9 @@ module Aws::EC2
|
|
10312
10436
|
# resp.network_interface.attachment.ena_srd_specification.ena_srd_enabled #=> Boolean
|
10313
10437
|
# resp.network_interface.attachment.ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
10314
10438
|
# resp.network_interface.availability_zone #=> String
|
10439
|
+
# resp.network_interface.connection_tracking_configuration.tcp_established_timeout #=> Integer
|
10440
|
+
# resp.network_interface.connection_tracking_configuration.udp_stream_timeout #=> Integer
|
10441
|
+
# resp.network_interface.connection_tracking_configuration.udp_timeout #=> Integer
|
10315
10442
|
# resp.network_interface.description #=> String
|
10316
10443
|
# resp.network_interface.groups #=> Array
|
10317
10444
|
# resp.network_interface.groups[0].group_name #=> String
|
@@ -11712,8 +11839,7 @@ module Aws::EC2
|
|
11712
11839
|
# each subnet's CIDR block. They're not available for your use.
|
11713
11840
|
#
|
11714
11841
|
# If you've associated an IPv6 CIDR block with your VPC, you can
|
11715
|
-
# associate an IPv6 CIDR block with a subnet when you create it.
|
11716
|
-
# allowed block size for an IPv6 subnet is a /64 netmask.
|
11842
|
+
# associate an IPv6 CIDR block with a subnet when you create it.
|
11717
11843
|
#
|
11718
11844
|
# If you add more than one subnet to a VPC, they're set up in a star
|
11719
11845
|
# topology with a logical router in the middle.
|
@@ -11762,10 +11888,8 @@ module Aws::EC2
|
|
11762
11888
|
# This parameter is not supported for an IPv6 only subnet.
|
11763
11889
|
#
|
11764
11890
|
# @option params [String] :ipv_6_cidr_block
|
11765
|
-
# The IPv6 network range for the subnet, in CIDR notation.
|
11766
|
-
#
|
11767
|
-
#
|
11768
|
-
# This parameter is required for an IPv6 only subnet.
|
11891
|
+
# The IPv6 network range for the subnet, in CIDR notation. This
|
11892
|
+
# parameter is required for an IPv6 only subnet.
|
11769
11893
|
#
|
11770
11894
|
# @option params [String] :outpost_arn
|
11771
11895
|
# The Amazon Resource Name (ARN) of the Outpost. If you specify an
|
@@ -11784,6 +11908,18 @@ module Aws::EC2
|
|
11784
11908
|
# @option params [Boolean] :ipv_6_native
|
11785
11909
|
# Indicates whether to create an IPv6 only subnet.
|
11786
11910
|
#
|
11911
|
+
# @option params [String] :ipv_4_ipam_pool_id
|
11912
|
+
# An IPv4 IPAM pool ID for the subnet.
|
11913
|
+
#
|
11914
|
+
# @option params [Integer] :ipv_4_netmask_length
|
11915
|
+
# An IPv4 netmask length for the subnet.
|
11916
|
+
#
|
11917
|
+
# @option params [String] :ipv_6_ipam_pool_id
|
11918
|
+
# An IPv6 IPAM pool ID for the subnet.
|
11919
|
+
#
|
11920
|
+
# @option params [Integer] :ipv_6_netmask_length
|
11921
|
+
# An IPv6 netmask length for the subnet.
|
11922
|
+
#
|
11787
11923
|
# @return [Types::CreateSubnetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11788
11924
|
#
|
11789
11925
|
# * {Types::CreateSubnetResult#subnet #subnet} => Types::Subnet
|
@@ -11833,6 +11969,10 @@ module Aws::EC2
|
|
11833
11969
|
# vpc_id: "VpcId", # required
|
11834
11970
|
# dry_run: false,
|
11835
11971
|
# ipv_6_native: false,
|
11972
|
+
# ipv_4_ipam_pool_id: "IpamPoolId",
|
11973
|
+
# ipv_4_netmask_length: 1,
|
11974
|
+
# ipv_6_ipam_pool_id: "IpamPoolId",
|
11975
|
+
# ipv_6_netmask_length: 1,
|
11836
11976
|
# })
|
11837
11977
|
#
|
11838
11978
|
# @example Response structure
|
@@ -12560,6 +12700,7 @@ module Aws::EC2
|
|
12560
12700
|
# default_route_table_propagation: "enable", # accepts enable, disable
|
12561
12701
|
# vpn_ecmp_support: "enable", # accepts enable, disable
|
12562
12702
|
# dns_support: "enable", # accepts enable, disable
|
12703
|
+
# security_group_referencing_support: "enable", # accepts enable, disable
|
12563
12704
|
# multicast_support: "enable", # accepts enable, disable
|
12564
12705
|
# transit_gateway_cidr_blocks: ["String"],
|
12565
12706
|
# },
|
@@ -12595,6 +12736,7 @@ module Aws::EC2
|
|
12595
12736
|
# resp.transit_gateway.options.propagation_default_route_table_id #=> String
|
12596
12737
|
# resp.transit_gateway.options.vpn_ecmp_support #=> String, one of "enable", "disable"
|
12597
12738
|
# resp.transit_gateway.options.dns_support #=> String, one of "enable", "disable"
|
12739
|
+
# resp.transit_gateway.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
12598
12740
|
# resp.transit_gateway.options.multicast_support #=> String, one of "enable", "disable"
|
12599
12741
|
# resp.transit_gateway.tags #=> Array
|
12600
12742
|
# resp.transit_gateway.tags[0].key #=> String
|
@@ -13285,6 +13427,7 @@ module Aws::EC2
|
|
13285
13427
|
# subnet_ids: ["SubnetId"], # required
|
13286
13428
|
# options: {
|
13287
13429
|
# dns_support: "enable", # accepts enable, disable
|
13430
|
+
# security_group_referencing_support: "enable", # accepts enable, disable
|
13288
13431
|
# ipv_6_support: "enable", # accepts enable, disable
|
13289
13432
|
# appliance_mode_support: "enable", # accepts enable, disable
|
13290
13433
|
# },
|
@@ -13313,6 +13456,7 @@ module Aws::EC2
|
|
13313
13456
|
# resp.transit_gateway_vpc_attachment.subnet_ids[0] #=> String
|
13314
13457
|
# resp.transit_gateway_vpc_attachment.creation_time #=> Time
|
13315
13458
|
# resp.transit_gateway_vpc_attachment.options.dns_support #=> String, one of "enable", "disable"
|
13459
|
+
# resp.transit_gateway_vpc_attachment.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
13316
13460
|
# resp.transit_gateway_vpc_attachment.options.ipv_6_support #=> String, one of "enable", "disable"
|
13317
13461
|
# resp.transit_gateway_vpc_attachment.options.appliance_mode_support #=> String, one of "enable", "disable"
|
13318
13462
|
# resp.transit_gateway_vpc_attachment.tags #=> Array
|
@@ -14121,7 +14265,7 @@ module Aws::EC2
|
|
14121
14265
|
#
|
14122
14266
|
# You can optionally request an IPv6 CIDR block for the VPC. You can
|
14123
14267
|
# request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6
|
14124
|
-
# addresses
|
14268
|
+
# addresses or an IPv6 CIDR block from an IPv6 address pool that you
|
14125
14269
|
# provisioned through bring your own IP addresses ([BYOIP][2]).
|
14126
14270
|
#
|
14127
14271
|
# By default, each instance that you launch in the VPC has the default
|
@@ -15856,6 +16000,8 @@ module Aws::EC2
|
|
15856
16000
|
# resp.ipam.default_resource_discovery_id #=> String
|
15857
16001
|
# resp.ipam.default_resource_discovery_association_id #=> String
|
15858
16002
|
# resp.ipam.resource_discovery_association_count #=> Integer
|
16003
|
+
# resp.ipam.state_message #=> String
|
16004
|
+
# resp.ipam.tier #=> String, one of "free", "advanced"
|
15859
16005
|
#
|
15860
16006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpam AWS API Documentation
|
15861
16007
|
#
|
@@ -15893,6 +16039,14 @@ module Aws::EC2
|
|
15893
16039
|
# @option params [required, String] :ipam_pool_id
|
15894
16040
|
# The ID of the pool to delete.
|
15895
16041
|
#
|
16042
|
+
# @option params [Boolean] :cascade
|
16043
|
+
# Enables you to quickly delete an IPAM pool and all resources within
|
16044
|
+
# that pool, including provisioned CIDRs, allocations, and other pools.
|
16045
|
+
#
|
16046
|
+
# You can only use this option to delete pools in the private scope or
|
16047
|
+
# pools in the public scope with a source resource. A source resource is
|
16048
|
+
# a resource used to provision CIDRs to a resource planning pool.
|
16049
|
+
#
|
15896
16050
|
# @return [Types::DeleteIpamPoolResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15897
16051
|
#
|
15898
16052
|
# * {Types::DeleteIpamPoolResult#ipam_pool #ipam_pool} => Types::IpamPool
|
@@ -15902,6 +16056,7 @@ module Aws::EC2
|
|
15902
16056
|
# resp = client.delete_ipam_pool({
|
15903
16057
|
# dry_run: false,
|
15904
16058
|
# ipam_pool_id: "IpamPoolId", # required
|
16059
|
+
# cascade: false,
|
15905
16060
|
# })
|
15906
16061
|
#
|
15907
16062
|
# @example Response structure
|
@@ -15933,6 +16088,10 @@ module Aws::EC2
|
|
15933
16088
|
# resp.ipam_pool.tags[0].value #=> String
|
15934
16089
|
# resp.ipam_pool.aws_service #=> String, one of "ec2"
|
15935
16090
|
# resp.ipam_pool.public_ip_source #=> String, one of "amazon", "byoip"
|
16091
|
+
# resp.ipam_pool.source_resource.resource_id #=> String
|
16092
|
+
# resp.ipam_pool.source_resource.resource_type #=> String, one of "vpc"
|
16093
|
+
# resp.ipam_pool.source_resource.resource_region #=> String
|
16094
|
+
# resp.ipam_pool.source_resource.resource_owner #=> String
|
15936
16095
|
#
|
15937
16096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPool AWS API Documentation
|
15938
16097
|
#
|
@@ -17589,6 +17748,7 @@ module Aws::EC2
|
|
17589
17748
|
# resp.transit_gateway.options.propagation_default_route_table_id #=> String
|
17590
17749
|
# resp.transit_gateway.options.vpn_ecmp_support #=> String, one of "enable", "disable"
|
17591
17750
|
# resp.transit_gateway.options.dns_support #=> String, one of "enable", "disable"
|
17751
|
+
# resp.transit_gateway.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
17592
17752
|
# resp.transit_gateway.options.multicast_support #=> String, one of "enable", "disable"
|
17593
17753
|
# resp.transit_gateway.tags #=> Array
|
17594
17754
|
# resp.transit_gateway.tags[0].key #=> String
|
@@ -18060,6 +18220,7 @@ module Aws::EC2
|
|
18060
18220
|
# resp.transit_gateway_vpc_attachment.subnet_ids[0] #=> String
|
18061
18221
|
# resp.transit_gateway_vpc_attachment.creation_time #=> Time
|
18062
18222
|
# resp.transit_gateway_vpc_attachment.options.dns_support #=> String, one of "enable", "disable"
|
18223
|
+
# resp.transit_gateway_vpc_attachment.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
18063
18224
|
# resp.transit_gateway_vpc_attachment.options.ipv_6_support #=> String, one of "enable", "disable"
|
18064
18225
|
# resp.transit_gateway_vpc_attachment.options.appliance_mode_support #=> String, one of "enable", "disable"
|
18065
18226
|
# resp.transit_gateway_vpc_attachment.tags #=> Array
|
@@ -18746,6 +18907,11 @@ module Aws::EC2
|
|
18746
18907
|
#
|
18747
18908
|
# resp.byoip_cidr.cidr #=> String
|
18748
18909
|
# resp.byoip_cidr.description #=> String
|
18910
|
+
# resp.byoip_cidr.asn_associations #=> Array
|
18911
|
+
# resp.byoip_cidr.asn_associations[0].asn #=> String
|
18912
|
+
# resp.byoip_cidr.asn_associations[0].cidr #=> String
|
18913
|
+
# resp.byoip_cidr.asn_associations[0].status_message #=> String
|
18914
|
+
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
18749
18915
|
# resp.byoip_cidr.status_message #=> String
|
18750
18916
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
18751
18917
|
#
|
@@ -18758,6 +18924,57 @@ module Aws::EC2
|
|
18758
18924
|
req.send_request(options)
|
18759
18925
|
end
|
18760
18926
|
|
18927
|
+
# Deprovisions your Autonomous System Number (ASN) from your Amazon Web
|
18928
|
+
# Services account. This action can only be called after any BYOIP CIDR
|
18929
|
+
# associations are removed from your Amazon Web Services account with
|
18930
|
+
# [DisassociateIpamByoasn][1]. For more information, see [Tutorial:
|
18931
|
+
# Bring your ASN to IPAM][2] in the *Amazon VPC IPAM guide*.
|
18932
|
+
#
|
18933
|
+
#
|
18934
|
+
#
|
18935
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DisassociateIpamByoasn.html
|
18936
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-byoasn.html
|
18937
|
+
#
|
18938
|
+
# @option params [Boolean] :dry_run
|
18939
|
+
# Checks whether you have the required permissions for the action,
|
18940
|
+
# without actually making the request, and provides an error response.
|
18941
|
+
# If you have the required permissions, the error response is
|
18942
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
18943
|
+
#
|
18944
|
+
# @option params [required, String] :ipam_id
|
18945
|
+
# The IPAM ID.
|
18946
|
+
#
|
18947
|
+
# @option params [required, String] :asn
|
18948
|
+
# An ASN.
|
18949
|
+
#
|
18950
|
+
# @return [Types::DeprovisionIpamByoasnResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18951
|
+
#
|
18952
|
+
# * {Types::DeprovisionIpamByoasnResult#byoasn #byoasn} => Types::Byoasn
|
18953
|
+
#
|
18954
|
+
# @example Request syntax with placeholder values
|
18955
|
+
#
|
18956
|
+
# resp = client.deprovision_ipam_byoasn({
|
18957
|
+
# dry_run: false,
|
18958
|
+
# ipam_id: "IpamId", # required
|
18959
|
+
# asn: "String", # required
|
18960
|
+
# })
|
18961
|
+
#
|
18962
|
+
# @example Response structure
|
18963
|
+
#
|
18964
|
+
# resp.byoasn.asn #=> String
|
18965
|
+
# resp.byoasn.ipam_id #=> String
|
18966
|
+
# resp.byoasn.status_message #=> String
|
18967
|
+
# resp.byoasn.state #=> String, one of "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned"
|
18968
|
+
#
|
18969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeprovisionIpamByoasn AWS API Documentation
|
18970
|
+
#
|
18971
|
+
# @overload deprovision_ipam_byoasn(params = {})
|
18972
|
+
# @param [Hash] params ({})
|
18973
|
+
def deprovision_ipam_byoasn(params = {}, options = {})
|
18974
|
+
req = build_request(:deprovision_ipam_byoasn, params)
|
18975
|
+
req.send_request(options)
|
18976
|
+
end
|
18977
|
+
|
18761
18978
|
# Deprovision a CIDR provisioned from an IPAM pool. If you deprovision a
|
18762
18979
|
# CIDR from a pool that has a source pool, the CIDR is recycled back
|
18763
18980
|
# into the source pool. For more information, see [Deprovision pool
|
@@ -19864,6 +20081,11 @@ module Aws::EC2
|
|
19864
20081
|
# resp.byoip_cidrs #=> Array
|
19865
20082
|
# resp.byoip_cidrs[0].cidr #=> String
|
19866
20083
|
# resp.byoip_cidrs[0].description #=> String
|
20084
|
+
# resp.byoip_cidrs[0].asn_associations #=> Array
|
20085
|
+
# resp.byoip_cidrs[0].asn_associations[0].asn #=> String
|
20086
|
+
# resp.byoip_cidrs[0].asn_associations[0].cidr #=> String
|
20087
|
+
# resp.byoip_cidrs[0].asn_associations[0].status_message #=> String
|
20088
|
+
# resp.byoip_cidrs[0].asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
19867
20089
|
# resp.byoip_cidrs[0].status_message #=> String
|
19868
20090
|
# resp.byoip_cidrs[0].state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
19869
20091
|
# resp.next_token #=> String
|
@@ -25479,6 +25701,9 @@ module Aws::EC2
|
|
25479
25701
|
# resp.reservations[0].instances[0].network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
|
25480
25702
|
# resp.reservations[0].instances[0].network_interfaces[0].ipv_6_prefixes #=> Array
|
25481
25703
|
# resp.reservations[0].instances[0].network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
|
25704
|
+
# resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.tcp_established_timeout #=> Integer
|
25705
|
+
# resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.udp_stream_timeout #=> Integer
|
25706
|
+
# resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
|
25482
25707
|
# resp.reservations[0].instances[0].outpost_arn #=> String
|
25483
25708
|
# resp.reservations[0].instances[0].root_device_name #=> String
|
25484
25709
|
# resp.reservations[0].instances[0].root_device_type #=> String, one of "ebs", "instance-store"
|
@@ -25676,6 +25901,60 @@ module Aws::EC2
|
|
25676
25901
|
req.send_request(options)
|
25677
25902
|
end
|
25678
25903
|
|
25904
|
+
# Describes your Autonomous System Numbers (ASNs), their provisioning
|
25905
|
+
# statuses, and the BYOIP CIDRs with which they are associated. For more
|
25906
|
+
# information, see [Tutorial: Bring your ASN to IPAM][1] in the *Amazon
|
25907
|
+
# VPC IPAM guide*.
|
25908
|
+
#
|
25909
|
+
#
|
25910
|
+
#
|
25911
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-byoasn.html
|
25912
|
+
#
|
25913
|
+
# @option params [Boolean] :dry_run
|
25914
|
+
# Checks whether you have the required permissions for the action,
|
25915
|
+
# without actually making the request, and provides an error response.
|
25916
|
+
# If you have the required permissions, the error response is
|
25917
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
25918
|
+
#
|
25919
|
+
# @option params [Integer] :max_results
|
25920
|
+
# The maximum number of results to return with a single call. To
|
25921
|
+
# retrieve the remaining results, make another call with the returned
|
25922
|
+
# `nextToken` value.
|
25923
|
+
#
|
25924
|
+
# @option params [String] :next_token
|
25925
|
+
# The token for the next page of results.
|
25926
|
+
#
|
25927
|
+
# @return [Types::DescribeIpamByoasnResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25928
|
+
#
|
25929
|
+
# * {Types::DescribeIpamByoasnResult#byoasns #byoasns} => Array<Types::Byoasn>
|
25930
|
+
# * {Types::DescribeIpamByoasnResult#next_token #next_token} => String
|
25931
|
+
#
|
25932
|
+
# @example Request syntax with placeholder values
|
25933
|
+
#
|
25934
|
+
# resp = client.describe_ipam_byoasn({
|
25935
|
+
# dry_run: false,
|
25936
|
+
# max_results: 1,
|
25937
|
+
# next_token: "NextToken",
|
25938
|
+
# })
|
25939
|
+
#
|
25940
|
+
# @example Response structure
|
25941
|
+
#
|
25942
|
+
# resp.byoasns #=> Array
|
25943
|
+
# resp.byoasns[0].asn #=> String
|
25944
|
+
# resp.byoasns[0].ipam_id #=> String
|
25945
|
+
# resp.byoasns[0].status_message #=> String
|
25946
|
+
# resp.byoasns[0].state #=> String, one of "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned"
|
25947
|
+
# resp.next_token #=> String
|
25948
|
+
#
|
25949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamByoasn AWS API Documentation
|
25950
|
+
#
|
25951
|
+
# @overload describe_ipam_byoasn(params = {})
|
25952
|
+
# @param [Hash] params ({})
|
25953
|
+
def describe_ipam_byoasn(params = {}, options = {})
|
25954
|
+
req = build_request(:describe_ipam_byoasn, params)
|
25955
|
+
req.send_request(options)
|
25956
|
+
end
|
25957
|
+
|
25679
25958
|
# Get information about your IPAM pools.
|
25680
25959
|
#
|
25681
25960
|
# @option params [Boolean] :dry_run
|
@@ -25754,6 +26033,10 @@ module Aws::EC2
|
|
25754
26033
|
# resp.ipam_pools[0].tags[0].value #=> String
|
25755
26034
|
# resp.ipam_pools[0].aws_service #=> String, one of "ec2"
|
25756
26035
|
# resp.ipam_pools[0].public_ip_source #=> String, one of "amazon", "byoip"
|
26036
|
+
# resp.ipam_pools[0].source_resource.resource_id #=> String
|
26037
|
+
# resp.ipam_pools[0].source_resource.resource_type #=> String, one of "vpc"
|
26038
|
+
# resp.ipam_pools[0].source_resource.resource_region #=> String
|
26039
|
+
# resp.ipam_pools[0].source_resource.resource_owner #=> String
|
25757
26040
|
#
|
25758
26041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPools AWS API Documentation
|
25759
26042
|
#
|
@@ -26058,6 +26341,8 @@ module Aws::EC2
|
|
26058
26341
|
# resp.ipams[0].default_resource_discovery_id #=> String
|
26059
26342
|
# resp.ipams[0].default_resource_discovery_association_id #=> String
|
26060
26343
|
# resp.ipams[0].resource_discovery_association_count #=> Integer
|
26344
|
+
# resp.ipams[0].state_message #=> String
|
26345
|
+
# resp.ipams[0].tier #=> String, one of "free", "advanced"
|
26061
26346
|
#
|
26062
26347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpams AWS API Documentation
|
26063
26348
|
#
|
@@ -26514,6 +26799,9 @@ module Aws::EC2
|
|
26514
26799
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].primary_ipv_6 #=> Boolean
|
26515
26800
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ena_srd_specification.ena_srd_enabled #=> Boolean
|
26516
26801
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
26802
|
+
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].connection_tracking_specification.tcp_established_timeout #=> Integer
|
26803
|
+
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].connection_tracking_specification.udp_timeout #=> Integer
|
26804
|
+
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].connection_tracking_specification.udp_stream_timeout #=> Integer
|
26517
26805
|
# resp.launch_template_versions[0].launch_template_data.image_id #=> String
|
26518
26806
|
# resp.launch_template_versions[0].launch_template_data.instance_type #=> String, one of "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge", "a1.4xlarge", "a1.metal", "c1.medium", "c1.xlarge", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "c5.large", "c5.xlarge", "c5.2xlarge", "c5.4xlarge", "c5.9xlarge", "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", "c5.metal", "c5a.large", "c5a.xlarge", "c5a.2xlarge", "c5a.4xlarge", "c5a.8xlarge", "c5a.12xlarge", "c5a.16xlarge", "c5a.24xlarge", "c5ad.large", "c5ad.xlarge", "c5ad.2xlarge", "c5ad.4xlarge", "c5ad.8xlarge", "c5ad.12xlarge", "c5ad.16xlarge", "c5ad.24xlarge", "c5d.large", "c5d.xlarge", "c5d.2xlarge", "c5d.4xlarge", "c5d.9xlarge", "c5d.12xlarge", "c5d.18xlarge", "c5d.24xlarge", "c5d.metal", "c5n.large", "c5n.xlarge", "c5n.2xlarge", "c5n.4xlarge", "c5n.9xlarge", "c5n.18xlarge", "c5n.metal", "c6g.medium", "c6g.large", "c6g.xlarge", "c6g.2xlarge", "c6g.4xlarge", "c6g.8xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6g.metal", "c6gd.medium", "c6gd.large", "c6gd.xlarge", "c6gd.2xlarge", "c6gd.4xlarge", "c6gd.8xlarge", "c6gd.12xlarge", "c6gd.16xlarge", "c6gd.metal", "c6gn.medium", "c6gn.large", "c6gn.xlarge", "c6gn.2xlarge", "c6gn.4xlarge", "c6gn.8xlarge", "c6gn.12xlarge", "c6gn.16xlarge", "c6i.large", "c6i.xlarge", "c6i.2xlarge", "c6i.4xlarge", "c6i.8xlarge", "c6i.12xlarge", "c6i.16xlarge", "c6i.24xlarge", "c6i.32xlarge", "c6i.metal", "cc1.4xlarge", "cc2.8xlarge", "cg1.4xlarge", "cr1.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", "d3.xlarge", "d3.2xlarge", "d3.4xlarge", "d3.8xlarge", "d3en.xlarge", "d3en.2xlarge", "d3en.4xlarge", "d3en.6xlarge", "d3en.8xlarge", "d3en.12xlarge", "dl1.24xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", "g2.2xlarge", "g2.8xlarge", "g3.4xlarge", "g3.8xlarge", "g3.16xlarge", "g3s.xlarge", "g4ad.xlarge", "g4ad.2xlarge", "g4ad.4xlarge", "g4ad.8xlarge", "g4ad.16xlarge", "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge", "g4dn.metal", "g5.xlarge", "g5.2xlarge", "g5.4xlarge", "g5.8xlarge", "g5.12xlarge", "g5.16xlarge", "g5.24xlarge", "g5.48xlarge", "g5g.xlarge", "g5g.2xlarge", "g5g.4xlarge", "g5g.8xlarge", "g5g.16xlarge", "g5g.metal", "hi1.4xlarge", "hpc6a.48xlarge", "hs1.8xlarge", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "h1.16xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", "i3.large", "i3.xlarge", "i3.2xlarge", "i3.4xlarge", "i3.8xlarge", "i3.16xlarge", "i3.metal", "i3en.large", "i3en.xlarge", "i3en.2xlarge", "i3en.3xlarge", "i3en.6xlarge", "i3en.12xlarge", "i3en.24xlarge", "i3en.metal", "im4gn.large", "im4gn.xlarge", "im4gn.2xlarge", "im4gn.4xlarge", "im4gn.8xlarge", "im4gn.16xlarge", "inf1.xlarge", "inf1.2xlarge", "inf1.6xlarge", "inf1.24xlarge", "is4gen.medium", "is4gen.large", "is4gen.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge", "m4.16xlarge", "m5.large", "m5.xlarge", "m5.2xlarge", "m5.4xlarge", "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", "m5.metal", "m5a.large", "m5a.xlarge", "m5a.2xlarge", "m5a.4xlarge", "m5a.8xlarge", "m5a.12xlarge", "m5a.16xlarge", "m5a.24xlarge", "m5ad.large", "m5ad.xlarge", "m5ad.2xlarge", "m5ad.4xlarge", "m5ad.8xlarge", "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", "m5d.large", "m5d.xlarge", "m5d.2xlarge", "m5d.4xlarge", "m5d.8xlarge", "m5d.12xlarge", "m5d.16xlarge", "m5d.24xlarge", "m5d.metal", "m5dn.large", "m5dn.xlarge", "m5dn.2xlarge", "m5dn.4xlarge", "m5dn.8xlarge", "m5dn.12xlarge", "m5dn.16xlarge", "m5dn.24xlarge", "m5dn.metal", "m5n.large", "m5n.xlarge", "m5n.2xlarge", "m5n.4xlarge", "m5n.8xlarge", "m5n.12xlarge", "m5n.16xlarge", "m5n.24xlarge", "m5n.metal", "m5zn.large", "m5zn.xlarge", "m5zn.2xlarge", "m5zn.3xlarge", "m5zn.6xlarge", "m5zn.12xlarge", "m5zn.metal", "m6a.large", "m6a.xlarge", "m6a.2xlarge", "m6a.4xlarge", "m6a.8xlarge", "m6a.12xlarge", "m6a.16xlarge", "m6a.24xlarge", "m6a.32xlarge", "m6a.48xlarge", "m6g.metal", "m6g.medium", "m6g.large", "m6g.xlarge", "m6g.2xlarge", "m6g.4xlarge", "m6g.8xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6gd.metal", "m6gd.medium", "m6gd.large", "m6gd.xlarge", "m6gd.2xlarge", "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", "m6gd.16xlarge", "m6i.large", "m6i.xlarge", "m6i.2xlarge", "m6i.4xlarge", "m6i.8xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", "m6i.32xlarge", "m6i.metal", "mac1.metal", "p2.xlarge", "p2.8xlarge", "p2.16xlarge", "p3.2xlarge", "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", "p4d.24xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "r4.large", "r4.xlarge", "r4.2xlarge", "r4.4xlarge", "r4.8xlarge", "r4.16xlarge", "r5.large", "r5.xlarge", "r5.2xlarge", "r5.4xlarge", "r5.8xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", "r5.metal", "r5a.large", "r5a.xlarge", "r5a.2xlarge", "r5a.4xlarge", "r5a.8xlarge", "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", "r5ad.large", "r5ad.xlarge", "r5ad.2xlarge", "r5ad.4xlarge", "r5ad.8xlarge", "r5ad.12xlarge", "r5ad.16xlarge", "r5ad.24xlarge", "r5b.large", "r5b.xlarge", "r5b.2xlarge", "r5b.4xlarge", "r5b.8xlarge", "r5b.12xlarge", "r5b.16xlarge", "r5b.24xlarge", "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", "r5d.4xlarge", "r5d.8xlarge", "r5d.12xlarge", "r5d.16xlarge", "r5d.24xlarge", "r5d.metal", "r5dn.large", "r5dn.xlarge", "r5dn.2xlarge", "r5dn.4xlarge", "r5dn.8xlarge", "r5dn.12xlarge", "r5dn.16xlarge", "r5dn.24xlarge", "r5dn.metal", "r5n.large", "r5n.xlarge", "r5n.2xlarge", "r5n.4xlarge", "r5n.8xlarge", "r5n.12xlarge", "r5n.16xlarge", "r5n.24xlarge", "r5n.metal", "r6g.medium", "r6g.large", "r6g.xlarge", "r6g.2xlarge", "r6g.4xlarge", "r6g.8xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.metal", "r6gd.medium", "r6gd.large", "r6gd.xlarge", "r6gd.2xlarge", "r6gd.4xlarge", "r6gd.8xlarge", "r6gd.12xlarge", "r6gd.16xlarge", "r6gd.metal", "r6i.large", "r6i.xlarge", "r6i.2xlarge", "r6i.4xlarge", "r6i.8xlarge", "r6i.12xlarge", "r6i.16xlarge", "r6i.24xlarge", "r6i.32xlarge", "r6i.metal", "t1.micro", "t2.nano", "t2.micro", "t2.small", "t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro", "t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano", "t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge", "t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium", "t4g.large", "t4g.xlarge", "t4g.2xlarge", "u-6tb1.56xlarge", "u-6tb1.112xlarge", "u-9tb1.112xlarge", "u-12tb1.112xlarge", "u-6tb1.metal", "u-9tb1.metal", "u-12tb1.metal", "u-18tb1.metal", "u-24tb1.metal", "vt1.3xlarge", "vt1.6xlarge", "vt1.24xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.xlarge", "x1e.2xlarge", "x1e.4xlarge", "x1e.8xlarge", "x1e.16xlarge", "x1e.32xlarge", "x2iezn.2xlarge", "x2iezn.4xlarge", "x2iezn.6xlarge", "x2iezn.8xlarge", "x2iezn.12xlarge", "x2iezn.metal", "x2gd.medium", "x2gd.large", "x2gd.xlarge", "x2gd.2xlarge", "x2gd.4xlarge", "x2gd.8xlarge", "x2gd.12xlarge", "x2gd.16xlarge", "x2gd.metal", "z1d.large", "z1d.xlarge", "z1d.2xlarge", "z1d.3xlarge", "z1d.6xlarge", "z1d.12xlarge", "z1d.metal", "x2idn.16xlarge", "x2idn.24xlarge", "x2idn.32xlarge", "x2iedn.xlarge", "x2iedn.2xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", "x2iedn.16xlarge", "x2iedn.24xlarge", "x2iedn.32xlarge", "c6a.large", "c6a.xlarge", "c6a.2xlarge", "c6a.4xlarge", "c6a.8xlarge", "c6a.12xlarge", "c6a.16xlarge", "c6a.24xlarge", "c6a.32xlarge", "c6a.48xlarge", "c6a.metal", "m6a.metal", "i4i.large", "i4i.xlarge", "i4i.2xlarge", "i4i.4xlarge", "i4i.8xlarge", "i4i.16xlarge", "i4i.32xlarge", "i4i.metal", "x2idn.metal", "x2iedn.metal", "c7g.medium", "c7g.large", "c7g.xlarge", "c7g.2xlarge", "c7g.4xlarge", "c7g.8xlarge", "c7g.12xlarge", "c7g.16xlarge", "mac2.metal", "c6id.large", "c6id.xlarge", "c6id.2xlarge", "c6id.4xlarge", "c6id.8xlarge", "c6id.12xlarge", "c6id.16xlarge", "c6id.24xlarge", "c6id.32xlarge", "c6id.metal", "m6id.large", "m6id.xlarge", "m6id.2xlarge", "m6id.4xlarge", "m6id.8xlarge", "m6id.12xlarge", "m6id.16xlarge", "m6id.24xlarge", "m6id.32xlarge", "m6id.metal", "r6id.large", "r6id.xlarge", "r6id.2xlarge", "r6id.4xlarge", "r6id.8xlarge", "r6id.12xlarge", "r6id.16xlarge", "r6id.24xlarge", "r6id.32xlarge", "r6id.metal", "r6a.large", "r6a.xlarge", "r6a.2xlarge", "r6a.4xlarge", "r6a.8xlarge", "r6a.12xlarge", "r6a.16xlarge", "r6a.24xlarge", "r6a.32xlarge", "r6a.48xlarge", "r6a.metal", "p4de.24xlarge", "u-3tb1.56xlarge", "u-18tb1.112xlarge", "u-24tb1.112xlarge", "trn1.2xlarge", "trn1.32xlarge", "hpc6id.32xlarge", "c6in.large", "c6in.xlarge", "c6in.2xlarge", "c6in.4xlarge", "c6in.8xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", "c6in.32xlarge", "m6in.large", "m6in.xlarge", "m6in.2xlarge", "m6in.4xlarge", "m6in.8xlarge", "m6in.12xlarge", "m6in.16xlarge", "m6in.24xlarge", "m6in.32xlarge", "m6idn.large", "m6idn.xlarge", "m6idn.2xlarge", "m6idn.4xlarge", "m6idn.8xlarge", "m6idn.12xlarge", "m6idn.16xlarge", "m6idn.24xlarge", "m6idn.32xlarge", "r6in.large", "r6in.xlarge", "r6in.2xlarge", "r6in.4xlarge", "r6in.8xlarge", "r6in.12xlarge", "r6in.16xlarge", "r6in.24xlarge", "r6in.32xlarge", "r6idn.large", "r6idn.xlarge", "r6idn.2xlarge", "r6idn.4xlarge", "r6idn.8xlarge", "r6idn.12xlarge", "r6idn.16xlarge", "r6idn.24xlarge", "r6idn.32xlarge", "c7g.metal", "m7g.medium", "m7g.large", "m7g.xlarge", "m7g.2xlarge", "m7g.4xlarge", "m7g.8xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.metal", "r7g.medium", "r7g.large", "r7g.xlarge", "r7g.2xlarge", "r7g.4xlarge", "r7g.8xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.metal", "c6in.metal", "m6in.metal", "m6idn.metal", "r6in.metal", "r6idn.metal", "inf2.xlarge", "inf2.8xlarge", "inf2.24xlarge", "inf2.48xlarge", "trn1n.32xlarge", "i4g.large", "i4g.xlarge", "i4g.2xlarge", "i4g.4xlarge", "i4g.8xlarge", "i4g.16xlarge", "hpc7g.4xlarge", "hpc7g.8xlarge", "hpc7g.16xlarge", "c7gn.medium", "c7gn.large", "c7gn.xlarge", "c7gn.2xlarge", "c7gn.4xlarge", "c7gn.8xlarge", "c7gn.12xlarge", "c7gn.16xlarge", "p5.48xlarge", "m7i.large", "m7i.xlarge", "m7i.2xlarge", "m7i.4xlarge", "m7i.8xlarge", "m7i.12xlarge", "m7i.16xlarge", "m7i.24xlarge", "m7i.48xlarge", "m7i-flex.large", "m7i-flex.xlarge", "m7i-flex.2xlarge", "m7i-flex.4xlarge", "m7i-flex.8xlarge", "m7a.medium", "m7a.large", "m7a.xlarge", "m7a.2xlarge", "m7a.4xlarge", "m7a.8xlarge", "m7a.12xlarge", "m7a.16xlarge", "m7a.24xlarge", "m7a.32xlarge", "m7a.48xlarge", "m7a.metal-48xl", "hpc7a.12xlarge", "hpc7a.24xlarge", "hpc7a.48xlarge", "hpc7a.96xlarge", "c7gd.medium", "c7gd.large", "c7gd.xlarge", "c7gd.2xlarge", "c7gd.4xlarge", "c7gd.8xlarge", "c7gd.12xlarge", "c7gd.16xlarge", "m7gd.medium", "m7gd.large", "m7gd.xlarge", "m7gd.2xlarge", "m7gd.4xlarge", "m7gd.8xlarge", "m7gd.12xlarge", "m7gd.16xlarge", "r7gd.medium", "r7gd.large", "r7gd.xlarge", "r7gd.2xlarge", "r7gd.4xlarge", "r7gd.8xlarge", "r7gd.12xlarge", "r7gd.16xlarge", "r7a.medium", "r7a.large", "r7a.xlarge", "r7a.2xlarge", "r7a.4xlarge", "r7a.8xlarge", "r7a.12xlarge", "r7a.16xlarge", "r7a.24xlarge", "r7a.32xlarge", "r7a.48xlarge", "c7i.large", "c7i.xlarge", "c7i.2xlarge", "c7i.4xlarge", "c7i.8xlarge", "c7i.12xlarge", "c7i.16xlarge", "c7i.24xlarge", "c7i.48xlarge", "mac2-m2pro.metal", "r7iz.large", "r7iz.xlarge", "r7iz.2xlarge", "r7iz.4xlarge", "r7iz.8xlarge", "r7iz.12xlarge", "r7iz.16xlarge", "r7iz.32xlarge", "c7a.medium", "c7a.large", "c7a.xlarge", "c7a.2xlarge", "c7a.4xlarge", "c7a.8xlarge", "c7a.12xlarge", "c7a.16xlarge", "c7a.24xlarge", "c7a.32xlarge", "c7a.48xlarge", "c7a.metal-48xl", "r7a.metal-48xl", "r7i.large", "r7i.xlarge", "r7i.2xlarge", "r7i.4xlarge", "r7i.8xlarge", "r7i.12xlarge", "r7i.16xlarge", "r7i.24xlarge", "r7i.48xlarge", "dl2q.24xlarge"
|
26519
26807
|
# resp.launch_template_versions[0].launch_template_data.key_name #=> String
|
@@ -29488,6 +29776,9 @@ module Aws::EC2
|
|
29488
29776
|
# resp.network_interfaces[0].attachment.ena_srd_specification.ena_srd_enabled #=> Boolean
|
29489
29777
|
# resp.network_interfaces[0].attachment.ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
29490
29778
|
# resp.network_interfaces[0].availability_zone #=> String
|
29779
|
+
# resp.network_interfaces[0].connection_tracking_configuration.tcp_established_timeout #=> Integer
|
29780
|
+
# resp.network_interfaces[0].connection_tracking_configuration.udp_stream_timeout #=> Integer
|
29781
|
+
# resp.network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
|
29491
29782
|
# resp.network_interfaces[0].description #=> String
|
29492
29783
|
# resp.network_interfaces[0].groups #=> Array
|
29493
29784
|
# resp.network_interfaces[0].groups[0].group_name #=> String
|
@@ -31036,8 +31327,9 @@ module Aws::EC2
|
|
31036
31327
|
req.send_request(options)
|
31037
31328
|
end
|
31038
31329
|
|
31039
|
-
# Describes the VPCs on the other side of a VPC peering connection
|
31040
|
-
#
|
31330
|
+
# Describes the VPCs on the other side of a VPC peering connection or
|
31331
|
+
# the VPCs attached to a transit gateway that are referencing the
|
31332
|
+
# security groups you've specified in this request.
|
31041
31333
|
#
|
31042
31334
|
# @option params [Boolean] :dry_run
|
31043
31335
|
# Checks whether you have the required permissions for the action,
|
@@ -31087,6 +31379,7 @@ module Aws::EC2
|
|
31087
31379
|
# resp.security_group_reference_set[0].group_id #=> String
|
31088
31380
|
# resp.security_group_reference_set[0].referencing_vpc_id #=> String
|
31089
31381
|
# resp.security_group_reference_set[0].vpc_peering_connection_id #=> String
|
31382
|
+
# resp.security_group_reference_set[0].transit_gateway_id #=> String
|
31090
31383
|
#
|
31091
31384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupReferences AWS API Documentation
|
31092
31385
|
#
|
@@ -32300,6 +32593,9 @@ module Aws::EC2
|
|
32300
32593
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].primary_ipv_6 #=> Boolean
|
32301
32594
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ena_srd_specification.ena_srd_enabled #=> Boolean
|
32302
32595
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
32596
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].connection_tracking_specification.tcp_established_timeout #=> Integer
|
32597
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].connection_tracking_specification.udp_stream_timeout #=> Integer
|
32598
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].connection_tracking_specification.udp_timeout #=> Integer
|
32303
32599
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.availability_zone #=> String
|
32304
32600
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.group_name #=> String
|
32305
32601
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.tenancy #=> String, one of "default", "dedicated", "host"
|
@@ -32752,6 +33048,9 @@ module Aws::EC2
|
|
32752
33048
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].primary_ipv_6 #=> Boolean
|
32753
33049
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ena_srd_specification.ena_srd_enabled #=> Boolean
|
32754
33050
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
33051
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].connection_tracking_specification.tcp_established_timeout #=> Integer
|
33052
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].connection_tracking_specification.udp_stream_timeout #=> Integer
|
33053
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].connection_tracking_specification.udp_timeout #=> Integer
|
32755
33054
|
# resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
|
32756
33055
|
# resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
|
32757
33056
|
# resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
|
@@ -32946,9 +33245,16 @@ module Aws::EC2
|
|
32946
33245
|
|
32947
33246
|
# Describes the stale security group rules for security groups in a
|
32948
33247
|
# specified VPC. Rules are stale when they reference a deleted security
|
32949
|
-
# group in the same VPC
|
32950
|
-
#
|
32951
|
-
#
|
33248
|
+
# group in the same VPC, peered VPC, or in separate VPCs attached to a
|
33249
|
+
# transit gateway (with [security group referencing support][1]
|
33250
|
+
# enabled). Rules can also be stale if they reference a security group
|
33251
|
+
# in a peer VPC for which the VPC peering connection has been deleted or
|
33252
|
+
# if they reference a security group in a VPC that has been detached
|
33253
|
+
# from a transit gateway.
|
33254
|
+
#
|
33255
|
+
#
|
33256
|
+
#
|
33257
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
|
32952
33258
|
#
|
32953
33259
|
# @option params [Boolean] :dry_run
|
32954
33260
|
# Checks whether you have the required permissions for the action,
|
@@ -34503,6 +34809,7 @@ module Aws::EC2
|
|
34503
34809
|
# resp.transit_gateway_vpc_attachments[0].subnet_ids[0] #=> String
|
34504
34810
|
# resp.transit_gateway_vpc_attachments[0].creation_time #=> Time
|
34505
34811
|
# resp.transit_gateway_vpc_attachments[0].options.dns_support #=> String, one of "enable", "disable"
|
34812
|
+
# resp.transit_gateway_vpc_attachments[0].options.security_group_referencing_support #=> String, one of "enable", "disable"
|
34506
34813
|
# resp.transit_gateway_vpc_attachments[0].options.ipv_6_support #=> String, one of "enable", "disable"
|
34507
34814
|
# resp.transit_gateway_vpc_attachments[0].options.appliance_mode_support #=> String, one of "enable", "disable"
|
34508
34815
|
# resp.transit_gateway_vpc_attachments[0].tags #=> Array
|
@@ -34618,6 +34925,7 @@ module Aws::EC2
|
|
34618
34925
|
# resp.transit_gateways[0].options.propagation_default_route_table_id #=> String
|
34619
34926
|
# resp.transit_gateways[0].options.vpn_ecmp_support #=> String, one of "enable", "disable"
|
34620
34927
|
# resp.transit_gateways[0].options.dns_support #=> String, one of "enable", "disable"
|
34928
|
+
# resp.transit_gateways[0].options.security_group_referencing_support #=> String, one of "enable", "disable"
|
34621
34929
|
# resp.transit_gateways[0].options.multicast_support #=> String, one of "enable", "disable"
|
34622
34930
|
# resp.transit_gateways[0].tags #=> Array
|
34623
34931
|
# resp.transit_gateways[0].tags[0].key #=> String
|
@@ -34633,11 +34941,6 @@ module Aws::EC2
|
|
34633
34941
|
req.send_request(options)
|
34634
34942
|
end
|
34635
34943
|
|
34636
|
-
# <note markdown="1"> This API action is currently in **limited preview only**. If you are
|
34637
|
-
# interested in using this feature, contact your account manager.
|
34638
|
-
#
|
34639
|
-
# </note>
|
34640
|
-
#
|
34641
34944
|
# Describes one or more network interface trunk associations.
|
34642
34945
|
#
|
34643
34946
|
# @option params [Array<String>] :association_ids
|
@@ -38497,6 +38800,55 @@ module Aws::EC2
|
|
38497
38800
|
req.send_request(options)
|
38498
38801
|
end
|
38499
38802
|
|
38803
|
+
# Remove the association between your Autonomous System Number (ASN) and
|
38804
|
+
# your BYOIP CIDR. You may want to use this action to disassociate an
|
38805
|
+
# ASN from a CIDR or if you want to swap ASNs. For more information, see
|
38806
|
+
# [Tutorial: Bring your ASN to IPAM][1] in the *Amazon VPC IPAM guide*.
|
38807
|
+
#
|
38808
|
+
#
|
38809
|
+
#
|
38810
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-byoasn.html
|
38811
|
+
#
|
38812
|
+
# @option params [Boolean] :dry_run
|
38813
|
+
# Checks whether you have the required permissions for the action,
|
38814
|
+
# without actually making the request, and provides an error response.
|
38815
|
+
# If you have the required permissions, the error response is
|
38816
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
38817
|
+
#
|
38818
|
+
# @option params [required, String] :asn
|
38819
|
+
# A public 2-byte or 4-byte ASN.
|
38820
|
+
#
|
38821
|
+
# @option params [required, String] :cidr
|
38822
|
+
# A BYOIP CIDR.
|
38823
|
+
#
|
38824
|
+
# @return [Types::DisassociateIpamByoasnResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
38825
|
+
#
|
38826
|
+
# * {Types::DisassociateIpamByoasnResult#asn_association #asn_association} => Types::AsnAssociation
|
38827
|
+
#
|
38828
|
+
# @example Request syntax with placeholder values
|
38829
|
+
#
|
38830
|
+
# resp = client.disassociate_ipam_byoasn({
|
38831
|
+
# dry_run: false,
|
38832
|
+
# asn: "String", # required
|
38833
|
+
# cidr: "String", # required
|
38834
|
+
# })
|
38835
|
+
#
|
38836
|
+
# @example Response structure
|
38837
|
+
#
|
38838
|
+
# resp.asn_association.asn #=> String
|
38839
|
+
# resp.asn_association.cidr #=> String
|
38840
|
+
# resp.asn_association.status_message #=> String
|
38841
|
+
# resp.asn_association.state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
38842
|
+
#
|
38843
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateIpamByoasn AWS API Documentation
|
38844
|
+
#
|
38845
|
+
# @overload disassociate_ipam_byoasn(params = {})
|
38846
|
+
# @param [Hash] params ({})
|
38847
|
+
def disassociate_ipam_byoasn(params = {}, options = {})
|
38848
|
+
req = build_request(:disassociate_ipam_byoasn, params)
|
38849
|
+
req.send_request(options)
|
38850
|
+
end
|
38851
|
+
|
38500
38852
|
# Disassociates a resource discovery from an Amazon VPC IPAM. A resource
|
38501
38853
|
# discovery is an IPAM component that enables IPAM to manage and monitor
|
38502
38854
|
# resources that belong to the owning account.
|
@@ -38843,11 +39195,6 @@ module Aws::EC2
|
|
38843
39195
|
req.send_request(options)
|
38844
39196
|
end
|
38845
39197
|
|
38846
|
-
# <note markdown="1"> This API action is currently in **limited preview only**. If you are
|
38847
|
-
# interested in using this feature, contact your account manager.
|
38848
|
-
#
|
38849
|
-
# </note>
|
38850
|
-
#
|
38851
39198
|
# Removes an association between a branch network interface with a trunk
|
38852
39199
|
# network interface.
|
38853
39200
|
#
|
@@ -41245,6 +41592,90 @@ module Aws::EC2
|
|
41245
41592
|
req.send_request(options)
|
41246
41593
|
end
|
41247
41594
|
|
41595
|
+
# Gets the public IP addresses that have been discovered by IPAM.
|
41596
|
+
#
|
41597
|
+
# @option params [Boolean] :dry_run
|
41598
|
+
# A check for whether you have the required permissions for the action
|
41599
|
+
# without actually making the request and provides an error response. If
|
41600
|
+
# you have the required permissions, the error response is
|
41601
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
41602
|
+
#
|
41603
|
+
# @option params [required, String] :ipam_resource_discovery_id
|
41604
|
+
# An IPAM resource discovery ID.
|
41605
|
+
#
|
41606
|
+
# @option params [required, String] :address_region
|
41607
|
+
# The Amazon Web Services Region for the IP address.
|
41608
|
+
#
|
41609
|
+
# @option params [Array<Types::Filter>] :filters
|
41610
|
+
# Filters.
|
41611
|
+
#
|
41612
|
+
# @option params [String] :next_token
|
41613
|
+
# The token for the next page of results.
|
41614
|
+
#
|
41615
|
+
# @option params [Integer] :max_results
|
41616
|
+
# The maximum number of IPAM discovered public addresses to return in
|
41617
|
+
# one page of results.
|
41618
|
+
#
|
41619
|
+
# @return [Types::GetIpamDiscoveredPublicAddressesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
41620
|
+
#
|
41621
|
+
# * {Types::GetIpamDiscoveredPublicAddressesResult#ipam_discovered_public_addresses #ipam_discovered_public_addresses} => Array<Types::IpamDiscoveredPublicAddress>
|
41622
|
+
# * {Types::GetIpamDiscoveredPublicAddressesResult#oldest_sample_time #oldest_sample_time} => Time
|
41623
|
+
# * {Types::GetIpamDiscoveredPublicAddressesResult#next_token #next_token} => String
|
41624
|
+
#
|
41625
|
+
# @example Request syntax with placeholder values
|
41626
|
+
#
|
41627
|
+
# resp = client.get_ipam_discovered_public_addresses({
|
41628
|
+
# dry_run: false,
|
41629
|
+
# ipam_resource_discovery_id: "IpamResourceDiscoveryId", # required
|
41630
|
+
# address_region: "String", # required
|
41631
|
+
# filters: [
|
41632
|
+
# {
|
41633
|
+
# name: "String",
|
41634
|
+
# values: ["String"],
|
41635
|
+
# },
|
41636
|
+
# ],
|
41637
|
+
# next_token: "NextToken",
|
41638
|
+
# max_results: 1,
|
41639
|
+
# })
|
41640
|
+
#
|
41641
|
+
# @example Response structure
|
41642
|
+
#
|
41643
|
+
# resp.ipam_discovered_public_addresses #=> Array
|
41644
|
+
# resp.ipam_discovered_public_addresses[0].ipam_resource_discovery_id #=> String
|
41645
|
+
# resp.ipam_discovered_public_addresses[0].address_region #=> String
|
41646
|
+
# resp.ipam_discovered_public_addresses[0].address #=> String
|
41647
|
+
# resp.ipam_discovered_public_addresses[0].address_owner_id #=> String
|
41648
|
+
# resp.ipam_discovered_public_addresses[0].address_allocation_id #=> String
|
41649
|
+
# resp.ipam_discovered_public_addresses[0].association_status #=> String, one of "associated", "disassociated"
|
41650
|
+
# resp.ipam_discovered_public_addresses[0].address_type #=> String, one of "service-managed-ip", "service-managed-byoip", "amazon-owned-eip", "byoip", "ec2-public-ip"
|
41651
|
+
# resp.ipam_discovered_public_addresses[0].service #=> String, one of "nat-gateway", "database-migration-service", "redshift", "elastic-container-service", "relational-database-service", "site-to-site-vpn", "load-balancer", "global-accelerator", "other"
|
41652
|
+
# resp.ipam_discovered_public_addresses[0].service_resource #=> String
|
41653
|
+
# resp.ipam_discovered_public_addresses[0].vpc_id #=> String
|
41654
|
+
# resp.ipam_discovered_public_addresses[0].subnet_id #=> String
|
41655
|
+
# resp.ipam_discovered_public_addresses[0].public_ipv_4_pool_id #=> String
|
41656
|
+
# resp.ipam_discovered_public_addresses[0].network_interface_id #=> String
|
41657
|
+
# resp.ipam_discovered_public_addresses[0].network_interface_description #=> String
|
41658
|
+
# resp.ipam_discovered_public_addresses[0].instance_id #=> String
|
41659
|
+
# resp.ipam_discovered_public_addresses[0].tags.eip_tags #=> Array
|
41660
|
+
# resp.ipam_discovered_public_addresses[0].tags.eip_tags[0].key #=> String
|
41661
|
+
# resp.ipam_discovered_public_addresses[0].tags.eip_tags[0].value #=> String
|
41662
|
+
# resp.ipam_discovered_public_addresses[0].network_border_group #=> String
|
41663
|
+
# resp.ipam_discovered_public_addresses[0].security_groups #=> Array
|
41664
|
+
# resp.ipam_discovered_public_addresses[0].security_groups[0].group_name #=> String
|
41665
|
+
# resp.ipam_discovered_public_addresses[0].security_groups[0].group_id #=> String
|
41666
|
+
# resp.ipam_discovered_public_addresses[0].sample_time #=> Time
|
41667
|
+
# resp.oldest_sample_time #=> Time
|
41668
|
+
# resp.next_token #=> String
|
41669
|
+
#
|
41670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamDiscoveredPublicAddresses AWS API Documentation
|
41671
|
+
#
|
41672
|
+
# @overload get_ipam_discovered_public_addresses(params = {})
|
41673
|
+
# @param [Hash] params ({})
|
41674
|
+
def get_ipam_discovered_public_addresses(params = {}, options = {})
|
41675
|
+
req = build_request(:get_ipam_discovered_public_addresses, params)
|
41676
|
+
req.send_request(options)
|
41677
|
+
end
|
41678
|
+
|
41248
41679
|
# Returns the resource CIDRs that are monitored as part of a resource
|
41249
41680
|
# discovery. A discovered resource is a resource CIDR monitored under a
|
41250
41681
|
# resource discovery. The following resources can be discovered: VPCs,
|
@@ -41304,7 +41735,7 @@ module Aws::EC2
|
|
41304
41735
|
# resp.ipam_discovered_resource_cidrs[0].resource_id #=> String
|
41305
41736
|
# resp.ipam_discovered_resource_cidrs[0].resource_owner_id #=> String
|
41306
41737
|
# resp.ipam_discovered_resource_cidrs[0].resource_cidr #=> String
|
41307
|
-
# resp.ipam_discovered_resource_cidrs[0].resource_type #=> String, one of "vpc", "subnet", "eip", "public-ipv4-pool", "ipv6-pool"
|
41738
|
+
# resp.ipam_discovered_resource_cidrs[0].resource_type #=> String, one of "vpc", "subnet", "eip", "public-ipv4-pool", "ipv6-pool", "eni"
|
41308
41739
|
# resp.ipam_discovered_resource_cidrs[0].resource_tags #=> Array
|
41309
41740
|
# resp.ipam_discovered_resource_cidrs[0].resource_tags[0].key #=> String
|
41310
41741
|
# resp.ipam_discovered_resource_cidrs[0].resource_tags[0].value #=> String
|
@@ -41394,7 +41825,7 @@ module Aws::EC2
|
|
41394
41825
|
# resp.ipam_pool_allocations[0].ipam_pool_allocation_id #=> String
|
41395
41826
|
# resp.ipam_pool_allocations[0].description #=> String
|
41396
41827
|
# resp.ipam_pool_allocations[0].resource_id #=> String
|
41397
|
-
# resp.ipam_pool_allocations[0].resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom"
|
41828
|
+
# resp.ipam_pool_allocations[0].resource_type #=> String, one of "ipam-pool", "vpc", "ec2-public-ipv4-pool", "custom", "subnet"
|
41398
41829
|
# resp.ipam_pool_allocations[0].resource_region #=> String
|
41399
41830
|
# resp.ipam_pool_allocations[0].resource_owner #=> String
|
41400
41831
|
# resp.next_token #=> String
|
@@ -41541,7 +41972,7 @@ module Aws::EC2
|
|
41541
41972
|
# ipam_scope_id: "IpamScopeId", # required
|
41542
41973
|
# ipam_pool_id: "IpamPoolId",
|
41543
41974
|
# resource_id: "String",
|
41544
|
-
# resource_type: "vpc", # accepts vpc, subnet, eip, public-ipv4-pool, ipv6-pool
|
41975
|
+
# resource_type: "vpc", # accepts vpc, subnet, eip, public-ipv4-pool, ipv6-pool, eni
|
41545
41976
|
# resource_tag: {
|
41546
41977
|
# key: "String",
|
41547
41978
|
# value: "String",
|
@@ -41561,7 +41992,7 @@ module Aws::EC2
|
|
41561
41992
|
# resp.ipam_resource_cidrs[0].resource_id #=> String
|
41562
41993
|
# resp.ipam_resource_cidrs[0].resource_name #=> String
|
41563
41994
|
# resp.ipam_resource_cidrs[0].resource_cidr #=> String
|
41564
|
-
# resp.ipam_resource_cidrs[0].resource_type #=> String, one of "vpc", "subnet", "eip", "public-ipv4-pool", "ipv6-pool"
|
41995
|
+
# resp.ipam_resource_cidrs[0].resource_type #=> String, one of "vpc", "subnet", "eip", "public-ipv4-pool", "ipv6-pool", "eni"
|
41565
41996
|
# resp.ipam_resource_cidrs[0].resource_tags #=> Array
|
41566
41997
|
# resp.ipam_resource_cidrs[0].resource_tags[0].key #=> String
|
41567
41998
|
# resp.ipam_resource_cidrs[0].resource_tags[0].value #=> String
|
@@ -41721,6 +42152,9 @@ module Aws::EC2
|
|
41721
42152
|
# resp.launch_template_data.network_interfaces[0].primary_ipv_6 #=> Boolean
|
41722
42153
|
# resp.launch_template_data.network_interfaces[0].ena_srd_specification.ena_srd_enabled #=> Boolean
|
41723
42154
|
# resp.launch_template_data.network_interfaces[0].ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
42155
|
+
# resp.launch_template_data.network_interfaces[0].connection_tracking_specification.tcp_established_timeout #=> Integer
|
42156
|
+
# resp.launch_template_data.network_interfaces[0].connection_tracking_specification.udp_timeout #=> Integer
|
42157
|
+
# resp.launch_template_data.network_interfaces[0].connection_tracking_specification.udp_stream_timeout #=> Integer
|
41724
42158
|
# resp.launch_template_data.image_id #=> String
|
41725
42159
|
# resp.launch_template_data.instance_type #=> String, one of "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge", "a1.4xlarge", "a1.metal", "c1.medium", "c1.xlarge", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "c5.large", "c5.xlarge", "c5.2xlarge", "c5.4xlarge", "c5.9xlarge", "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", "c5.metal", "c5a.large", "c5a.xlarge", "c5a.2xlarge", "c5a.4xlarge", "c5a.8xlarge", "c5a.12xlarge", "c5a.16xlarge", "c5a.24xlarge", "c5ad.large", "c5ad.xlarge", "c5ad.2xlarge", "c5ad.4xlarge", "c5ad.8xlarge", "c5ad.12xlarge", "c5ad.16xlarge", "c5ad.24xlarge", "c5d.large", "c5d.xlarge", "c5d.2xlarge", "c5d.4xlarge", "c5d.9xlarge", "c5d.12xlarge", "c5d.18xlarge", "c5d.24xlarge", "c5d.metal", "c5n.large", "c5n.xlarge", "c5n.2xlarge", "c5n.4xlarge", "c5n.9xlarge", "c5n.18xlarge", "c5n.metal", "c6g.medium", "c6g.large", "c6g.xlarge", "c6g.2xlarge", "c6g.4xlarge", "c6g.8xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6g.metal", "c6gd.medium", "c6gd.large", "c6gd.xlarge", "c6gd.2xlarge", "c6gd.4xlarge", "c6gd.8xlarge", "c6gd.12xlarge", "c6gd.16xlarge", "c6gd.metal", "c6gn.medium", "c6gn.large", "c6gn.xlarge", "c6gn.2xlarge", "c6gn.4xlarge", "c6gn.8xlarge", "c6gn.12xlarge", "c6gn.16xlarge", "c6i.large", "c6i.xlarge", "c6i.2xlarge", "c6i.4xlarge", "c6i.8xlarge", "c6i.12xlarge", "c6i.16xlarge", "c6i.24xlarge", "c6i.32xlarge", "c6i.metal", "cc1.4xlarge", "cc2.8xlarge", "cg1.4xlarge", "cr1.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", "d3.xlarge", "d3.2xlarge", "d3.4xlarge", "d3.8xlarge", "d3en.xlarge", "d3en.2xlarge", "d3en.4xlarge", "d3en.6xlarge", "d3en.8xlarge", "d3en.12xlarge", "dl1.24xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", "g2.2xlarge", "g2.8xlarge", "g3.4xlarge", "g3.8xlarge", "g3.16xlarge", "g3s.xlarge", "g4ad.xlarge", "g4ad.2xlarge", "g4ad.4xlarge", "g4ad.8xlarge", "g4ad.16xlarge", "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge", "g4dn.metal", "g5.xlarge", "g5.2xlarge", "g5.4xlarge", "g5.8xlarge", "g5.12xlarge", "g5.16xlarge", "g5.24xlarge", "g5.48xlarge", "g5g.xlarge", "g5g.2xlarge", "g5g.4xlarge", "g5g.8xlarge", "g5g.16xlarge", "g5g.metal", "hi1.4xlarge", "hpc6a.48xlarge", "hs1.8xlarge", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "h1.16xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", "i3.large", "i3.xlarge", "i3.2xlarge", "i3.4xlarge", "i3.8xlarge", "i3.16xlarge", "i3.metal", "i3en.large", "i3en.xlarge", "i3en.2xlarge", "i3en.3xlarge", "i3en.6xlarge", "i3en.12xlarge", "i3en.24xlarge", "i3en.metal", "im4gn.large", "im4gn.xlarge", "im4gn.2xlarge", "im4gn.4xlarge", "im4gn.8xlarge", "im4gn.16xlarge", "inf1.xlarge", "inf1.2xlarge", "inf1.6xlarge", "inf1.24xlarge", "is4gen.medium", "is4gen.large", "is4gen.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge", "m4.16xlarge", "m5.large", "m5.xlarge", "m5.2xlarge", "m5.4xlarge", "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", "m5.metal", "m5a.large", "m5a.xlarge", "m5a.2xlarge", "m5a.4xlarge", "m5a.8xlarge", "m5a.12xlarge", "m5a.16xlarge", "m5a.24xlarge", "m5ad.large", "m5ad.xlarge", "m5ad.2xlarge", "m5ad.4xlarge", "m5ad.8xlarge", "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", "m5d.large", "m5d.xlarge", "m5d.2xlarge", "m5d.4xlarge", "m5d.8xlarge", "m5d.12xlarge", "m5d.16xlarge", "m5d.24xlarge", "m5d.metal", "m5dn.large", "m5dn.xlarge", "m5dn.2xlarge", "m5dn.4xlarge", "m5dn.8xlarge", "m5dn.12xlarge", "m5dn.16xlarge", "m5dn.24xlarge", "m5dn.metal", "m5n.large", "m5n.xlarge", "m5n.2xlarge", "m5n.4xlarge", "m5n.8xlarge", "m5n.12xlarge", "m5n.16xlarge", "m5n.24xlarge", "m5n.metal", "m5zn.large", "m5zn.xlarge", "m5zn.2xlarge", "m5zn.3xlarge", "m5zn.6xlarge", "m5zn.12xlarge", "m5zn.metal", "m6a.large", "m6a.xlarge", "m6a.2xlarge", "m6a.4xlarge", "m6a.8xlarge", "m6a.12xlarge", "m6a.16xlarge", "m6a.24xlarge", "m6a.32xlarge", "m6a.48xlarge", "m6g.metal", "m6g.medium", "m6g.large", "m6g.xlarge", "m6g.2xlarge", "m6g.4xlarge", "m6g.8xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6gd.metal", "m6gd.medium", "m6gd.large", "m6gd.xlarge", "m6gd.2xlarge", "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", "m6gd.16xlarge", "m6i.large", "m6i.xlarge", "m6i.2xlarge", "m6i.4xlarge", "m6i.8xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", "m6i.32xlarge", "m6i.metal", "mac1.metal", "p2.xlarge", "p2.8xlarge", "p2.16xlarge", "p3.2xlarge", "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", "p4d.24xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "r4.large", "r4.xlarge", "r4.2xlarge", "r4.4xlarge", "r4.8xlarge", "r4.16xlarge", "r5.large", "r5.xlarge", "r5.2xlarge", "r5.4xlarge", "r5.8xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", "r5.metal", "r5a.large", "r5a.xlarge", "r5a.2xlarge", "r5a.4xlarge", "r5a.8xlarge", "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", "r5ad.large", "r5ad.xlarge", "r5ad.2xlarge", "r5ad.4xlarge", "r5ad.8xlarge", "r5ad.12xlarge", "r5ad.16xlarge", "r5ad.24xlarge", "r5b.large", "r5b.xlarge", "r5b.2xlarge", "r5b.4xlarge", "r5b.8xlarge", "r5b.12xlarge", "r5b.16xlarge", "r5b.24xlarge", "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", "r5d.4xlarge", "r5d.8xlarge", "r5d.12xlarge", "r5d.16xlarge", "r5d.24xlarge", "r5d.metal", "r5dn.large", "r5dn.xlarge", "r5dn.2xlarge", "r5dn.4xlarge", "r5dn.8xlarge", "r5dn.12xlarge", "r5dn.16xlarge", "r5dn.24xlarge", "r5dn.metal", "r5n.large", "r5n.xlarge", "r5n.2xlarge", "r5n.4xlarge", "r5n.8xlarge", "r5n.12xlarge", "r5n.16xlarge", "r5n.24xlarge", "r5n.metal", "r6g.medium", "r6g.large", "r6g.xlarge", "r6g.2xlarge", "r6g.4xlarge", "r6g.8xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.metal", "r6gd.medium", "r6gd.large", "r6gd.xlarge", "r6gd.2xlarge", "r6gd.4xlarge", "r6gd.8xlarge", "r6gd.12xlarge", "r6gd.16xlarge", "r6gd.metal", "r6i.large", "r6i.xlarge", "r6i.2xlarge", "r6i.4xlarge", "r6i.8xlarge", "r6i.12xlarge", "r6i.16xlarge", "r6i.24xlarge", "r6i.32xlarge", "r6i.metal", "t1.micro", "t2.nano", "t2.micro", "t2.small", "t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro", "t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano", "t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge", "t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium", "t4g.large", "t4g.xlarge", "t4g.2xlarge", "u-6tb1.56xlarge", "u-6tb1.112xlarge", "u-9tb1.112xlarge", "u-12tb1.112xlarge", "u-6tb1.metal", "u-9tb1.metal", "u-12tb1.metal", "u-18tb1.metal", "u-24tb1.metal", "vt1.3xlarge", "vt1.6xlarge", "vt1.24xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.xlarge", "x1e.2xlarge", "x1e.4xlarge", "x1e.8xlarge", "x1e.16xlarge", "x1e.32xlarge", "x2iezn.2xlarge", "x2iezn.4xlarge", "x2iezn.6xlarge", "x2iezn.8xlarge", "x2iezn.12xlarge", "x2iezn.metal", "x2gd.medium", "x2gd.large", "x2gd.xlarge", "x2gd.2xlarge", "x2gd.4xlarge", "x2gd.8xlarge", "x2gd.12xlarge", "x2gd.16xlarge", "x2gd.metal", "z1d.large", "z1d.xlarge", "z1d.2xlarge", "z1d.3xlarge", "z1d.6xlarge", "z1d.12xlarge", "z1d.metal", "x2idn.16xlarge", "x2idn.24xlarge", "x2idn.32xlarge", "x2iedn.xlarge", "x2iedn.2xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", "x2iedn.16xlarge", "x2iedn.24xlarge", "x2iedn.32xlarge", "c6a.large", "c6a.xlarge", "c6a.2xlarge", "c6a.4xlarge", "c6a.8xlarge", "c6a.12xlarge", "c6a.16xlarge", "c6a.24xlarge", "c6a.32xlarge", "c6a.48xlarge", "c6a.metal", "m6a.metal", "i4i.large", "i4i.xlarge", "i4i.2xlarge", "i4i.4xlarge", "i4i.8xlarge", "i4i.16xlarge", "i4i.32xlarge", "i4i.metal", "x2idn.metal", "x2iedn.metal", "c7g.medium", "c7g.large", "c7g.xlarge", "c7g.2xlarge", "c7g.4xlarge", "c7g.8xlarge", "c7g.12xlarge", "c7g.16xlarge", "mac2.metal", "c6id.large", "c6id.xlarge", "c6id.2xlarge", "c6id.4xlarge", "c6id.8xlarge", "c6id.12xlarge", "c6id.16xlarge", "c6id.24xlarge", "c6id.32xlarge", "c6id.metal", "m6id.large", "m6id.xlarge", "m6id.2xlarge", "m6id.4xlarge", "m6id.8xlarge", "m6id.12xlarge", "m6id.16xlarge", "m6id.24xlarge", "m6id.32xlarge", "m6id.metal", "r6id.large", "r6id.xlarge", "r6id.2xlarge", "r6id.4xlarge", "r6id.8xlarge", "r6id.12xlarge", "r6id.16xlarge", "r6id.24xlarge", "r6id.32xlarge", "r6id.metal", "r6a.large", "r6a.xlarge", "r6a.2xlarge", "r6a.4xlarge", "r6a.8xlarge", "r6a.12xlarge", "r6a.16xlarge", "r6a.24xlarge", "r6a.32xlarge", "r6a.48xlarge", "r6a.metal", "p4de.24xlarge", "u-3tb1.56xlarge", "u-18tb1.112xlarge", "u-24tb1.112xlarge", "trn1.2xlarge", "trn1.32xlarge", "hpc6id.32xlarge", "c6in.large", "c6in.xlarge", "c6in.2xlarge", "c6in.4xlarge", "c6in.8xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", "c6in.32xlarge", "m6in.large", "m6in.xlarge", "m6in.2xlarge", "m6in.4xlarge", "m6in.8xlarge", "m6in.12xlarge", "m6in.16xlarge", "m6in.24xlarge", "m6in.32xlarge", "m6idn.large", "m6idn.xlarge", "m6idn.2xlarge", "m6idn.4xlarge", "m6idn.8xlarge", "m6idn.12xlarge", "m6idn.16xlarge", "m6idn.24xlarge", "m6idn.32xlarge", "r6in.large", "r6in.xlarge", "r6in.2xlarge", "r6in.4xlarge", "r6in.8xlarge", "r6in.12xlarge", "r6in.16xlarge", "r6in.24xlarge", "r6in.32xlarge", "r6idn.large", "r6idn.xlarge", "r6idn.2xlarge", "r6idn.4xlarge", "r6idn.8xlarge", "r6idn.12xlarge", "r6idn.16xlarge", "r6idn.24xlarge", "r6idn.32xlarge", "c7g.metal", "m7g.medium", "m7g.large", "m7g.xlarge", "m7g.2xlarge", "m7g.4xlarge", "m7g.8xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.metal", "r7g.medium", "r7g.large", "r7g.xlarge", "r7g.2xlarge", "r7g.4xlarge", "r7g.8xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.metal", "c6in.metal", "m6in.metal", "m6idn.metal", "r6in.metal", "r6idn.metal", "inf2.xlarge", "inf2.8xlarge", "inf2.24xlarge", "inf2.48xlarge", "trn1n.32xlarge", "i4g.large", "i4g.xlarge", "i4g.2xlarge", "i4g.4xlarge", "i4g.8xlarge", "i4g.16xlarge", "hpc7g.4xlarge", "hpc7g.8xlarge", "hpc7g.16xlarge", "c7gn.medium", "c7gn.large", "c7gn.xlarge", "c7gn.2xlarge", "c7gn.4xlarge", "c7gn.8xlarge", "c7gn.12xlarge", "c7gn.16xlarge", "p5.48xlarge", "m7i.large", "m7i.xlarge", "m7i.2xlarge", "m7i.4xlarge", "m7i.8xlarge", "m7i.12xlarge", "m7i.16xlarge", "m7i.24xlarge", "m7i.48xlarge", "m7i-flex.large", "m7i-flex.xlarge", "m7i-flex.2xlarge", "m7i-flex.4xlarge", "m7i-flex.8xlarge", "m7a.medium", "m7a.large", "m7a.xlarge", "m7a.2xlarge", "m7a.4xlarge", "m7a.8xlarge", "m7a.12xlarge", "m7a.16xlarge", "m7a.24xlarge", "m7a.32xlarge", "m7a.48xlarge", "m7a.metal-48xl", "hpc7a.12xlarge", "hpc7a.24xlarge", "hpc7a.48xlarge", "hpc7a.96xlarge", "c7gd.medium", "c7gd.large", "c7gd.xlarge", "c7gd.2xlarge", "c7gd.4xlarge", "c7gd.8xlarge", "c7gd.12xlarge", "c7gd.16xlarge", "m7gd.medium", "m7gd.large", "m7gd.xlarge", "m7gd.2xlarge", "m7gd.4xlarge", "m7gd.8xlarge", "m7gd.12xlarge", "m7gd.16xlarge", "r7gd.medium", "r7gd.large", "r7gd.xlarge", "r7gd.2xlarge", "r7gd.4xlarge", "r7gd.8xlarge", "r7gd.12xlarge", "r7gd.16xlarge", "r7a.medium", "r7a.large", "r7a.xlarge", "r7a.2xlarge", "r7a.4xlarge", "r7a.8xlarge", "r7a.12xlarge", "r7a.16xlarge", "r7a.24xlarge", "r7a.32xlarge", "r7a.48xlarge", "c7i.large", "c7i.xlarge", "c7i.2xlarge", "c7i.4xlarge", "c7i.8xlarge", "c7i.12xlarge", "c7i.16xlarge", "c7i.24xlarge", "c7i.48xlarge", "mac2-m2pro.metal", "r7iz.large", "r7iz.xlarge", "r7iz.2xlarge", "r7iz.4xlarge", "r7iz.8xlarge", "r7iz.12xlarge", "r7iz.16xlarge", "r7iz.32xlarge", "c7a.medium", "c7a.large", "c7a.xlarge", "c7a.2xlarge", "c7a.4xlarge", "c7a.8xlarge", "c7a.12xlarge", "c7a.16xlarge", "c7a.24xlarge", "c7a.32xlarge", "c7a.48xlarge", "c7a.metal-48xl", "r7a.metal-48xl", "r7i.large", "r7i.xlarge", "r7i.2xlarge", "r7i.4xlarge", "r7i.8xlarge", "r7i.12xlarge", "r7i.16xlarge", "r7i.24xlarge", "r7i.48xlarge", "dl2q.24xlarge"
|
41726
42160
|
# resp.launch_template_data.key_name #=> String
|
@@ -46790,6 +47224,15 @@ module Aws::EC2
|
|
46790
47224
|
# @option params [Array<Types::RemoveIpamOperatingRegion>] :remove_operating_regions
|
46791
47225
|
# The operating Regions to remove.
|
46792
47226
|
#
|
47227
|
+
# @option params [String] :tier
|
47228
|
+
# IPAM is offered in a Free Tier and an Advanced Tier. For more
|
47229
|
+
# information about the features available in each tier and the costs
|
47230
|
+
# associated with the tiers, see [Amazon VPC pricing > IPAM tab][1].
|
47231
|
+
#
|
47232
|
+
#
|
47233
|
+
#
|
47234
|
+
# [1]: http://aws.amazon.com/vpc/pricing/
|
47235
|
+
#
|
46793
47236
|
# @return [Types::ModifyIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
46794
47237
|
#
|
46795
47238
|
# * {Types::ModifyIpamResult#ipam #ipam} => Types::Ipam
|
@@ -46810,6 +47253,7 @@ module Aws::EC2
|
|
46810
47253
|
# region_name: "String",
|
46811
47254
|
# },
|
46812
47255
|
# ],
|
47256
|
+
# tier: "free", # accepts free, advanced
|
46813
47257
|
# })
|
46814
47258
|
#
|
46815
47259
|
# @example Response structure
|
@@ -46831,6 +47275,8 @@ module Aws::EC2
|
|
46831
47275
|
# resp.ipam.default_resource_discovery_id #=> String
|
46832
47276
|
# resp.ipam.default_resource_discovery_association_id #=> String
|
46833
47277
|
# resp.ipam.resource_discovery_association_count #=> Integer
|
47278
|
+
# resp.ipam.state_message #=> String
|
47279
|
+
# resp.ipam.tier #=> String, one of "free", "advanced"
|
46834
47280
|
#
|
46835
47281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpam AWS API Documentation
|
46836
47282
|
#
|
@@ -46967,6 +47413,10 @@ module Aws::EC2
|
|
46967
47413
|
# resp.ipam_pool.tags[0].value #=> String
|
46968
47414
|
# resp.ipam_pool.aws_service #=> String, one of "ec2"
|
46969
47415
|
# resp.ipam_pool.public_ip_source #=> String, one of "amazon", "byoip"
|
47416
|
+
# resp.ipam_pool.source_resource.resource_id #=> String
|
47417
|
+
# resp.ipam_pool.source_resource.resource_type #=> String, one of "vpc"
|
47418
|
+
# resp.ipam_pool.source_resource.resource_region #=> String
|
47419
|
+
# resp.ipam_pool.source_resource.resource_owner #=> String
|
46970
47420
|
#
|
46971
47421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPool AWS API Documentation
|
46972
47422
|
#
|
@@ -47044,7 +47494,7 @@ module Aws::EC2
|
|
47044
47494
|
# resp.ipam_resource_cidr.resource_id #=> String
|
47045
47495
|
# resp.ipam_resource_cidr.resource_name #=> String
|
47046
47496
|
# resp.ipam_resource_cidr.resource_cidr #=> String
|
47047
|
-
# resp.ipam_resource_cidr.resource_type #=> String, one of "vpc", "subnet", "eip", "public-ipv4-pool", "ipv6-pool"
|
47497
|
+
# resp.ipam_resource_cidr.resource_type #=> String, one of "vpc", "subnet", "eip", "public-ipv4-pool", "ipv6-pool", "eni"
|
47048
47498
|
# resp.ipam_resource_cidr.resource_tags #=> Array
|
47049
47499
|
# resp.ipam_resource_cidr.resource_tags[0].key #=> String
|
47050
47500
|
# resp.ipam_resource_cidr.resource_tags[0].value #=> String
|
@@ -47489,6 +47939,9 @@ module Aws::EC2
|
|
47489
47939
|
# address, the first IPv6 GUA address associated with the ENI becomes
|
47490
47940
|
# the primary IPv6 address.
|
47491
47941
|
#
|
47942
|
+
# @option params [Types::ConnectionTrackingSpecificationRequest] :connection_tracking_specification
|
47943
|
+
# A connection tracking specification.
|
47944
|
+
#
|
47492
47945
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
47493
47946
|
#
|
47494
47947
|
#
|
@@ -47559,6 +48012,11 @@ module Aws::EC2
|
|
47559
48012
|
# },
|
47560
48013
|
# },
|
47561
48014
|
# enable_primary_ipv_6: false,
|
48015
|
+
# connection_tracking_specification: {
|
48016
|
+
# tcp_established_timeout: 1,
|
48017
|
+
# udp_stream_timeout: 1,
|
48018
|
+
# udp_timeout: 1,
|
48019
|
+
# },
|
47562
48020
|
# })
|
47563
48021
|
#
|
47564
48022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttribute AWS API Documentation
|
@@ -48547,6 +49005,7 @@ module Aws::EC2
|
|
48547
49005
|
# remove_transit_gateway_cidr_blocks: ["String"],
|
48548
49006
|
# vpn_ecmp_support: "enable", # accepts enable, disable
|
48549
49007
|
# dns_support: "enable", # accepts enable, disable
|
49008
|
+
# security_group_referencing_support: "enable", # accepts enable, disable
|
48550
49009
|
# auto_accept_shared_attachments: "enable", # accepts enable, disable
|
48551
49010
|
# default_route_table_association: "enable", # accepts enable, disable
|
48552
49011
|
# association_default_route_table_id: "TransitGatewayRouteTableId",
|
@@ -48575,6 +49034,7 @@ module Aws::EC2
|
|
48575
49034
|
# resp.transit_gateway.options.propagation_default_route_table_id #=> String
|
48576
49035
|
# resp.transit_gateway.options.vpn_ecmp_support #=> String, one of "enable", "disable"
|
48577
49036
|
# resp.transit_gateway.options.dns_support #=> String, one of "enable", "disable"
|
49037
|
+
# resp.transit_gateway.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
48578
49038
|
# resp.transit_gateway.options.multicast_support #=> String, one of "enable", "disable"
|
48579
49039
|
# resp.transit_gateway.tags #=> Array
|
48580
49040
|
# resp.transit_gateway.tags[0].key #=> String
|
@@ -48677,6 +49137,7 @@ module Aws::EC2
|
|
48677
49137
|
# remove_subnet_ids: ["SubnetId"],
|
48678
49138
|
# options: {
|
48679
49139
|
# dns_support: "enable", # accepts enable, disable
|
49140
|
+
# security_group_referencing_support: "enable", # accepts enable, disable
|
48680
49141
|
# ipv_6_support: "enable", # accepts enable, disable
|
48681
49142
|
# appliance_mode_support: "enable", # accepts enable, disable
|
48682
49143
|
# },
|
@@ -48694,6 +49155,7 @@ module Aws::EC2
|
|
48694
49155
|
# resp.transit_gateway_vpc_attachment.subnet_ids[0] #=> String
|
48695
49156
|
# resp.transit_gateway_vpc_attachment.creation_time #=> Time
|
48696
49157
|
# resp.transit_gateway_vpc_attachment.options.dns_support #=> String, one of "enable", "disable"
|
49158
|
+
# resp.transit_gateway_vpc_attachment.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
48697
49159
|
# resp.transit_gateway_vpc_attachment.options.ipv_6_support #=> String, one of "enable", "disable"
|
48698
49160
|
# resp.transit_gateway_vpc_attachment.options.appliance_mode_support #=> String, one of "enable", "disable"
|
48699
49161
|
# resp.transit_gateway_vpc_attachment.tags #=> Array
|
@@ -50760,6 +51222,11 @@ module Aws::EC2
|
|
50760
51222
|
#
|
50761
51223
|
# resp.byoip_cidr.cidr #=> String
|
50762
51224
|
# resp.byoip_cidr.description #=> String
|
51225
|
+
# resp.byoip_cidr.asn_associations #=> Array
|
51226
|
+
# resp.byoip_cidr.asn_associations[0].asn #=> String
|
51227
|
+
# resp.byoip_cidr.asn_associations[0].cidr #=> String
|
51228
|
+
# resp.byoip_cidr.asn_associations[0].status_message #=> String
|
51229
|
+
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
50763
51230
|
# resp.byoip_cidr.status_message #=> String
|
50764
51231
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
50765
51232
|
#
|
@@ -50861,6 +51328,11 @@ module Aws::EC2
|
|
50861
51328
|
#
|
50862
51329
|
# resp.byoip_cidr.cidr #=> String
|
50863
51330
|
# resp.byoip_cidr.description #=> String
|
51331
|
+
# resp.byoip_cidr.asn_associations #=> Array
|
51332
|
+
# resp.byoip_cidr.asn_associations[0].asn #=> String
|
51333
|
+
# resp.byoip_cidr.asn_associations[0].cidr #=> String
|
51334
|
+
# resp.byoip_cidr.asn_associations[0].status_message #=> String
|
51335
|
+
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
50864
51336
|
# resp.byoip_cidr.status_message #=> String
|
50865
51337
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
50866
51338
|
#
|
@@ -50873,6 +51345,63 @@ module Aws::EC2
|
|
50873
51345
|
req.send_request(options)
|
50874
51346
|
end
|
50875
51347
|
|
51348
|
+
# Provisions your Autonomous System Number (ASN) for use in your Amazon
|
51349
|
+
# Web Services account. This action requires authorization context for
|
51350
|
+
# Amazon to bring the ASN to an Amazon Web Services account. For more
|
51351
|
+
# information, see [Tutorial: Bring your ASN to IPAM][1] in the *Amazon
|
51352
|
+
# VPC IPAM guide*.
|
51353
|
+
#
|
51354
|
+
#
|
51355
|
+
#
|
51356
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-byoasn.html
|
51357
|
+
#
|
51358
|
+
# @option params [Boolean] :dry_run
|
51359
|
+
# Checks whether you have the required permissions for the action,
|
51360
|
+
# without actually making the request, and provides an error response.
|
51361
|
+
# If you have the required permissions, the error response is
|
51362
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
51363
|
+
#
|
51364
|
+
# @option params [required, String] :ipam_id
|
51365
|
+
# An IPAM ID.
|
51366
|
+
#
|
51367
|
+
# @option params [required, String] :asn
|
51368
|
+
# A public 2-byte or 4-byte ASN.
|
51369
|
+
#
|
51370
|
+
# @option params [required, Types::AsnAuthorizationContext] :asn_authorization_context
|
51371
|
+
# An ASN authorization context.
|
51372
|
+
#
|
51373
|
+
# @return [Types::ProvisionIpamByoasnResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
51374
|
+
#
|
51375
|
+
# * {Types::ProvisionIpamByoasnResult#byoasn #byoasn} => Types::Byoasn
|
51376
|
+
#
|
51377
|
+
# @example Request syntax with placeholder values
|
51378
|
+
#
|
51379
|
+
# resp = client.provision_ipam_byoasn({
|
51380
|
+
# dry_run: false,
|
51381
|
+
# ipam_id: "IpamId", # required
|
51382
|
+
# asn: "String", # required
|
51383
|
+
# asn_authorization_context: { # required
|
51384
|
+
# message: "String", # required
|
51385
|
+
# signature: "String", # required
|
51386
|
+
# },
|
51387
|
+
# })
|
51388
|
+
#
|
51389
|
+
# @example Response structure
|
51390
|
+
#
|
51391
|
+
# resp.byoasn.asn #=> String
|
51392
|
+
# resp.byoasn.ipam_id #=> String
|
51393
|
+
# resp.byoasn.status_message #=> String
|
51394
|
+
# resp.byoasn.state #=> String, one of "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned"
|
51395
|
+
#
|
51396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionIpamByoasn AWS API Documentation
|
51397
|
+
#
|
51398
|
+
# @overload provision_ipam_byoasn(params = {})
|
51399
|
+
# @param [Hash] params ({})
|
51400
|
+
def provision_ipam_byoasn(params = {}, options = {})
|
51401
|
+
req = build_request(:provision_ipam_byoasn, params)
|
51402
|
+
req.send_request(options)
|
51403
|
+
end
|
51404
|
+
|
50876
51405
|
# Provision a CIDR to an IPAM pool. You can use this action to provision
|
50877
51406
|
# new CIDRs to a top-level pool or to transfer a CIDR from a top-level
|
50878
51407
|
# pool to a pool within it.
|
@@ -51987,6 +52516,7 @@ module Aws::EC2
|
|
51987
52516
|
# resp.transit_gateway_vpc_attachment.subnet_ids[0] #=> String
|
51988
52517
|
# resp.transit_gateway_vpc_attachment.creation_time #=> Time
|
51989
52518
|
# resp.transit_gateway_vpc_attachment.options.dns_support #=> String, one of "enable", "disable"
|
52519
|
+
# resp.transit_gateway_vpc_attachment.options.security_group_referencing_support #=> String, one of "enable", "disable"
|
51990
52520
|
# resp.transit_gateway_vpc_attachment.options.ipv_6_support #=> String, one of "enable", "disable"
|
51991
52521
|
# resp.transit_gateway_vpc_attachment.options.appliance_mode_support #=> String, one of "enable", "disable"
|
51992
52522
|
# resp.transit_gateway_vpc_attachment.tags #=> Array
|
@@ -53148,6 +53678,11 @@ module Aws::EC2
|
|
53148
53678
|
# ena_srd_udp_enabled: false,
|
53149
53679
|
# },
|
53150
53680
|
# },
|
53681
|
+
# connection_tracking_specification: {
|
53682
|
+
# tcp_established_timeout: 1,
|
53683
|
+
# udp_stream_timeout: 1,
|
53684
|
+
# udp_timeout: 1,
|
53685
|
+
# },
|
53151
53686
|
# },
|
53152
53687
|
# ],
|
53153
53688
|
# placement: {
|
@@ -53618,6 +54153,11 @@ module Aws::EC2
|
|
53618
54153
|
# ena_srd_udp_enabled: false,
|
53619
54154
|
# },
|
53620
54155
|
# },
|
54156
|
+
# connection_tracking_specification: {
|
54157
|
+
# tcp_established_timeout: 1,
|
54158
|
+
# udp_stream_timeout: 1,
|
54159
|
+
# udp_timeout: 1,
|
54160
|
+
# },
|
53621
54161
|
# },
|
53622
54162
|
# ],
|
53623
54163
|
# placement: {
|
@@ -53713,6 +54253,9 @@ module Aws::EC2
|
|
53713
54253
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].primary_ipv_6 #=> Boolean
|
53714
54254
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ena_srd_specification.ena_srd_enabled #=> Boolean
|
53715
54255
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].ena_srd_specification.ena_srd_udp_specification.ena_srd_udp_enabled #=> Boolean
|
54256
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].connection_tracking_specification.tcp_established_timeout #=> Integer
|
54257
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].connection_tracking_specification.udp_stream_timeout #=> Integer
|
54258
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].connection_tracking_specification.udp_timeout #=> Integer
|
53716
54259
|
# resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
|
53717
54260
|
# resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
|
53718
54261
|
# resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
|
@@ -55327,6 +55870,11 @@ module Aws::EC2
|
|
55327
55870
|
# ena_srd_udp_enabled: false,
|
55328
55871
|
# },
|
55329
55872
|
# },
|
55873
|
+
# connection_tracking_specification: {
|
55874
|
+
# tcp_established_timeout: 1,
|
55875
|
+
# udp_stream_timeout: 1,
|
55876
|
+
# udp_timeout: 1,
|
55877
|
+
# },
|
55330
55878
|
# },
|
55331
55879
|
# ],
|
55332
55880
|
# private_ip_address: "String",
|
@@ -55517,6 +56065,9 @@ module Aws::EC2
|
|
55517
56065
|
# resp.instances[0].network_interfaces[0].ipv_4_prefixes[0].ipv_4_prefix #=> String
|
55518
56066
|
# resp.instances[0].network_interfaces[0].ipv_6_prefixes #=> Array
|
55519
56067
|
# resp.instances[0].network_interfaces[0].ipv_6_prefixes[0].ipv_6_prefix #=> String
|
56068
|
+
# resp.instances[0].network_interfaces[0].connection_tracking_configuration.tcp_established_timeout #=> Integer
|
56069
|
+
# resp.instances[0].network_interfaces[0].connection_tracking_configuration.udp_stream_timeout #=> Integer
|
56070
|
+
# resp.instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
|
55520
56071
|
# resp.instances[0].outpost_arn #=> String
|
55521
56072
|
# resp.instances[0].root_device_name #=> String
|
55522
56073
|
# resp.instances[0].root_device_type #=> String, one of "ebs", "instance-store"
|
@@ -58023,6 +58574,11 @@ module Aws::EC2
|
|
58023
58574
|
#
|
58024
58575
|
# resp.byoip_cidr.cidr #=> String
|
58025
58576
|
# resp.byoip_cidr.description #=> String
|
58577
|
+
# resp.byoip_cidr.asn_associations #=> Array
|
58578
|
+
# resp.byoip_cidr.asn_associations[0].asn #=> String
|
58579
|
+
# resp.byoip_cidr.asn_associations[0].cidr #=> String
|
58580
|
+
# resp.byoip_cidr.asn_associations[0].status_message #=> String
|
58581
|
+
# resp.byoip_cidr.asn_associations[0].state #=> String, one of "disassociated", "failed-disassociation", "failed-association", "pending-disassociation", "pending-association", "associated"
|
58026
58582
|
# resp.byoip_cidr.status_message #=> String
|
58027
58583
|
# resp.byoip_cidr.state #=> String, one of "advertised", "deprovisioned", "failed-deprovision", "failed-provision", "pending-deprovision", "pending-provision", "provisioned", "provisioned-not-publicly-advertisable"
|
58028
58584
|
#
|
@@ -58048,7 +58604,7 @@ module Aws::EC2
|
|
58048
58604
|
params: params,
|
58049
58605
|
config: config)
|
58050
58606
|
context[:gem_name] = 'aws-sdk-ec2'
|
58051
|
-
context[:gem_version] = '1.
|
58607
|
+
context[:gem_version] = '1.424.0'
|
58052
58608
|
Seahorse::Client::Request.new(handlers, context)
|
58053
58609
|
end
|
58054
58610
|
|