aws-sdk-ec2 1.420.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
@@ -11753,10 +12091,16 @@ module Aws::EC2
11753
12091
  # The ID of the tenant application with the device-identity provider.
11754
12092
  # @return [String]
11755
12093
  #
12094
+ # @!attribute [rw] public_signing_key_url
12095
+ # The URL Amazon Web Services Verified Access will use to verify the
12096
+ # authenticity of the device tokens.
12097
+ # @return [String]
12098
+ #
11756
12099
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessTrustProviderDeviceOptions AWS API Documentation
11757
12100
  #
11758
12101
  class CreateVerifiedAccessTrustProviderDeviceOptions < Struct.new(
11759
- :tenant_id)
12102
+ :tenant_id,
12103
+ :public_signing_key_url)
11760
12104
  SENSITIVE = []
11761
12105
  include Aws::Structure
11762
12106
  end
@@ -13449,11 +13793,22 @@ module Aws::EC2
13449
13793
  # The ID of the pool to delete.
13450
13794
  # @return [String]
13451
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
+ #
13452
13806
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPoolRequest AWS API Documentation
13453
13807
  #
13454
13808
  class DeleteIpamPoolRequest < Struct.new(
13455
13809
  :dry_run,
13456
- :ipam_pool_id)
13810
+ :ipam_pool_id,
13811
+ :cascade)
13457
13812
  SENSITIVE = []
13458
13813
  include Aws::Structure
13459
13814
  end
@@ -15500,6 +15855,43 @@ module Aws::EC2
15500
15855
  include Aws::Structure
15501
15856
  end
15502
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
+
15503
15895
  # @!attribute [rw] dry_run
15504
15896
  # A check for whether you have the required permissions for the action
15505
15897
  # without actually making the request and provides an error response.
@@ -20389,6 +20781,51 @@ module Aws::EC2
20389
20781
  include Aws::Structure
20390
20782
  end
20391
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
+
20392
20829
  # @!attribute [rw] dry_run
20393
20830
  # A check for whether you have the required permissions for the action
20394
20831
  # without actually making the request and provides an error response.
@@ -21453,6 +21890,73 @@ module Aws::EC2
21453
21890
  include Aws::Structure
21454
21891
  end
21455
21892
 
21893
+ # @!attribute [rw] filters
21894
+ # The filters.
21895
+ #
21896
+ # * `lock-state` - The state of the snapshot lock
21897
+ # (`compliance-cooloff` \| `governance` \| `compliance` \|
21898
+ # `expired`).
21899
+ #
21900
+ # ^
21901
+ # @return [Array<Types::Filter>]
21902
+ #
21903
+ # @!attribute [rw] max_results
21904
+ # The maximum number of items to return for this request. To get the
21905
+ # next page of items, make another request with the token returned in
21906
+ # the output. For more information, see [Pagination][1].
21907
+ #
21908
+ #
21909
+ #
21910
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
21911
+ # @return [Integer]
21912
+ #
21913
+ # @!attribute [rw] next_token
21914
+ # The token returned from a previous paginated request. Pagination
21915
+ # continues from the end of the items returned by the previous
21916
+ # request.
21917
+ # @return [String]
21918
+ #
21919
+ # @!attribute [rw] snapshot_ids
21920
+ # The IDs of the snapshots for which to view the lock status.
21921
+ # @return [Array<String>]
21922
+ #
21923
+ # @!attribute [rw] dry_run
21924
+ # Checks whether you have the required permissions for the action,
21925
+ # without actually making the request, and provides an error response.
21926
+ # If you have the required permissions, the error response is
21927
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
21928
+ # @return [Boolean]
21929
+ #
21930
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLockedSnapshotsRequest AWS API Documentation
21931
+ #
21932
+ class DescribeLockedSnapshotsRequest < Struct.new(
21933
+ :filters,
21934
+ :max_results,
21935
+ :next_token,
21936
+ :snapshot_ids,
21937
+ :dry_run)
21938
+ SENSITIVE = []
21939
+ include Aws::Structure
21940
+ end
21941
+
21942
+ # @!attribute [rw] snapshots
21943
+ # Information about the snapshots.
21944
+ # @return [Array<Types::LockedSnapshotsInfo>]
21945
+ #
21946
+ # @!attribute [rw] next_token
21947
+ # The token to include in another request to get the next page of
21948
+ # items. This value is `null` when there are no more items to return.
21949
+ # @return [String]
21950
+ #
21951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLockedSnapshotsResult AWS API Documentation
21952
+ #
21953
+ class DescribeLockedSnapshotsResult < Struct.new(
21954
+ :snapshots,
21955
+ :next_token)
21956
+ SENSITIVE = []
21957
+ include Aws::Structure
21958
+ end
21959
+
21456
21960
  # @!attribute [rw] dry_run
21457
21961
  # Checks whether you have the required permissions for the action,
21458
21962
  # without actually making the request, and provides an error response.
@@ -27699,10 +28203,16 @@ module Aws::EC2
27699
28203
  # The ID of the tenant application with the device-identity provider.
27700
28204
  # @return [String]
27701
28205
  #
28206
+ # @!attribute [rw] public_signing_key_url
28207
+ # The URL Amazon Web Services Verified Access will use to verify the
28208
+ # authenticity of the device tokens.
28209
+ # @return [String]
28210
+ #
27702
28211
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeviceOptions AWS API Documentation
27703
28212
  #
27704
28213
  class DeviceOptions < Struct.new(
27705
- :tenant_id)
28214
+ :tenant_id,
28215
+ :public_signing_key_url)
27706
28216
  SENSITIVE = []
27707
28217
  include Aws::Structure
27708
28218
  end
@@ -28645,6 +29155,43 @@ module Aws::EC2
28645
29155
  include Aws::Structure
28646
29156
  end
28647
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
+
28648
29195
  # @!attribute [rw] dry_run
28649
29196
  # A check for whether you have the required permissions for the action
28650
29197
  # without actually making the request and provides an error response.
@@ -33915,6 +34462,70 @@ module Aws::EC2
33915
34462
  include Aws::Structure
33916
34463
  end
33917
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
+
33918
34529
  # @!attribute [rw] dry_run
33919
34530
  # A check for whether you have the required permissions for the action
33920
34531
  # without actually making the request and provides an error response.
@@ -37661,7 +38272,8 @@ module Aws::EC2
37661
38272
  # @return [Types::Placement]
37662
38273
  #
37663
38274
  # @!attribute [rw] platform
37664
- # The value is `Windows` for Windows instances; otherwise blank.
38275
+ # The platform. This value is `windows` for Windows instances;
38276
+ # otherwise, it is empty.
37665
38277
  # @return [String]
37666
38278
  #
37667
38279
  # @!attribute [rw] private_dns_name
@@ -38902,6 +39514,17 @@ module Aws::EC2
38902
39514
  # interface.
38903
39515
  # @return [Array<Types::InstanceIpv6Prefix>]
38904
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
+ #
38905
39528
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterface AWS API Documentation
38906
39529
  #
38907
39530
  class InstanceNetworkInterface < Struct.new(
@@ -38922,7 +39545,8 @@ module Aws::EC2
38922
39545
  :vpc_id,
38923
39546
  :interface_type,
38924
39547
  :ipv_4_prefixes,
38925
- :ipv_6_prefixes)
39548
+ :ipv_6_prefixes,
39549
+ :connection_tracking_configuration)
38926
39550
  SENSITIVE = []
38927
39551
  include Aws::Structure
38928
39552
  end
@@ -39180,6 +39804,17 @@ module Aws::EC2
39180
39804
  # attached to the instance.
39181
39805
  # @return [Types::EnaSrdSpecificationRequest]
39182
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
+ #
39183
39818
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification AWS API Documentation
39184
39819
  #
39185
39820
  class InstanceNetworkInterfaceSpecification < Struct.new(
@@ -39203,7 +39838,8 @@ module Aws::EC2
39203
39838
  :ipv_6_prefixes,
39204
39839
  :ipv_6_prefix_count,
39205
39840
  :primary_ipv_6,
39206
- :ena_srd_specification)
39841
+ :ena_srd_specification,
39842
+ :connection_tracking_specification)
39207
39843
  SENSITIVE = []
39208
39844
  include Aws::Structure
39209
39845
  end
@@ -40906,6 +41542,21 @@ module Aws::EC2
40906
41542
  # The IPAM's resource discovery association count.
40907
41543
  # @return [Integer]
40908
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
+ #
40909
41560
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipam AWS API Documentation
40910
41561
  #
40911
41562
  class Ipam < Struct.new(
@@ -40922,7 +41573,9 @@ module Aws::EC2
40922
41573
  :tags,
40923
41574
  :default_resource_discovery_id,
40924
41575
  :default_resource_discovery_association_id,
40925
- :resource_discovery_association_count)
41576
+ :resource_discovery_association_count,
41577
+ :state_message,
41578
+ :tier)
40926
41579
  SENSITIVE = []
40927
41580
  include Aws::Structure
40928
41581
  end
@@ -41073,6 +41726,118 @@ module Aws::EC2
41073
41726
  include Aws::Structure
41074
41727
  end
41075
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
+
41076
41841
  # An IPAM discovered resource CIDR. A discovered resource is a resource
41077
41842
  # CIDR monitored under a resource discovery. The following resources can
41078
41843
  # be discovered: VPCs, Public IPv4 pools, VPC subnets, and Elastic IP
@@ -41289,7 +42054,7 @@ module Aws::EC2
41289
42054
  # @return [String]
41290
42055
  #
41291
42056
  # @!attribute [rw] state_message
41292
- # A message related to the failed creation of an IPAM pool.
42057
+ # The state message.
41293
42058
  # @return [String]
41294
42059
  #
41295
42060
  # @!attribute [rw] description
@@ -41380,6 +42145,10 @@ module Aws::EC2
41380
42145
  # [2]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
41381
42146
  # @return [String]
41382
42147
  #
42148
+ # @!attribute [rw] source_resource
42149
+ # The resource used to provision CIDRs to a resource planning pool.
42150
+ # @return [Types::IpamPoolSourceResource]
42151
+ #
41383
42152
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPool AWS API Documentation
41384
42153
  #
41385
42154
  class IpamPool < Struct.new(
@@ -41405,7 +42174,8 @@ module Aws::EC2
41405
42174
  :allocation_resource_tags,
41406
42175
  :tags,
41407
42176
  :aws_service,
41408
- :public_ip_source)
42177
+ :public_ip_source,
42178
+ :source_resource)
41409
42179
  SENSITIVE = []
41410
42180
  include Aws::Structure
41411
42181
  end
@@ -41519,6 +42289,116 @@ module Aws::EC2
41519
42289
  include Aws::Structure
41520
42290
  end
41521
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
+
41522
42402
  # The CIDR for an IPAM resource.
41523
42403
  #
41524
42404
  # @!attribute [rw] ipam_id
@@ -43390,6 +44270,17 @@ module Aws::EC2
43390
44270
  # launch template.
43391
44271
  # @return [Types::LaunchTemplateEnaSrdSpecification]
43392
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
+ #
43393
44284
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecification AWS API Documentation
43394
44285
  #
43395
44286
  class LaunchTemplateInstanceNetworkInterfaceSpecification < Struct.new(
@@ -43413,7 +44304,8 @@ module Aws::EC2
43413
44304
  :ipv_6_prefixes,
43414
44305
  :ipv_6_prefix_count,
43415
44306
  :primary_ipv_6,
43416
- :ena_srd_specification)
44307
+ :ena_srd_specification,
44308
+ :connection_tracking_specification)
43417
44309
  SENSITIVE = []
43418
44310
  include Aws::Structure
43419
44311
  end
@@ -43549,6 +44441,17 @@ module Aws::EC2
43549
44441
  # Configure ENA Express settings for your launch template.
43550
44442
  # @return [Types::EnaSrdSpecificationRequest]
43551
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
+ #
43552
44455
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecificationRequest AWS API Documentation
43553
44456
  #
43554
44457
  class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest < Struct.new(
@@ -43572,7 +44475,8 @@ module Aws::EC2
43572
44475
  :ipv_6_prefixes,
43573
44476
  :ipv_6_prefix_count,
43574
44477
  :primary_ipv_6,
43575
- :ena_srd_specification)
44478
+ :ena_srd_specification,
44479
+ :connection_tracking_specification)
43576
44480
  SENSITIVE = []
43577
44481
  include Aws::Structure
43578
44482
  end
@@ -44694,6 +45598,251 @@ module Aws::EC2
44694
45598
  include Aws::Structure
44695
45599
  end
44696
45600
 
45601
+ # @!attribute [rw] snapshot_id
45602
+ # The ID of the snapshot to lock.
45603
+ # @return [String]
45604
+ #
45605
+ # @!attribute [rw] dry_run
45606
+ # Checks whether you have the required permissions for the action,
45607
+ # without actually making the request, and provides an error response.
45608
+ # If you have the required permissions, the error response is
45609
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
45610
+ # @return [Boolean]
45611
+ #
45612
+ # @!attribute [rw] lock_mode
45613
+ # The mode in which to lock the snapshot. Specify one of the
45614
+ # following:
45615
+ #
45616
+ # * `governance` - Locks the snapshot in governance mode. Snapshots
45617
+ # locked in governance mode can't be deleted until one of the
45618
+ # following conditions are met:
45619
+ #
45620
+ # * The lock duration expires.
45621
+ #
45622
+ # * The snapshot is unlocked by a user with the appropriate
45623
+ # permissions.
45624
+ #
45625
+ # Users with the appropriate IAM permissions can unlock the
45626
+ # snapshot, increase or decrease the lock duration, and change the
45627
+ # lock mode to `compliance` at any time.
45628
+ #
45629
+ # If you lock a snapshot in `governance` mode, omit <b>
45630
+ # CoolOffPeriod</b>.
45631
+ #
45632
+ # * `compliance` - Locks the snapshot in compliance mode. Snapshots
45633
+ # locked in compliance mode can't be unlocked by any user. They can
45634
+ # be deleted only after the lock duration expires. Users can't
45635
+ # decrease the lock duration or change the lock mode to
45636
+ # `governance`. However, users with appropriate IAM permissions can
45637
+ # increase the lock duration at any time.
45638
+ #
45639
+ # If you lock a snapshot in `compliance` mode, you can optionally
45640
+ # specify **CoolOffPeriod**.
45641
+ # @return [String]
45642
+ #
45643
+ # @!attribute [rw] cool_off_period
45644
+ # The cooling-off period during which you can unlock the snapshot or
45645
+ # modify the lock settings after locking the snapshot in compliance
45646
+ # mode, in hours. After the cooling-off period expires, you can't
45647
+ # unlock or delete the snapshot, decrease the lock duration, or change
45648
+ # the lock mode. You can increase the lock duration after the
45649
+ # cooling-off period expires.
45650
+ #
45651
+ # The cooling-off period is optional when locking a snapshot in
45652
+ # compliance mode. If you are locking the snapshot in governance mode,
45653
+ # omit this parameter.
45654
+ #
45655
+ # To lock the snapshot in compliance mode immediately without a
45656
+ # cooling-off period, omit this parameter.
45657
+ #
45658
+ # If you are extending the lock duration for a snapshot that is locked
45659
+ # in compliance mode after the cooling-off period has expired, omit
45660
+ # this parameter. If you specify a cooling-period in a such a request,
45661
+ # the request fails.
45662
+ #
45663
+ # Allowed values: Min 1, max 72.
45664
+ # @return [Integer]
45665
+ #
45666
+ # @!attribute [rw] lock_duration
45667
+ # The period of time for which to lock the snapshot, in days. The
45668
+ # snapshot lock will automatically expire after this period lapses.
45669
+ #
45670
+ # You must specify either this parameter or **ExpirationDate**, but
45671
+ # not both.
45672
+ #
45673
+ # Allowed values: Min: 1, max 36500
45674
+ # @return [Integer]
45675
+ #
45676
+ # @!attribute [rw] expiration_date
45677
+ # The date and time at which the snapshot lock is to automatically
45678
+ # expire, in the UTC time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45679
+ #
45680
+ # You must specify either this parameter or **LockDuration**, but not
45681
+ # both.
45682
+ # @return [Time]
45683
+ #
45684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LockSnapshotRequest AWS API Documentation
45685
+ #
45686
+ class LockSnapshotRequest < Struct.new(
45687
+ :snapshot_id,
45688
+ :dry_run,
45689
+ :lock_mode,
45690
+ :cool_off_period,
45691
+ :lock_duration,
45692
+ :expiration_date)
45693
+ SENSITIVE = []
45694
+ include Aws::Structure
45695
+ end
45696
+
45697
+ # @!attribute [rw] snapshot_id
45698
+ # The ID of the snapshot
45699
+ # @return [String]
45700
+ #
45701
+ # @!attribute [rw] lock_state
45702
+ # The state of the snapshot lock. Valid states include:
45703
+ #
45704
+ # * `compliance-cooloff` - The snapshot has been locked in compliance
45705
+ # mode but it is still within the cooling-off period. The snapshot
45706
+ # can't be deleted, but it can be unlocked and the lock settings
45707
+ # can be modified by users with appropriate permissions.
45708
+ #
45709
+ # * `governance` - The snapshot is locked in governance mode. The
45710
+ # snapshot can't be deleted, but it can be unlocked and the lock
45711
+ # settings can be modified by users with appropriate permissions.
45712
+ #
45713
+ # * `compliance` - The snapshot is locked in compliance mode and the
45714
+ # cooling-off period has expired. The snapshot can't be unlocked or
45715
+ # deleted. The lock duration can only be increased by users with
45716
+ # appropriate permissions.
45717
+ #
45718
+ # * `expired` - The snapshot was locked in compliance or governance
45719
+ # mode but the lock duration has expired. The snapshot is not locked
45720
+ # and can be deleted.
45721
+ # @return [String]
45722
+ #
45723
+ # @!attribute [rw] lock_duration
45724
+ # The period of time for which the snapshot is locked, in days.
45725
+ # @return [Integer]
45726
+ #
45727
+ # @!attribute [rw] cool_off_period
45728
+ # The compliance mode cooling-off period, in hours.
45729
+ # @return [Integer]
45730
+ #
45731
+ # @!attribute [rw] cool_off_period_expires_on
45732
+ # The date and time at which the compliance mode cooling-off period
45733
+ # expires, in the UTC time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45734
+ # @return [Time]
45735
+ #
45736
+ # @!attribute [rw] lock_created_on
45737
+ # The date and time at which the snapshot was locked, in the UTC time
45738
+ # zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45739
+ # @return [Time]
45740
+ #
45741
+ # @!attribute [rw] lock_expires_on
45742
+ # The date and time at which the lock will expire, in the UTC time
45743
+ # zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45744
+ # @return [Time]
45745
+ #
45746
+ # @!attribute [rw] lock_duration_start_time
45747
+ # The date and time at which the lock duration started, in the UTC
45748
+ # time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45749
+ # @return [Time]
45750
+ #
45751
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LockSnapshotResult AWS API Documentation
45752
+ #
45753
+ class LockSnapshotResult < Struct.new(
45754
+ :snapshot_id,
45755
+ :lock_state,
45756
+ :lock_duration,
45757
+ :cool_off_period,
45758
+ :cool_off_period_expires_on,
45759
+ :lock_created_on,
45760
+ :lock_expires_on,
45761
+ :lock_duration_start_time)
45762
+ SENSITIVE = []
45763
+ include Aws::Structure
45764
+ end
45765
+
45766
+ # Information about a locked snapshot.
45767
+ #
45768
+ # @!attribute [rw] owner_id
45769
+ # The account ID of the Amazon Web Services account that owns the
45770
+ # snapshot.
45771
+ # @return [String]
45772
+ #
45773
+ # @!attribute [rw] snapshot_id
45774
+ # The ID of the snapshot.
45775
+ # @return [String]
45776
+ #
45777
+ # @!attribute [rw] lock_state
45778
+ # The state of the snapshot lock. Valid states include:
45779
+ #
45780
+ # * `compliance-cooloff` - The snapshot has been locked in compliance
45781
+ # mode but it is still within the cooling-off period. The snapshot
45782
+ # can't be deleted, but it can be unlocked and the lock settings
45783
+ # can be modified by users with appropriate permissions.
45784
+ #
45785
+ # * `governance` - The snapshot is locked in governance mode. The
45786
+ # snapshot can't be deleted, but it can be unlocked and the lock
45787
+ # settings can be modified by users with appropriate permissions.
45788
+ #
45789
+ # * `compliance` - The snapshot is locked in compliance mode and the
45790
+ # cooling-off period has expired. The snapshot can't be unlocked or
45791
+ # deleted. The lock duration can only be increased by users with
45792
+ # appropriate permissions.
45793
+ #
45794
+ # * `expired` - The snapshot was locked in compliance or governance
45795
+ # mode but the lock duration has expired. The snapshot is not locked
45796
+ # and can be deleted.
45797
+ # @return [String]
45798
+ #
45799
+ # @!attribute [rw] lock_duration
45800
+ # The period of time for which the snapshot is locked, in days.
45801
+ # @return [Integer]
45802
+ #
45803
+ # @!attribute [rw] cool_off_period
45804
+ # The compliance mode cooling-off period, in hours.
45805
+ # @return [Integer]
45806
+ #
45807
+ # @!attribute [rw] cool_off_period_expires_on
45808
+ # The date and time at which the compliance mode cooling-off period
45809
+ # expires, in the UTC time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45810
+ # @return [Time]
45811
+ #
45812
+ # @!attribute [rw] lock_created_on
45813
+ # The date and time at which the snapshot was locked, in the UTC time
45814
+ # zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45815
+ # @return [Time]
45816
+ #
45817
+ # @!attribute [rw] lock_duration_start_time
45818
+ # The date and time at which the lock duration started, in the UTC
45819
+ # time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45820
+ #
45821
+ # If you lock a snapshot that is in the `pending` state, the lock
45822
+ # duration starts only once the snapshot enters the `completed` state.
45823
+ # @return [Time]
45824
+ #
45825
+ # @!attribute [rw] lock_expires_on
45826
+ # The date and time at which the lock will expire, in the UTC time
45827
+ # zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
45828
+ # @return [Time]
45829
+ #
45830
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LockedSnapshotsInfo AWS API Documentation
45831
+ #
45832
+ class LockedSnapshotsInfo < Struct.new(
45833
+ :owner_id,
45834
+ :snapshot_id,
45835
+ :lock_state,
45836
+ :lock_duration,
45837
+ :cool_off_period,
45838
+ :cool_off_period_expires_on,
45839
+ :lock_created_on,
45840
+ :lock_duration_start_time,
45841
+ :lock_expires_on)
45842
+ SENSITIVE = []
45843
+ include Aws::Structure
45844
+ end
45845
+
44697
45846
  # Details for Site-to-Site VPN tunnel endpoint maintenance events.
44698
45847
  #
44699
45848
  # @!attribute [rw] pending_maintenance
@@ -46480,6 +47629,17 @@ module Aws::EC2
46480
47629
  # The operating Regions to remove.
46481
47630
  # @return [Array<Types::RemoveIpamOperatingRegion>]
46482
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
+ #
46483
47643
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamRequest AWS API Documentation
46484
47644
  #
46485
47645
  class ModifyIpamRequest < Struct.new(
@@ -46487,7 +47647,8 @@ module Aws::EC2
46487
47647
  :ipam_id,
46488
47648
  :description,
46489
47649
  :add_operating_regions,
46490
- :remove_operating_regions)
47650
+ :remove_operating_regions,
47651
+ :tier)
46491
47652
  SENSITIVE = []
46492
47653
  include Aws::Structure
46493
47654
  end
@@ -46894,6 +48055,10 @@ module Aws::EC2
46894
48055
  # ENI becomes the primary IPv6 address.
46895
48056
  # @return [Boolean]
46896
48057
  #
48058
+ # @!attribute [rw] connection_tracking_specification
48059
+ # A connection tracking specification.
48060
+ # @return [Types::ConnectionTrackingSpecificationRequest]
48061
+ #
46897
48062
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttributeRequest AWS API Documentation
46898
48063
  #
46899
48064
  class ModifyNetworkInterfaceAttributeRequest < Struct.new(
@@ -46904,7 +48069,8 @@ module Aws::EC2
46904
48069
  :network_interface_id,
46905
48070
  :source_dest_check,
46906
48071
  :ena_srd_specification,
46907
- :enable_primary_ipv_6)
48072
+ :enable_primary_ipv_6,
48073
+ :connection_tracking_specification)
46908
48074
  SENSITIVE = []
46909
48075
  include Aws::Structure
46910
48076
  end
@@ -48151,6 +49317,22 @@ module Aws::EC2
48151
49317
  include Aws::Structure
48152
49318
  end
48153
49319
 
49320
+ # Modifies the configuration of the specified device-based Amazon Web
49321
+ # Services Verified Access trust provider.
49322
+ #
49323
+ # @!attribute [rw] public_signing_key_url
49324
+ # The URL Amazon Web Services Verified Access will use to verify the
49325
+ # authenticity of the device tokens.
49326
+ # @return [String]
49327
+ #
49328
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderDeviceOptions AWS API Documentation
49329
+ #
49330
+ class ModifyVerifiedAccessTrustProviderDeviceOptions < Struct.new(
49331
+ :public_signing_key_url)
49332
+ SENSITIVE = []
49333
+ include Aws::Structure
49334
+ end
49335
+
48154
49336
  # Options for an OpenID Connect-compatible user-identity trust provider.
48155
49337
  #
48156
49338
  # @!attribute [rw] issuer
@@ -48206,6 +49388,11 @@ module Aws::EC2
48206
49388
  # provider.
48207
49389
  # @return [Types::ModifyVerifiedAccessTrustProviderOidcOptions]
48208
49390
  #
49391
+ # @!attribute [rw] device_options
49392
+ # The options for a device-based trust provider. This parameter is
49393
+ # required when the provider type is `device`.
49394
+ # @return [Types::ModifyVerifiedAccessTrustProviderDeviceOptions]
49395
+ #
48209
49396
  # @!attribute [rw] description
48210
49397
  # A description for the Verified Access trust provider.
48211
49398
  # @return [String]
@@ -48239,6 +49426,7 @@ module Aws::EC2
48239
49426
  class ModifyVerifiedAccessTrustProviderRequest < Struct.new(
48240
49427
  :verified_access_trust_provider_id,
48241
49428
  :oidc_options,
49429
+ :device_options,
48242
49430
  :description,
48243
49431
  :dry_run,
48244
49432
  :client_token,
@@ -50185,6 +51373,17 @@ module Aws::EC2
50185
51373
  # The Availability Zone.
50186
51374
  # @return [String]
50187
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
+ #
50188
51387
  # @!attribute [rw] description
50189
51388
  # A description.
50190
51389
  # @return [String]
@@ -50292,6 +51491,7 @@ module Aws::EC2
50292
51491
  :association,
50293
51492
  :attachment,
50294
51493
  :availability_zone,
51494
+ :connection_tracking_configuration,
50295
51495
  :description,
50296
51496
  :groups,
50297
51497
  :interface_type,
@@ -52130,6 +53330,48 @@ module Aws::EC2
52130
53330
  include Aws::Structure
52131
53331
  end
52132
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
+
52133
53375
  # @!attribute [rw] dry_run
52134
53376
  # A check for whether you have the required permissions for the action
52135
53377
  # without actually making the request and provides an error response.
@@ -63641,11 +64883,6 @@ module Aws::EC2
63641
64883
  include Aws::Structure
63642
64884
  end
63643
64885
 
63644
- # <note markdown="1"> Currently available in **limited preview only**. If you are interested
63645
- # in using this feature, contact your account manager.
63646
- #
63647
- # </note>
63648
- #
63649
64886
  # Information about an association between a branch network interface
63650
64887
  # with a trunk network interface.
63651
64888
  #
@@ -63938,6 +65175,38 @@ module Aws::EC2
63938
65175
  include Aws::Structure
63939
65176
  end
63940
65177
 
65178
+ # @!attribute [rw] snapshot_id
65179
+ # The ID of the snapshot to unlock.
65180
+ # @return [String]
65181
+ #
65182
+ # @!attribute [rw] dry_run
65183
+ # Checks whether you have the required permissions for the action,
65184
+ # without actually making the request, and provides an error response.
65185
+ # If you have the required permissions, the error response is
65186
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
65187
+ # @return [Boolean]
65188
+ #
65189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnlockSnapshotRequest AWS API Documentation
65190
+ #
65191
+ class UnlockSnapshotRequest < Struct.new(
65192
+ :snapshot_id,
65193
+ :dry_run)
65194
+ SENSITIVE = []
65195
+ include Aws::Structure
65196
+ end
65197
+
65198
+ # @!attribute [rw] snapshot_id
65199
+ # The ID of the snapshot.
65200
+ # @return [String]
65201
+ #
65202
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnlockSnapshotResult AWS API Documentation
65203
+ #
65204
+ class UnlockSnapshotResult < Struct.new(
65205
+ :snapshot_id)
65206
+ SENSITIVE = []
65207
+ include Aws::Structure
65208
+ end
65209
+
63941
65210
  # @!attribute [rw] instance_ids
63942
65211
  # The IDs of the instances.
63943
65212
  # @return [Array<String>]