aws-sdk-ec2 1.422.0 → 1.423.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.
@@ -798,6 +798,10 @@ module Aws::EC2
798
798
  # provisioned range.
799
799
  # @return [String]
800
800
  #
801
+ # @!attribute [rw] asn
802
+ # The public 2-byte or 4-byte ASN that you want to advertise.
803
+ # @return [String]
804
+ #
801
805
  # @!attribute [rw] 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.
@@ -809,6 +813,7 @@ module Aws::EC2
809
813
  #
810
814
  class AdvertiseByoipCidrRequest < Struct.new(
811
815
  :cidr,
816
+ :asn,
812
817
  :dry_run)
813
818
  SENSITIVE = []
814
819
  include Aws::Structure
@@ -1142,6 +1147,12 @@ module Aws::EC2
1142
1147
  # A preview of the next available CIDR in a pool.
1143
1148
  # @return [Boolean]
1144
1149
  #
1150
+ # @!attribute [rw] allowed_cidrs
1151
+ # Include a particular CIDR range that can be returned by the pool.
1152
+ # Allowed CIDRs are only allowed if using netmask length for
1153
+ # allocation.
1154
+ # @return [Array<String>]
1155
+ #
1145
1156
  # @!attribute [rw] disallowed_cidrs
1146
1157
  # Exclude a particular CIDR range from being returned by the pool.
1147
1158
  # Disallowed CIDRs are only allowed if using netmask length for
@@ -1158,6 +1169,7 @@ module Aws::EC2
1158
1169
  :client_token,
1159
1170
  :description,
1160
1171
  :preview_next_cidr,
1172
+ :allowed_cidrs,
1161
1173
  :disallowed_cidrs)
1162
1174
  SENSITIVE = []
1163
1175
  include Aws::Structure
@@ -1555,6 +1567,62 @@ module Aws::EC2
1555
1567
  include Aws::Structure
1556
1568
  end
1557
1569
 
1570
+ # An Autonomous System Number (ASN) and BYOIP CIDR association.
1571
+ #
1572
+ # @!attribute [rw] asn
1573
+ # The association's ASN.
1574
+ # @return [String]
1575
+ #
1576
+ # @!attribute [rw] cidr
1577
+ # The association's CIDR.
1578
+ # @return [String]
1579
+ #
1580
+ # @!attribute [rw] status_message
1581
+ # The association's status message.
1582
+ # @return [String]
1583
+ #
1584
+ # @!attribute [rw] state
1585
+ # The association's state.
1586
+ # @return [String]
1587
+ #
1588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AsnAssociation AWS API Documentation
1589
+ #
1590
+ class AsnAssociation < Struct.new(
1591
+ :asn,
1592
+ :cidr,
1593
+ :status_message,
1594
+ :state)
1595
+ SENSITIVE = []
1596
+ include Aws::Structure
1597
+ end
1598
+
1599
+ # Provides authorization for Amazon to bring an Autonomous System Number
1600
+ # (ASN) to a specific Amazon Web Services account using bring your own
1601
+ # ASN (BYOASN). For details on the format of the message and signature,
1602
+ # see [Tutorial: Bring your ASN to IPAM][1] in the *Amazon VPC IPAM
1603
+ # guide*.
1604
+ #
1605
+ #
1606
+ #
1607
+ # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-byoasn.html
1608
+ #
1609
+ # @!attribute [rw] message
1610
+ # The authorization context's message.
1611
+ # @return [String]
1612
+ #
1613
+ # @!attribute [rw] signature
1614
+ # The authorization context's signature.
1615
+ # @return [String]
1616
+ #
1617
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AsnAuthorizationContext AWS API Documentation
1618
+ #
1619
+ class AsnAuthorizationContext < Struct.new(
1620
+ :message,
1621
+ :signature)
1622
+ SENSITIVE = []
1623
+ include Aws::Structure
1624
+ end
1625
+
1558
1626
  # @!attribute [rw] ipv_6_address_count
1559
1627
  # The number of additional IPv6 addresses to assign to the network
1560
1628
  # interface. The specified number of IPv6 addresses are assigned in
@@ -2027,6 +2095,43 @@ module Aws::EC2
2027
2095
  include Aws::Structure
2028
2096
  end
2029
2097
 
2098
+ # @!attribute [rw] dry_run
2099
+ # Checks whether you have the required permissions for the action,
2100
+ # without actually making the request, and provides an error response.
2101
+ # If you have the required permissions, the error response is
2102
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
2103
+ # @return [Boolean]
2104
+ #
2105
+ # @!attribute [rw] asn
2106
+ # A public 2-byte or 4-byte ASN.
2107
+ # @return [String]
2108
+ #
2109
+ # @!attribute [rw] cidr
2110
+ # The BYOIP CIDR you want to associate with an ASN.
2111
+ # @return [String]
2112
+ #
2113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateIpamByoasnRequest AWS API Documentation
2114
+ #
2115
+ class AssociateIpamByoasnRequest < Struct.new(
2116
+ :dry_run,
2117
+ :asn,
2118
+ :cidr)
2119
+ SENSITIVE = []
2120
+ include Aws::Structure
2121
+ end
2122
+
2123
+ # @!attribute [rw] asn_association
2124
+ # The ASN and BYOIP CIDR association.
2125
+ # @return [Types::AsnAssociation]
2126
+ #
2127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateIpamByoasnResult AWS API Documentation
2128
+ #
2129
+ class AssociateIpamByoasnResult < Struct.new(
2130
+ :asn_association)
2131
+ SENSITIVE = []
2132
+ include Aws::Structure
2133
+ end
2134
+
2030
2135
  # @!attribute [rw] dry_run
2031
2136
  # A check for whether you have the required permissions for the action
2032
2137
  # without actually making the request and provides an error response.
@@ -2176,19 +2281,28 @@ module Aws::EC2
2176
2281
  end
2177
2282
 
2178
2283
  # @!attribute [rw] ipv_6_cidr_block
2179
- # The IPv6 CIDR block for your subnet. The subnet must have a /64
2180
- # prefix length.
2284
+ # The IPv6 CIDR block for your subnet.
2181
2285
  # @return [String]
2182
2286
  #
2183
2287
  # @!attribute [rw] subnet_id
2184
2288
  # The ID of your subnet.
2185
2289
  # @return [String]
2186
2290
  #
2291
+ # @!attribute [rw] ipv_6_ipam_pool_id
2292
+ # An IPv6 IPAM pool ID.
2293
+ # @return [String]
2294
+ #
2295
+ # @!attribute [rw] ipv_6_netmask_length
2296
+ # An IPv6 netmask length.
2297
+ # @return [Integer]
2298
+ #
2187
2299
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateSubnetCidrBlockRequest AWS API Documentation
2188
2300
  #
2189
2301
  class AssociateSubnetCidrBlockRequest < Struct.new(
2190
2302
  :ipv_6_cidr_block,
2191
- :subnet_id)
2303
+ :subnet_id,
2304
+ :ipv_6_ipam_pool_id,
2305
+ :ipv_6_netmask_length)
2192
2306
  SENSITIVE = []
2193
2307
  include Aws::Structure
2194
2308
  end
@@ -2406,7 +2520,7 @@ module Aws::EC2
2406
2520
 
2407
2521
  # @!attribute [rw] amazon_provided_ipv_6_cidr_block
2408
2522
  # Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
2409
- # for the VPC. You cannot specify the range of IPv6 addresses, or the
2523
+ # for the VPC. You cannot specify the range of IPv6 addresses or the
2410
2524
  # size of the CIDR block.
2411
2525
  # @return [Boolean]
2412
2526
  #
@@ -3646,6 +3760,35 @@ module Aws::EC2
3646
3760
  include Aws::Structure
3647
3761
  end
3648
3762
 
3763
+ # The Autonomous System Number (ASN) and BYOIP CIDR association.
3764
+ #
3765
+ # @!attribute [rw] asn
3766
+ # A public 2-byte or 4-byte ASN.
3767
+ # @return [String]
3768
+ #
3769
+ # @!attribute [rw] ipam_id
3770
+ # An IPAM ID.
3771
+ # @return [String]
3772
+ #
3773
+ # @!attribute [rw] status_message
3774
+ # The status message.
3775
+ # @return [String]
3776
+ #
3777
+ # @!attribute [rw] state
3778
+ # The provisioning state of the BYOASN.
3779
+ # @return [String]
3780
+ #
3781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Byoasn AWS API Documentation
3782
+ #
3783
+ class Byoasn < Struct.new(
3784
+ :asn,
3785
+ :ipam_id,
3786
+ :status_message,
3787
+ :state)
3788
+ SENSITIVE = []
3789
+ include Aws::Structure
3790
+ end
3791
+
3649
3792
  # Information about an address range that is provisioned for use with
3650
3793
  # your Amazon Web Services resources through bring your own IP addresses
3651
3794
  # (BYOIP).
@@ -3658,6 +3801,10 @@ module Aws::EC2
3658
3801
  # The description of the address range.
3659
3802
  # @return [String]
3660
3803
  #
3804
+ # @!attribute [rw] asn_associations
3805
+ # The BYOIP CIDR associations with ASNs.
3806
+ # @return [Array<Types::AsnAssociation>]
3807
+ #
3661
3808
  # @!attribute [rw] status_message
3662
3809
  # Upon success, contains the ID of the address pool. Otherwise,
3663
3810
  # contains an error message.
@@ -3672,6 +3819,7 @@ module Aws::EC2
3672
3819
  class ByoipCidr < Struct.new(
3673
3820
  :cidr,
3674
3821
  :description,
3822
+ :asn_associations,
3675
3823
  :status_message,
3676
3824
  :state)
3677
3825
  SENSITIVE = []
@@ -5885,6 +6033,156 @@ module Aws::EC2
5885
6033
  include Aws::Structure
5886
6034
  end
5887
6035
 
6036
+ # A security group connection tracking configuration that enables you to
6037
+ # set the idle timeout for connection tracking on an Elastic network
6038
+ # interface. For more information, see [Connection tracking timeouts][1]
6039
+ # in the *Amazon Elastic Compute Cloud User Guide*.
6040
+ #
6041
+ #
6042
+ #
6043
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
6044
+ #
6045
+ # @!attribute [rw] tcp_established_timeout
6046
+ # Timeout (in seconds) for idle TCP connections in an established
6047
+ # state. Min: 60 seconds. Max: 432000 seconds (5 days). Default:
6048
+ # 432000 seconds. Recommended: Less than 432000 seconds.
6049
+ # @return [Integer]
6050
+ #
6051
+ # @!attribute [rw] udp_stream_timeout
6052
+ # Timeout (in seconds) for idle UDP flows classified as streams which
6053
+ # have seen more than one request-response transaction. Min: 60
6054
+ # seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.
6055
+ # @return [Integer]
6056
+ #
6057
+ # @!attribute [rw] udp_timeout
6058
+ # Timeout (in seconds) for idle UDP flows that have seen traffic only
6059
+ # in a single direction or a single request-response transaction. Min:
6060
+ # 30 seconds. Max: 60 seconds. Default: 30 seconds.
6061
+ # @return [Integer]
6062
+ #
6063
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConnectionTrackingConfiguration AWS API Documentation
6064
+ #
6065
+ class ConnectionTrackingConfiguration < Struct.new(
6066
+ :tcp_established_timeout,
6067
+ :udp_stream_timeout,
6068
+ :udp_timeout)
6069
+ SENSITIVE = []
6070
+ include Aws::Structure
6071
+ end
6072
+
6073
+ # A security group connection tracking specification that enables you to
6074
+ # set the idle timeout for connection tracking on an Elastic network
6075
+ # interface. For more information, see [Connection tracking timeouts][1]
6076
+ # in the *Amazon Elastic Compute Cloud User Guide*.
6077
+ #
6078
+ #
6079
+ #
6080
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
6081
+ #
6082
+ # @!attribute [rw] tcp_established_timeout
6083
+ # Timeout (in seconds) for idle TCP connections in an established
6084
+ # state. Min: 60 seconds. Max: 432000 seconds (5 days). Default:
6085
+ # 432000 seconds. Recommended: Less than 432000 seconds.
6086
+ # @return [Integer]
6087
+ #
6088
+ # @!attribute [rw] udp_timeout
6089
+ # Timeout (in seconds) for idle UDP flows that have seen traffic only
6090
+ # in a single direction or a single request-response transaction. Min:
6091
+ # 30 seconds. Max: 60 seconds. Default: 30 seconds.
6092
+ # @return [Integer]
6093
+ #
6094
+ # @!attribute [rw] udp_stream_timeout
6095
+ # Timeout (in seconds) for idle UDP flows classified as streams which
6096
+ # have seen more than one request-response transaction. Min: 60
6097
+ # seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.
6098
+ # @return [Integer]
6099
+ #
6100
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConnectionTrackingSpecification AWS API Documentation
6101
+ #
6102
+ class ConnectionTrackingSpecification < Struct.new(
6103
+ :tcp_established_timeout,
6104
+ :udp_timeout,
6105
+ :udp_stream_timeout)
6106
+ SENSITIVE = []
6107
+ include Aws::Structure
6108
+ end
6109
+
6110
+ # A security group connection tracking specification request that
6111
+ # enables you to set the idle timeout for connection tracking on an
6112
+ # Elastic network interface. For more information, see [Connection
6113
+ # tracking timeouts][1] in the *Amazon Elastic Compute Cloud User
6114
+ # Guide*.
6115
+ #
6116
+ #
6117
+ #
6118
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
6119
+ #
6120
+ # @!attribute [rw] tcp_established_timeout
6121
+ # Timeout (in seconds) for idle TCP connections in an established
6122
+ # state. Min: 60 seconds. Max: 432000 seconds (5 days). Default:
6123
+ # 432000 seconds. Recommended: Less than 432000 seconds.
6124
+ # @return [Integer]
6125
+ #
6126
+ # @!attribute [rw] udp_stream_timeout
6127
+ # Timeout (in seconds) for idle UDP flows classified as streams which
6128
+ # have seen more than one request-response transaction. Min: 60
6129
+ # seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.
6130
+ # @return [Integer]
6131
+ #
6132
+ # @!attribute [rw] udp_timeout
6133
+ # Timeout (in seconds) for idle UDP flows that have seen traffic only
6134
+ # in a single direction or a single request-response transaction. Min:
6135
+ # 30 seconds. Max: 60 seconds. Default: 30 seconds.
6136
+ # @return [Integer]
6137
+ #
6138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConnectionTrackingSpecificationRequest AWS API Documentation
6139
+ #
6140
+ class ConnectionTrackingSpecificationRequest < Struct.new(
6141
+ :tcp_established_timeout,
6142
+ :udp_stream_timeout,
6143
+ :udp_timeout)
6144
+ SENSITIVE = []
6145
+ include Aws::Structure
6146
+ end
6147
+
6148
+ # A security group connection tracking specification response that
6149
+ # enables you to set the idle timeout for connection tracking on an
6150
+ # Elastic network interface. For more information, see [Connection
6151
+ # tracking timeouts][1] in the *Amazon Elastic Compute Cloud User
6152
+ # Guide*.
6153
+ #
6154
+ #
6155
+ #
6156
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
6157
+ #
6158
+ # @!attribute [rw] tcp_established_timeout
6159
+ # Timeout (in seconds) for idle TCP connections in an established
6160
+ # state. Min: 60 seconds. Max: 432000 seconds (5 days). Default:
6161
+ # 432000 seconds. Recommended: Less than 432000 seconds.
6162
+ # @return [Integer]
6163
+ #
6164
+ # @!attribute [rw] udp_stream_timeout
6165
+ # Timeout (in seconds) for idle UDP flows classified as streams which
6166
+ # have seen more than one request-response transaction. Min: 60
6167
+ # seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.
6168
+ # @return [Integer]
6169
+ #
6170
+ # @!attribute [rw] udp_timeout
6171
+ # Timeout (in seconds) for idle UDP flows that have seen traffic only
6172
+ # in a single direction or a single request-response transaction. Min:
6173
+ # 30 seconds. Max: 60 seconds. Default: 30 seconds.
6174
+ # @return [Integer]
6175
+ #
6176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConnectionTrackingSpecificationResponse AWS API Documentation
6177
+ #
6178
+ class ConnectionTrackingSpecificationResponse < Struct.new(
6179
+ :tcp_established_timeout,
6180
+ :udp_stream_timeout,
6181
+ :udp_timeout)
6182
+ SENSITIVE = []
6183
+ include Aws::Structure
6184
+ end
6185
+
5888
6186
  # Describes a conversion task.
5889
6187
  #
5890
6188
  # @!attribute [rw] conversion_task_id
@@ -8263,6 +8561,10 @@ module Aws::EC2
8263
8561
  # [2]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
8264
8562
  # @return [String]
8265
8563
  #
8564
+ # @!attribute [rw] source_resource
8565
+ # The resource used to provision CIDRs to a resource planning pool.
8566
+ # @return [Types::IpamPoolSourceResourceRequest]
8567
+ #
8266
8568
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPoolRequest AWS API Documentation
8267
8569
  #
8268
8570
  class CreateIpamPoolRequest < Struct.new(
@@ -8281,7 +8583,8 @@ module Aws::EC2
8281
8583
  :tag_specifications,
8282
8584
  :client_token,
8283
8585
  :aws_service,
8284
- :public_ip_source)
8586
+ :public_ip_source,
8587
+ :source_resource)
8285
8588
  SENSITIVE = []
8286
8589
  include Aws::Structure
8287
8590
  end
@@ -8344,6 +8647,17 @@ module Aws::EC2
8344
8647
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
8345
8648
  # @return [String]
8346
8649
  #
8650
+ # @!attribute [rw] tier
8651
+ # IPAM is offered in a Free Tier and an Advanced Tier. For more
8652
+ # information about the features available in each tier and the costs
8653
+ # associated with the tiers, see [Amazon VPC pricing &gt; IPAM
8654
+ # tab][1].
8655
+ #
8656
+ #
8657
+ #
8658
+ # [1]: http://aws.amazon.com/vpc/pricing/
8659
+ # @return [String]
8660
+ #
8347
8661
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamRequest AWS API Documentation
8348
8662
  #
8349
8663
  class CreateIpamRequest < Struct.new(
@@ -8351,7 +8665,8 @@ module Aws::EC2
8351
8665
  :description,
8352
8666
  :operating_regions,
8353
8667
  :tag_specifications,
8354
- :client_token)
8668
+ :client_token,
8669
+ :tier)
8355
8670
  SENSITIVE = []
8356
8671
  include Aws::Structure
8357
8672
  end
@@ -9535,6 +9850,10 @@ module Aws::EC2
9535
9850
  # ENI becomes the primary IPv6 address.
9536
9851
  # @return [Boolean]
9537
9852
  #
9853
+ # @!attribute [rw] connection_tracking_specification
9854
+ # A connection tracking specification for the network interface.
9855
+ # @return [Types::ConnectionTrackingSpecificationRequest]
9856
+ #
9538
9857
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInterfaceRequest AWS API Documentation
9539
9858
  #
9540
9859
  class CreateNetworkInterfaceRequest < Struct.new(
@@ -9554,7 +9873,8 @@ module Aws::EC2
9554
9873
  :subnet_id,
9555
9874
  :tag_specifications,
9556
9875
  :client_token,
9557
- :enable_primary_ipv_6)
9876
+ :enable_primary_ipv_6,
9877
+ :connection_tracking_specification)
9558
9878
  SENSITIVE = []
9559
9879
  include Aws::Structure
9560
9880
  end
@@ -10400,10 +10720,8 @@ module Aws::EC2
10400
10720
  # @return [String]
10401
10721
  #
10402
10722
  # @!attribute [rw] ipv_6_cidr_block
10403
- # The IPv6 network range for the subnet, in CIDR notation. The subnet
10404
- # size must use a /64 prefix length.
10405
- #
10406
- # This parameter is required for an IPv6 only subnet.
10723
+ # The IPv6 network range for the subnet, in CIDR notation. This
10724
+ # parameter is required for an IPv6 only subnet.
10407
10725
  # @return [String]
10408
10726
  #
10409
10727
  # @!attribute [rw] outpost_arn
@@ -10427,6 +10745,22 @@ module Aws::EC2
10427
10745
  # Indicates whether to create an IPv6 only subnet.
10428
10746
  # @return [Boolean]
10429
10747
  #
10748
+ # @!attribute [rw] ipv_4_ipam_pool_id
10749
+ # An IPv4 IPAM pool ID for the subnet.
10750
+ # @return [String]
10751
+ #
10752
+ # @!attribute [rw] ipv_4_netmask_length
10753
+ # An IPv4 netmask length for the subnet.
10754
+ # @return [Integer]
10755
+ #
10756
+ # @!attribute [rw] ipv_6_ipam_pool_id
10757
+ # An IPv6 IPAM pool ID for the subnet.
10758
+ # @return [String]
10759
+ #
10760
+ # @!attribute [rw] ipv_6_netmask_length
10761
+ # An IPv6 netmask length for the subnet.
10762
+ # @return [Integer]
10763
+ #
10430
10764
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetRequest AWS API Documentation
10431
10765
  #
10432
10766
  class CreateSubnetRequest < Struct.new(
@@ -10438,7 +10772,11 @@ module Aws::EC2
10438
10772
  :outpost_arn,
10439
10773
  :vpc_id,
10440
10774
  :dry_run,
10441
- :ipv_6_native)
10775
+ :ipv_6_native,
10776
+ :ipv_4_ipam_pool_id,
10777
+ :ipv_4_netmask_length,
10778
+ :ipv_6_ipam_pool_id,
10779
+ :ipv_6_netmask_length)
10442
10780
  SENSITIVE = []
10443
10781
  include Aws::Structure
10444
10782
  end
@@ -13455,11 +13793,22 @@ module Aws::EC2
13455
13793
  # The ID of the pool to delete.
13456
13794
  # @return [String]
13457
13795
  #
13796
+ # @!attribute [rw] cascade
13797
+ # Enables you to quickly delete an IPAM pool and all resources within
13798
+ # that pool, including provisioned CIDRs, allocations, and other
13799
+ # pools.
13800
+ #
13801
+ # You can only use this option to delete pools in the private scope or
13802
+ # pools in the public scope with a source resource. A source resource
13803
+ # is a resource used to provision CIDRs to a resource planning pool.
13804
+ # @return [Boolean]
13805
+ #
13458
13806
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPoolRequest AWS API Documentation
13459
13807
  #
13460
13808
  class DeleteIpamPoolRequest < Struct.new(
13461
13809
  :dry_run,
13462
- :ipam_pool_id)
13810
+ :ipam_pool_id,
13811
+ :cascade)
13463
13812
  SENSITIVE = []
13464
13813
  include Aws::Structure
13465
13814
  end
@@ -15506,6 +15855,43 @@ module Aws::EC2
15506
15855
  include Aws::Structure
15507
15856
  end
15508
15857
 
15858
+ # @!attribute [rw] dry_run
15859
+ # Checks whether you have the required permissions for the action,
15860
+ # without actually making the request, and provides an error response.
15861
+ # If you have the required permissions, the error response is
15862
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
15863
+ # @return [Boolean]
15864
+ #
15865
+ # @!attribute [rw] ipam_id
15866
+ # The IPAM ID.
15867
+ # @return [String]
15868
+ #
15869
+ # @!attribute [rw] asn
15870
+ # An ASN.
15871
+ # @return [String]
15872
+ #
15873
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeprovisionIpamByoasnRequest AWS API Documentation
15874
+ #
15875
+ class DeprovisionIpamByoasnRequest < Struct.new(
15876
+ :dry_run,
15877
+ :ipam_id,
15878
+ :asn)
15879
+ SENSITIVE = []
15880
+ include Aws::Structure
15881
+ end
15882
+
15883
+ # @!attribute [rw] byoasn
15884
+ # An ASN and BYOIP CIDR association.
15885
+ # @return [Types::Byoasn]
15886
+ #
15887
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeprovisionIpamByoasnResult AWS API Documentation
15888
+ #
15889
+ class DeprovisionIpamByoasnResult < Struct.new(
15890
+ :byoasn)
15891
+ SENSITIVE = []
15892
+ include Aws::Structure
15893
+ end
15894
+
15509
15895
  # @!attribute [rw] dry_run
15510
15896
  # A check for whether you have the required permissions for the action
15511
15897
  # without actually making the request and provides an error response.
@@ -20395,6 +20781,51 @@ module Aws::EC2
20395
20781
  include Aws::Structure
20396
20782
  end
20397
20783
 
20784
+ # @!attribute [rw] dry_run
20785
+ # Checks whether you have the required permissions for the action,
20786
+ # without actually making the request, and provides an error response.
20787
+ # If you have the required permissions, the error response is
20788
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
20789
+ # @return [Boolean]
20790
+ #
20791
+ # @!attribute [rw] max_results
20792
+ # The maximum number of results to return with a single call. To
20793
+ # retrieve the remaining results, make another call with the returned
20794
+ # `nextToken` value.
20795
+ # @return [Integer]
20796
+ #
20797
+ # @!attribute [rw] next_token
20798
+ # The token for the next page of results.
20799
+ # @return [String]
20800
+ #
20801
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamByoasnRequest AWS API Documentation
20802
+ #
20803
+ class DescribeIpamByoasnRequest < Struct.new(
20804
+ :dry_run,
20805
+ :max_results,
20806
+ :next_token)
20807
+ SENSITIVE = []
20808
+ include Aws::Structure
20809
+ end
20810
+
20811
+ # @!attribute [rw] byoasns
20812
+ # ASN and BYOIP CIDR associations.
20813
+ # @return [Array<Types::Byoasn>]
20814
+ #
20815
+ # @!attribute [rw] next_token
20816
+ # The token to use to retrieve the next page of results. This value is
20817
+ # `null` when there are no more results to return.
20818
+ # @return [String]
20819
+ #
20820
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamByoasnResult AWS API Documentation
20821
+ #
20822
+ class DescribeIpamByoasnResult < Struct.new(
20823
+ :byoasns,
20824
+ :next_token)
20825
+ SENSITIVE = []
20826
+ include Aws::Structure
20827
+ end
20828
+
20398
20829
  # @!attribute [rw] dry_run
20399
20830
  # A check for whether you have the required permissions for the action
20400
20831
  # without actually making the request and provides an error response.
@@ -28724,6 +29155,43 @@ module Aws::EC2
28724
29155
  include Aws::Structure
28725
29156
  end
28726
29157
 
29158
+ # @!attribute [rw] dry_run
29159
+ # Checks whether you have the required permissions for the action,
29160
+ # without actually making the request, and provides an error response.
29161
+ # If you have the required permissions, the error response is
29162
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
29163
+ # @return [Boolean]
29164
+ #
29165
+ # @!attribute [rw] asn
29166
+ # A public 2-byte or 4-byte ASN.
29167
+ # @return [String]
29168
+ #
29169
+ # @!attribute [rw] cidr
29170
+ # A BYOIP CIDR.
29171
+ # @return [String]
29172
+ #
29173
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateIpamByoasnRequest AWS API Documentation
29174
+ #
29175
+ class DisassociateIpamByoasnRequest < Struct.new(
29176
+ :dry_run,
29177
+ :asn,
29178
+ :cidr)
29179
+ SENSITIVE = []
29180
+ include Aws::Structure
29181
+ end
29182
+
29183
+ # @!attribute [rw] asn_association
29184
+ # An ASN and BYOIP CIDR association.
29185
+ # @return [Types::AsnAssociation]
29186
+ #
29187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateIpamByoasnResult AWS API Documentation
29188
+ #
29189
+ class DisassociateIpamByoasnResult < Struct.new(
29190
+ :asn_association)
29191
+ SENSITIVE = []
29192
+ include Aws::Structure
29193
+ end
29194
+
28727
29195
  # @!attribute [rw] dry_run
28728
29196
  # A check for whether you have the required permissions for the action
28729
29197
  # without actually making the request and provides an error response.
@@ -33994,6 +34462,70 @@ module Aws::EC2
33994
34462
  include Aws::Structure
33995
34463
  end
33996
34464
 
34465
+ # @!attribute [rw] dry_run
34466
+ # A check for whether you have the required permissions for the action
34467
+ # without actually making the request and provides an error response.
34468
+ # If you have the required permissions, the error response is
34469
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
34470
+ # @return [Boolean]
34471
+ #
34472
+ # @!attribute [rw] ipam_resource_discovery_id
34473
+ # An IPAM resource discovery ID.
34474
+ # @return [String]
34475
+ #
34476
+ # @!attribute [rw] address_region
34477
+ # The Amazon Web Services Region for the IP address.
34478
+ # @return [String]
34479
+ #
34480
+ # @!attribute [rw] filters
34481
+ # Filters.
34482
+ # @return [Array<Types::Filter>]
34483
+ #
34484
+ # @!attribute [rw] next_token
34485
+ # The token for the next page of results.
34486
+ # @return [String]
34487
+ #
34488
+ # @!attribute [rw] max_results
34489
+ # The maximum number of IPAM discovered public addresses to return in
34490
+ # one page of results.
34491
+ # @return [Integer]
34492
+ #
34493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamDiscoveredPublicAddressesRequest AWS API Documentation
34494
+ #
34495
+ class GetIpamDiscoveredPublicAddressesRequest < Struct.new(
34496
+ :dry_run,
34497
+ :ipam_resource_discovery_id,
34498
+ :address_region,
34499
+ :filters,
34500
+ :next_token,
34501
+ :max_results)
34502
+ SENSITIVE = []
34503
+ include Aws::Structure
34504
+ end
34505
+
34506
+ # @!attribute [rw] ipam_discovered_public_addresses
34507
+ # IPAM discovered public addresses.
34508
+ # @return [Array<Types::IpamDiscoveredPublicAddress>]
34509
+ #
34510
+ # @!attribute [rw] oldest_sample_time
34511
+ # The oldest successful resource discovery time.
34512
+ # @return [Time]
34513
+ #
34514
+ # @!attribute [rw] next_token
34515
+ # The token to use to retrieve the next page of results. This value is
34516
+ # `null` when there are no more results to return.
34517
+ # @return [String]
34518
+ #
34519
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamDiscoveredPublicAddressesResult AWS API Documentation
34520
+ #
34521
+ class GetIpamDiscoveredPublicAddressesResult < Struct.new(
34522
+ :ipam_discovered_public_addresses,
34523
+ :oldest_sample_time,
34524
+ :next_token)
34525
+ SENSITIVE = []
34526
+ include Aws::Structure
34527
+ end
34528
+
33997
34529
  # @!attribute [rw] dry_run
33998
34530
  # A check for whether you have the required permissions for the action
33999
34531
  # without actually making the request and provides an error response.
@@ -37740,7 +38272,8 @@ module Aws::EC2
37740
38272
  # @return [Types::Placement]
37741
38273
  #
37742
38274
  # @!attribute [rw] platform
37743
- # The value is `Windows` for Windows instances; otherwise blank.
38275
+ # The platform. This value is `windows` for Windows instances;
38276
+ # otherwise, it is empty.
37744
38277
  # @return [String]
37745
38278
  #
37746
38279
  # @!attribute [rw] private_dns_name
@@ -38981,6 +39514,17 @@ module Aws::EC2
38981
39514
  # interface.
38982
39515
  # @return [Array<Types::InstanceIpv6Prefix>]
38983
39516
  #
39517
+ # @!attribute [rw] connection_tracking_configuration
39518
+ # A security group connection tracking configuration that enables you
39519
+ # to set the timeout for connection tracking on an Elastic network
39520
+ # interface. For more information, see [Connection tracking
39521
+ # timeouts][1] in the *Amazon Elastic Compute Cloud User Guide*.
39522
+ #
39523
+ #
39524
+ #
39525
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
39526
+ # @return [Types::ConnectionTrackingSpecificationResponse]
39527
+ #
38984
39528
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterface AWS API Documentation
38985
39529
  #
38986
39530
  class InstanceNetworkInterface < Struct.new(
@@ -39001,7 +39545,8 @@ module Aws::EC2
39001
39545
  :vpc_id,
39002
39546
  :interface_type,
39003
39547
  :ipv_4_prefixes,
39004
- :ipv_6_prefixes)
39548
+ :ipv_6_prefixes,
39549
+ :connection_tracking_configuration)
39005
39550
  SENSITIVE = []
39006
39551
  include Aws::Structure
39007
39552
  end
@@ -39259,6 +39804,17 @@ module Aws::EC2
39259
39804
  # attached to the instance.
39260
39805
  # @return [Types::EnaSrdSpecificationRequest]
39261
39806
  #
39807
+ # @!attribute [rw] connection_tracking_specification
39808
+ # A security group connection tracking specification that enables you
39809
+ # to set the timeout for connection tracking on an Elastic network
39810
+ # interface. For more information, see [Connection tracking
39811
+ # timeouts][1] in the *Amazon Elastic Compute Cloud User Guide*.
39812
+ #
39813
+ #
39814
+ #
39815
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
39816
+ # @return [Types::ConnectionTrackingSpecificationRequest]
39817
+ #
39262
39818
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification AWS API Documentation
39263
39819
  #
39264
39820
  class InstanceNetworkInterfaceSpecification < Struct.new(
@@ -39282,7 +39838,8 @@ module Aws::EC2
39282
39838
  :ipv_6_prefixes,
39283
39839
  :ipv_6_prefix_count,
39284
39840
  :primary_ipv_6,
39285
- :ena_srd_specification)
39841
+ :ena_srd_specification,
39842
+ :connection_tracking_specification)
39286
39843
  SENSITIVE = []
39287
39844
  include Aws::Structure
39288
39845
  end
@@ -40985,6 +41542,21 @@ module Aws::EC2
40985
41542
  # The IPAM's resource discovery association count.
40986
41543
  # @return [Integer]
40987
41544
  #
41545
+ # @!attribute [rw] state_message
41546
+ # The state message.
41547
+ # @return [String]
41548
+ #
41549
+ # @!attribute [rw] tier
41550
+ # IPAM is offered in a Free Tier and an Advanced Tier. For more
41551
+ # information about the features available in each tier and the costs
41552
+ # associated with the tiers, see [Amazon VPC pricing &gt; IPAM
41553
+ # tab][1].
41554
+ #
41555
+ #
41556
+ #
41557
+ # [1]: http://aws.amazon.com/vpc/pricing/
41558
+ # @return [String]
41559
+ #
40988
41560
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipam AWS API Documentation
40989
41561
  #
40990
41562
  class Ipam < Struct.new(
@@ -41001,7 +41573,9 @@ module Aws::EC2
41001
41573
  :tags,
41002
41574
  :default_resource_discovery_id,
41003
41575
  :default_resource_discovery_association_id,
41004
- :resource_discovery_association_count)
41576
+ :resource_discovery_association_count,
41577
+ :state_message,
41578
+ :tier)
41005
41579
  SENSITIVE = []
41006
41580
  include Aws::Structure
41007
41581
  end
@@ -41152,6 +41726,118 @@ module Aws::EC2
41152
41726
  include Aws::Structure
41153
41727
  end
41154
41728
 
41729
+ # A public IP Address discovered by IPAM.
41730
+ #
41731
+ # @!attribute [rw] ipam_resource_discovery_id
41732
+ # The resource discovery ID.
41733
+ # @return [String]
41734
+ #
41735
+ # @!attribute [rw] address_region
41736
+ # The Region of the resource the IP address is assigned to.
41737
+ # @return [String]
41738
+ #
41739
+ # @!attribute [rw] address
41740
+ # The IP address.
41741
+ # @return [String]
41742
+ #
41743
+ # @!attribute [rw] address_owner_id
41744
+ # The ID of the owner of the resource the IP address is assigned to.
41745
+ # @return [String]
41746
+ #
41747
+ # @!attribute [rw] address_allocation_id
41748
+ # The allocation ID of the resource the IP address is assigned to.
41749
+ # @return [String]
41750
+ #
41751
+ # @!attribute [rw] association_status
41752
+ # The association status.
41753
+ # @return [String]
41754
+ #
41755
+ # @!attribute [rw] address_type
41756
+ # The IP address type.
41757
+ # @return [String]
41758
+ #
41759
+ # @!attribute [rw] service
41760
+ # The Amazon Web Services service associated with the IP address.
41761
+ # @return [String]
41762
+ #
41763
+ # @!attribute [rw] service_resource
41764
+ # The resource ARN or ID.
41765
+ # @return [String]
41766
+ #
41767
+ # @!attribute [rw] vpc_id
41768
+ # The ID of the VPC that the resource with the assigned IP address is
41769
+ # in.
41770
+ # @return [String]
41771
+ #
41772
+ # @!attribute [rw] subnet_id
41773
+ # The ID of the subnet that the resource with the assigned IP address
41774
+ # is in.
41775
+ # @return [String]
41776
+ #
41777
+ # @!attribute [rw] public_ipv_4_pool_id
41778
+ # The ID of the public IPv4 pool that the resource with the assigned
41779
+ # IP address is from.
41780
+ # @return [String]
41781
+ #
41782
+ # @!attribute [rw] network_interface_id
41783
+ # The network interface ID of the resource with the assigned IP
41784
+ # address.
41785
+ # @return [String]
41786
+ #
41787
+ # @!attribute [rw] network_interface_description
41788
+ # The description of the network interface that IP address is assigned
41789
+ # to.
41790
+ # @return [String]
41791
+ #
41792
+ # @!attribute [rw] instance_id
41793
+ # The instance ID of the instance the assigned IP address is assigned
41794
+ # to.
41795
+ # @return [String]
41796
+ #
41797
+ # @!attribute [rw] tags
41798
+ # Tags associated with the IP address.
41799
+ # @return [Types::IpamPublicAddressTags]
41800
+ #
41801
+ # @!attribute [rw] network_border_group
41802
+ # The network border group that the resource that the IP address is
41803
+ # assigned to is in.
41804
+ # @return [String]
41805
+ #
41806
+ # @!attribute [rw] security_groups
41807
+ # Security groups associated with the resource that the IP address is
41808
+ # assigned to.
41809
+ # @return [Array<Types::IpamPublicAddressSecurityGroup>]
41810
+ #
41811
+ # @!attribute [rw] sample_time
41812
+ # The last successful resource discovery time.
41813
+ # @return [Time]
41814
+ #
41815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamDiscoveredPublicAddress AWS API Documentation
41816
+ #
41817
+ class IpamDiscoveredPublicAddress < Struct.new(
41818
+ :ipam_resource_discovery_id,
41819
+ :address_region,
41820
+ :address,
41821
+ :address_owner_id,
41822
+ :address_allocation_id,
41823
+ :association_status,
41824
+ :address_type,
41825
+ :service,
41826
+ :service_resource,
41827
+ :vpc_id,
41828
+ :subnet_id,
41829
+ :public_ipv_4_pool_id,
41830
+ :network_interface_id,
41831
+ :network_interface_description,
41832
+ :instance_id,
41833
+ :tags,
41834
+ :network_border_group,
41835
+ :security_groups,
41836
+ :sample_time)
41837
+ SENSITIVE = []
41838
+ include Aws::Structure
41839
+ end
41840
+
41155
41841
  # An IPAM discovered resource CIDR. A discovered resource is a resource
41156
41842
  # CIDR monitored under a resource discovery. The following resources can
41157
41843
  # be discovered: VPCs, Public IPv4 pools, VPC subnets, and Elastic IP
@@ -41368,7 +42054,7 @@ module Aws::EC2
41368
42054
  # @return [String]
41369
42055
  #
41370
42056
  # @!attribute [rw] state_message
41371
- # A message related to the failed creation of an IPAM pool.
42057
+ # The state message.
41372
42058
  # @return [String]
41373
42059
  #
41374
42060
  # @!attribute [rw] description
@@ -41459,6 +42145,10 @@ module Aws::EC2
41459
42145
  # [2]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
41460
42146
  # @return [String]
41461
42147
  #
42148
+ # @!attribute [rw] source_resource
42149
+ # The resource used to provision CIDRs to a resource planning pool.
42150
+ # @return [Types::IpamPoolSourceResource]
42151
+ #
41462
42152
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPool AWS API Documentation
41463
42153
  #
41464
42154
  class IpamPool < Struct.new(
@@ -41484,7 +42174,8 @@ module Aws::EC2
41484
42174
  :allocation_resource_tags,
41485
42175
  :tags,
41486
42176
  :aws_service,
41487
- :public_ip_source)
42177
+ :public_ip_source,
42178
+ :source_resource)
41488
42179
  SENSITIVE = []
41489
42180
  include Aws::Structure
41490
42181
  end
@@ -41598,6 +42289,116 @@ module Aws::EC2
41598
42289
  include Aws::Structure
41599
42290
  end
41600
42291
 
42292
+ # The resource used to provision CIDRs to a resource planning pool.
42293
+ #
42294
+ # @!attribute [rw] resource_id
42295
+ # The source resource ID.
42296
+ # @return [String]
42297
+ #
42298
+ # @!attribute [rw] resource_type
42299
+ # The source resource type.
42300
+ # @return [String]
42301
+ #
42302
+ # @!attribute [rw] resource_region
42303
+ # The source resource Region.
42304
+ # @return [String]
42305
+ #
42306
+ # @!attribute [rw] resource_owner
42307
+ # The source resource owner.
42308
+ # @return [String]
42309
+ #
42310
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPoolSourceResource AWS API Documentation
42311
+ #
42312
+ class IpamPoolSourceResource < Struct.new(
42313
+ :resource_id,
42314
+ :resource_type,
42315
+ :resource_region,
42316
+ :resource_owner)
42317
+ SENSITIVE = []
42318
+ include Aws::Structure
42319
+ end
42320
+
42321
+ # The resource used to provision CIDRs to a resource planning pool.
42322
+ #
42323
+ # @!attribute [rw] resource_id
42324
+ # The source resource ID.
42325
+ # @return [String]
42326
+ #
42327
+ # @!attribute [rw] resource_type
42328
+ # The source resource type.
42329
+ # @return [String]
42330
+ #
42331
+ # @!attribute [rw] resource_region
42332
+ # The source resource Region.
42333
+ # @return [String]
42334
+ #
42335
+ # @!attribute [rw] resource_owner
42336
+ # The source resource owner.
42337
+ # @return [String]
42338
+ #
42339
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPoolSourceResourceRequest AWS API Documentation
42340
+ #
42341
+ class IpamPoolSourceResourceRequest < Struct.new(
42342
+ :resource_id,
42343
+ :resource_type,
42344
+ :resource_region,
42345
+ :resource_owner)
42346
+ SENSITIVE = []
42347
+ include Aws::Structure
42348
+ end
42349
+
42350
+ # The security group that the resource with the public IP address is in.
42351
+ #
42352
+ # @!attribute [rw] group_name
42353
+ # The security group's name.
42354
+ # @return [String]
42355
+ #
42356
+ # @!attribute [rw] group_id
42357
+ # The security group's ID.
42358
+ # @return [String]
42359
+ #
42360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPublicAddressSecurityGroup AWS API Documentation
42361
+ #
42362
+ class IpamPublicAddressSecurityGroup < Struct.new(
42363
+ :group_name,
42364
+ :group_id)
42365
+ SENSITIVE = []
42366
+ include Aws::Structure
42367
+ end
42368
+
42369
+ # A tag for a public IP address discovered by IPAM.
42370
+ #
42371
+ # @!attribute [rw] key
42372
+ # The tag's key.
42373
+ # @return [String]
42374
+ #
42375
+ # @!attribute [rw] value
42376
+ # The tag's value.
42377
+ # @return [String]
42378
+ #
42379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPublicAddressTag AWS API Documentation
42380
+ #
42381
+ class IpamPublicAddressTag < Struct.new(
42382
+ :key,
42383
+ :value)
42384
+ SENSITIVE = []
42385
+ include Aws::Structure
42386
+ end
42387
+
42388
+ # Tags for a public IP address discovered by IPAM.
42389
+ #
42390
+ # @!attribute [rw] eip_tags
42391
+ # Tags for an Elastic IP address.
42392
+ # @return [Array<Types::IpamPublicAddressTag>]
42393
+ #
42394
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPublicAddressTags AWS API Documentation
42395
+ #
42396
+ class IpamPublicAddressTags < Struct.new(
42397
+ :eip_tags)
42398
+ SENSITIVE = []
42399
+ include Aws::Structure
42400
+ end
42401
+
41601
42402
  # The CIDR for an IPAM resource.
41602
42403
  #
41603
42404
  # @!attribute [rw] ipam_id
@@ -43469,6 +44270,17 @@ module Aws::EC2
43469
44270
  # launch template.
43470
44271
  # @return [Types::LaunchTemplateEnaSrdSpecification]
43471
44272
  #
44273
+ # @!attribute [rw] connection_tracking_specification
44274
+ # A security group connection tracking specification that enables you
44275
+ # to set the timeout for connection tracking on an Elastic network
44276
+ # interface. For more information, see [Connection tracking
44277
+ # timeouts][1] in the *Amazon Elastic Compute Cloud User Guide*.
44278
+ #
44279
+ #
44280
+ #
44281
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
44282
+ # @return [Types::ConnectionTrackingSpecification]
44283
+ #
43472
44284
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecification AWS API Documentation
43473
44285
  #
43474
44286
  class LaunchTemplateInstanceNetworkInterfaceSpecification < Struct.new(
@@ -43492,7 +44304,8 @@ module Aws::EC2
43492
44304
  :ipv_6_prefixes,
43493
44305
  :ipv_6_prefix_count,
43494
44306
  :primary_ipv_6,
43495
- :ena_srd_specification)
44307
+ :ena_srd_specification,
44308
+ :connection_tracking_specification)
43496
44309
  SENSITIVE = []
43497
44310
  include Aws::Structure
43498
44311
  end
@@ -43628,6 +44441,17 @@ module Aws::EC2
43628
44441
  # Configure ENA Express settings for your launch template.
43629
44442
  # @return [Types::EnaSrdSpecificationRequest]
43630
44443
  #
44444
+ # @!attribute [rw] connection_tracking_specification
44445
+ # A security group connection tracking specification that enables you
44446
+ # to set the timeout for connection tracking on an Elastic network
44447
+ # interface. For more information, see [Connection tracking
44448
+ # timeouts][1] in the *Amazon Elastic Compute Cloud User Guide*.
44449
+ #
44450
+ #
44451
+ #
44452
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
44453
+ # @return [Types::ConnectionTrackingSpecificationRequest]
44454
+ #
43631
44455
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecificationRequest AWS API Documentation
43632
44456
  #
43633
44457
  class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest < Struct.new(
@@ -43651,7 +44475,8 @@ module Aws::EC2
43651
44475
  :ipv_6_prefixes,
43652
44476
  :ipv_6_prefix_count,
43653
44477
  :primary_ipv_6,
43654
- :ena_srd_specification)
44478
+ :ena_srd_specification,
44479
+ :connection_tracking_specification)
43655
44480
  SENSITIVE = []
43656
44481
  include Aws::Structure
43657
44482
  end
@@ -46804,6 +47629,17 @@ module Aws::EC2
46804
47629
  # The operating Regions to remove.
46805
47630
  # @return [Array<Types::RemoveIpamOperatingRegion>]
46806
47631
  #
47632
+ # @!attribute [rw] tier
47633
+ # IPAM is offered in a Free Tier and an Advanced Tier. For more
47634
+ # information about the features available in each tier and the costs
47635
+ # associated with the tiers, see [Amazon VPC pricing &gt; IPAM
47636
+ # tab][1].
47637
+ #
47638
+ #
47639
+ #
47640
+ # [1]: http://aws.amazon.com/vpc/pricing/
47641
+ # @return [String]
47642
+ #
46807
47643
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamRequest AWS API Documentation
46808
47644
  #
46809
47645
  class ModifyIpamRequest < Struct.new(
@@ -46811,7 +47647,8 @@ module Aws::EC2
46811
47647
  :ipam_id,
46812
47648
  :description,
46813
47649
  :add_operating_regions,
46814
- :remove_operating_regions)
47650
+ :remove_operating_regions,
47651
+ :tier)
46815
47652
  SENSITIVE = []
46816
47653
  include Aws::Structure
46817
47654
  end
@@ -47218,6 +48055,10 @@ module Aws::EC2
47218
48055
  # ENI becomes the primary IPv6 address.
47219
48056
  # @return [Boolean]
47220
48057
  #
48058
+ # @!attribute [rw] connection_tracking_specification
48059
+ # A connection tracking specification.
48060
+ # @return [Types::ConnectionTrackingSpecificationRequest]
48061
+ #
47221
48062
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttributeRequest AWS API Documentation
47222
48063
  #
47223
48064
  class ModifyNetworkInterfaceAttributeRequest < Struct.new(
@@ -47228,7 +48069,8 @@ module Aws::EC2
47228
48069
  :network_interface_id,
47229
48070
  :source_dest_check,
47230
48071
  :ena_srd_specification,
47231
- :enable_primary_ipv_6)
48072
+ :enable_primary_ipv_6,
48073
+ :connection_tracking_specification)
47232
48074
  SENSITIVE = []
47233
48075
  include Aws::Structure
47234
48076
  end
@@ -50531,6 +51373,17 @@ module Aws::EC2
50531
51373
  # The Availability Zone.
50532
51374
  # @return [String]
50533
51375
  #
51376
+ # @!attribute [rw] connection_tracking_configuration
51377
+ # A security group connection tracking configuration that enables you
51378
+ # to set the timeout for connection tracking on an Elastic network
51379
+ # interface. For more information, see [Connection tracking
51380
+ # timeouts][1] in the *Amazon Elastic Compute Cloud User Guide*.
51381
+ #
51382
+ #
51383
+ #
51384
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
51385
+ # @return [Types::ConnectionTrackingConfiguration]
51386
+ #
50534
51387
  # @!attribute [rw] description
50535
51388
  # A description.
50536
51389
  # @return [String]
@@ -50638,6 +51491,7 @@ module Aws::EC2
50638
51491
  :association,
50639
51492
  :attachment,
50640
51493
  :availability_zone,
51494
+ :connection_tracking_configuration,
50641
51495
  :description,
50642
51496
  :groups,
50643
51497
  :interface_type,
@@ -52476,6 +53330,48 @@ module Aws::EC2
52476
53330
  include Aws::Structure
52477
53331
  end
52478
53332
 
53333
+ # @!attribute [rw] dry_run
53334
+ # Checks whether you have the required permissions for the action,
53335
+ # without actually making the request, and provides an error response.
53336
+ # If you have the required permissions, the error response is
53337
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
53338
+ # @return [Boolean]
53339
+ #
53340
+ # @!attribute [rw] ipam_id
53341
+ # An IPAM ID.
53342
+ # @return [String]
53343
+ #
53344
+ # @!attribute [rw] asn
53345
+ # A public 2-byte or 4-byte ASN.
53346
+ # @return [String]
53347
+ #
53348
+ # @!attribute [rw] asn_authorization_context
53349
+ # An ASN authorization context.
53350
+ # @return [Types::AsnAuthorizationContext]
53351
+ #
53352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionIpamByoasnRequest AWS API Documentation
53353
+ #
53354
+ class ProvisionIpamByoasnRequest < Struct.new(
53355
+ :dry_run,
53356
+ :ipam_id,
53357
+ :asn,
53358
+ :asn_authorization_context)
53359
+ SENSITIVE = []
53360
+ include Aws::Structure
53361
+ end
53362
+
53363
+ # @!attribute [rw] byoasn
53364
+ # An ASN and BYOIP CIDR association.
53365
+ # @return [Types::Byoasn]
53366
+ #
53367
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionIpamByoasnResult AWS API Documentation
53368
+ #
53369
+ class ProvisionIpamByoasnResult < Struct.new(
53370
+ :byoasn)
53371
+ SENSITIVE = []
53372
+ include Aws::Structure
53373
+ end
53374
+
52479
53375
  # @!attribute [rw] dry_run
52480
53376
  # A check for whether you have the required permissions for the action
52481
53377
  # without actually making the request and provides an error response.
@@ -63987,11 +64883,6 @@ module Aws::EC2
63987
64883
  include Aws::Structure
63988
64884
  end
63989
64885
 
63990
- # <note markdown="1"> Currently available in **limited preview only**. If you are interested
63991
- # in using this feature, contact your account manager.
63992
- #
63993
- # </note>
63994
- #
63995
64886
  # Information about an association between a branch network interface
63996
64887
  # with a trunk network interface.
63997
64888
  #