aws-sdk-directconnect 1.92.0 → 1.94.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e9480e42663132ff0db122a5c7060d38150fc5526a8cef689e641676a8f27a2
4
- data.tar.gz: 101c7098664306d94c9fe28c83ea6aee2f820de3910d1bd6c534c53eb9aa1f5d
3
+ metadata.gz: 253fb5000260235f2916685b785ebb8b0638439abb52450cd34212287f65555d
4
+ data.tar.gz: 12cb0c7c4dcc307cdeb39e7869650b1cb03a8064ce021e9ba7dec6ca06dabfd9
5
5
  SHA512:
6
- metadata.gz: fc25a0dccec4a23feb115a62307fd5e4a063d832db351031ea8b8d2c92186deca46b6272957b3ee85471b828c0482d93f1ab837820d3a920a1a0dbfe05e90e0d
7
- data.tar.gz: 803e087119b397f3663665f2bfadef13fbae7d8fa4aa68e9fe629e8bcc780e741e918eb0a75c457f9ec5277aeb37439a53a7042ef53ebb058f6cb5f10dfc0268
6
+ metadata.gz: 0eee1572ce773c577c2b9658fc4e9a49ee3cc79679a4e93860a9598fcc1810a711c901d77e089c0cc321e20ffc5ad747ac514d8e57d54821150b0d7c7d84fd0f
7
+ data.tar.gz: 48432c23beb126e96b8ffb9345c2f0e74c6be8d2530321747ff46a2bf5931088a95e0e6014919c5ac0efc1a7518e9814ed903c57d53eaa324df84a06f9eef0e6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.0 (2025-07-28)
5
+ ------------------
6
+
7
+ * Feature - Enable MACSec support and features on Interconnects.
8
+
9
+ 1.93.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.92.0 (2025-06-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.92.0
1
+ 1.94.0
@@ -95,7 +95,7 @@ module Aws::DirectConnect
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::DirectConnect
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::DirectConnect
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::DirectConnect
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -374,7 +384,7 @@ module Aws::DirectConnect
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
387
+ # Your Bearer token used for authentication. This can be an instance of any one of the
378
388
  # following classes:
379
389
  #
380
390
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -604,6 +614,7 @@ module Aws::DirectConnect
604
614
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
605
615
  # * {Types::Connection#encryption_mode #encryption_mode} => String
606
616
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
617
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
607
618
  #
608
619
  # @example Request syntax with placeholder values
609
620
  #
@@ -645,6 +656,7 @@ module Aws::DirectConnect
645
656
  # resp.mac_sec_keys[0].ckn #=> String
646
657
  # resp.mac_sec_keys[0].state #=> String
647
658
  # resp.mac_sec_keys[0].start_on #=> String
659
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
648
660
  #
649
661
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateConnectionOnInterconnect AWS API Documentation
650
662
  #
@@ -715,6 +727,7 @@ module Aws::DirectConnect
715
727
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
716
728
  # * {Types::Connection#encryption_mode #encryption_mode} => String
717
729
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
730
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
718
731
  #
719
732
  # @example Request syntax with placeholder values
720
733
  #
@@ -762,6 +775,7 @@ module Aws::DirectConnect
762
775
  # resp.mac_sec_keys[0].ckn #=> String
763
776
  # resp.mac_sec_keys[0].state #=> String
764
777
  # resp.mac_sec_keys[0].start_on #=> String
778
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
765
779
  #
766
780
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateHostedConnection AWS API Documentation
767
781
  #
@@ -858,7 +872,7 @@ module Aws::DirectConnect
858
872
  # resp.amazon_address #=> String
859
873
  # resp.customer_address #=> String
860
874
  # resp.address_family #=> String, one of "ipv4", "ipv6"
861
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
875
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
862
876
  # resp.customer_router_config #=> String
863
877
  # resp.mtu #=> Integer
864
878
  # resp.jumbo_frame_capable #=> Boolean
@@ -993,7 +1007,7 @@ module Aws::DirectConnect
993
1007
  # resp.amazon_address #=> String
994
1008
  # resp.customer_address #=> String
995
1009
  # resp.address_family #=> String, one of "ipv4", "ipv6"
996
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
1010
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
997
1011
  # resp.customer_router_config #=> String
998
1012
  # resp.mtu #=> Integer
999
1013
  # resp.jumbo_frame_capable #=> Boolean
@@ -1094,7 +1108,7 @@ module Aws::DirectConnect
1094
1108
  # resp.virtual_interface.amazon_address #=> String
1095
1109
  # resp.virtual_interface.customer_address #=> String
1096
1110
  # resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
1097
- # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
1111
+ # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
1098
1112
  # resp.virtual_interface.customer_router_config #=> String
1099
1113
  # resp.virtual_interface.mtu #=> Integer
1100
1114
  # resp.virtual_interface.jumbo_frame_capable #=> Boolean
@@ -1180,6 +1194,7 @@ module Aws::DirectConnect
1180
1194
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
1181
1195
  # * {Types::Connection#encryption_mode #encryption_mode} => String
1182
1196
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
1197
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
1183
1198
  #
1184
1199
  # @example Request syntax with placeholder values
1185
1200
  #
@@ -1218,6 +1233,7 @@ module Aws::DirectConnect
1218
1233
  # resp.mac_sec_keys[0].ckn #=> String
1219
1234
  # resp.mac_sec_keys[0].state #=> String
1220
1235
  # resp.mac_sec_keys[0].start_on #=> String
1236
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
1221
1237
  #
1222
1238
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateConnectionWithLag AWS API Documentation
1223
1239
  #
@@ -1269,6 +1285,7 @@ module Aws::DirectConnect
1269
1285
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
1270
1286
  # * {Types::Connection#encryption_mode #encryption_mode} => String
1271
1287
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
1288
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
1272
1289
  #
1273
1290
  # @example Request syntax with placeholder values
1274
1291
  #
@@ -1307,6 +1324,7 @@ module Aws::DirectConnect
1307
1324
  # resp.mac_sec_keys[0].ckn #=> String
1308
1325
  # resp.mac_sec_keys[0].state #=> String
1309
1326
  # resp.mac_sec_keys[0].start_on #=> String
1327
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
1310
1328
  #
1311
1329
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateHostedConnection AWS API Documentation
1312
1330
  #
@@ -1318,8 +1336,8 @@ module Aws::DirectConnect
1318
1336
  end
1319
1337
 
1320
1338
  # Associates a MAC Security (MACsec) Connection Key Name (CKN)/
1321
- # Connectivity Association Key (CAK) pair with an Direct Connect
1322
- # dedicated connection.
1339
+ # Connectivity Association Key (CAK) pair with a Direct Connect
1340
+ # connection.
1323
1341
  #
1324
1342
  # You must supply either the `secretARN,` or the CKN/CAK (`ckn` and
1325
1343
  # `cak`) pair in the request.
@@ -1333,15 +1351,15 @@ module Aws::DirectConnect
1333
1351
  # [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-key-consideration
1334
1352
  #
1335
1353
  # @option params [required, String] :connection_id
1336
- # The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG
1337
- # (dxlag-xxxx).
1354
+ # The ID of the dedicated connection (dxcon-xxxx), interconnect
1355
+ # (dxcon-xxxx), or LAG (dxlag-xxxx).
1338
1356
  #
1339
- # You can use DescribeConnections or DescribeLags to retrieve connection
1340
- # ID.
1357
+ # You can use DescribeConnections, DescribeInterconnects, or
1358
+ # DescribeLags to retrieve connection ID.
1341
1359
  #
1342
1360
  # @option params [String] :secret_arn
1343
1361
  # The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key
1344
- # to associate with the dedicated connection.
1362
+ # to associate with the connection.
1345
1363
  #
1346
1364
  # You can use DescribeConnections or DescribeLags to retrieve the MAC
1347
1365
  # Security (MACsec) secret key.
@@ -1350,8 +1368,7 @@ module Aws::DirectConnect
1350
1368
  # request parameters.
1351
1369
  #
1352
1370
  # @option params [String] :ckn
1353
- # The MAC Security (MACsec) CKN to associate with the dedicated
1354
- # connection.
1371
+ # The MAC Security (MACsec) CKN to associate with the connection.
1355
1372
  #
1356
1373
  # You can create the CKN/CAK pair using an industry standard tool.
1357
1374
  #
@@ -1361,8 +1378,7 @@ module Aws::DirectConnect
1361
1378
  # parameter and not use the `secretARN` request parameter.
1362
1379
  #
1363
1380
  # @option params [String] :cak
1364
- # The MAC Security (MACsec) CAK to associate with the dedicated
1365
- # connection.
1381
+ # The MAC Security (MACsec) CAK to associate with the connection.
1366
1382
  #
1367
1383
  # You can create the CKN/CAK pair using an industry standard tool.
1368
1384
  #
@@ -1477,7 +1493,7 @@ module Aws::DirectConnect
1477
1493
  # resp.amazon_address #=> String
1478
1494
  # resp.customer_address #=> String
1479
1495
  # resp.address_family #=> String, one of "ipv4", "ipv6"
1480
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
1496
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
1481
1497
  # resp.customer_router_config #=> String
1482
1498
  # resp.mtu #=> Integer
1483
1499
  # resp.jumbo_frame_capable #=> Boolean
@@ -1606,7 +1622,7 @@ module Aws::DirectConnect
1606
1622
  #
1607
1623
  # @example Response structure
1608
1624
  #
1609
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
1625
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
1610
1626
  #
1611
1627
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmPrivateVirtualInterface AWS API Documentation
1612
1628
  #
@@ -1638,7 +1654,7 @@ module Aws::DirectConnect
1638
1654
  #
1639
1655
  # @example Response structure
1640
1656
  #
1641
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
1657
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
1642
1658
  #
1643
1659
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmPublicVirtualInterface AWS API Documentation
1644
1660
  #
@@ -1675,7 +1691,7 @@ module Aws::DirectConnect
1675
1691
  #
1676
1692
  # @example Response structure
1677
1693
  #
1678
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
1694
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
1679
1695
  #
1680
1696
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmTransitVirtualInterface AWS API Documentation
1681
1697
  #
@@ -1754,7 +1770,7 @@ module Aws::DirectConnect
1754
1770
  # resp.virtual_interface.amazon_address #=> String
1755
1771
  # resp.virtual_interface.customer_address #=> String
1756
1772
  # resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
1757
- # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
1773
+ # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
1758
1774
  # resp.virtual_interface.customer_router_config #=> String
1759
1775
  # resp.virtual_interface.mtu #=> Integer
1760
1776
  # resp.virtual_interface.jumbo_frame_capable #=> Boolean
@@ -1828,13 +1844,13 @@ module Aws::DirectConnect
1828
1844
  # Indicates whether you want the connection to support MAC Security
1829
1845
  # (MACsec).
1830
1846
  #
1831
- # MAC Security (MACsec) is only available on dedicated connections. For
1832
- # information about MAC Security (MACsec) prerequisties, see [MACsec
1833
- # prerequisties][1] in the *Direct Connect User Guide*.
1847
+ # MAC Security (MACsec) is unavailable on hosted connections. For
1848
+ # information about MAC Security (MACsec) prerequisites, see [MAC
1849
+ # Security in Direct Connect][1] in the *Direct Connect User Guide*.
1834
1850
  #
1835
1851
  #
1836
1852
  #
1837
- # [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-prerequisites
1853
+ # [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/MACSec.html
1838
1854
  #
1839
1855
  # @return [Types::Connection] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1840
1856
  #
@@ -1860,6 +1876,7 @@ module Aws::DirectConnect
1860
1876
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
1861
1877
  # * {Types::Connection#encryption_mode #encryption_mode} => String
1862
1878
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
1879
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
1863
1880
  #
1864
1881
  # @example Request syntax with placeholder values
1865
1882
  #
@@ -1908,6 +1925,7 @@ module Aws::DirectConnect
1908
1925
  # resp.mac_sec_keys[0].ckn #=> String
1909
1926
  # resp.mac_sec_keys[0].state #=> String
1910
1927
  # resp.mac_sec_keys[0].start_on #=> String
1928
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
1911
1929
  #
1912
1930
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateConnection AWS API Documentation
1913
1931
  #
@@ -2164,6 +2182,10 @@ module Aws::DirectConnect
2164
2182
  # @option params [String] :provider_name
2165
2183
  # The name of the service provider associated with the interconnect.
2166
2184
  #
2185
+ # @option params [Boolean] :request_mac_sec
2186
+ # Indicates whether you want the interconnect to support MAC Security
2187
+ # (MACsec).
2188
+ #
2167
2189
  # @return [Types::Interconnect] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2168
2190
  #
2169
2191
  # * {Types::Interconnect#interconnect_id #interconnect_id} => String
@@ -2181,6 +2203,10 @@ module Aws::DirectConnect
2181
2203
  # * {Types::Interconnect#has_logical_redundancy #has_logical_redundancy} => String
2182
2204
  # * {Types::Interconnect#tags #tags} => Array&lt;Types::Tag&gt;
2183
2205
  # * {Types::Interconnect#provider_name #provider_name} => String
2206
+ # * {Types::Interconnect#mac_sec_capable #mac_sec_capable} => Boolean
2207
+ # * {Types::Interconnect#port_encryption_status #port_encryption_status} => String
2208
+ # * {Types::Interconnect#encryption_mode #encryption_mode} => String
2209
+ # * {Types::Interconnect#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
2184
2210
  #
2185
2211
  # @example Request syntax with placeholder values
2186
2212
  #
@@ -2196,6 +2222,7 @@ module Aws::DirectConnect
2196
2222
  # },
2197
2223
  # ],
2198
2224
  # provider_name: "ProviderName",
2225
+ # request_mac_sec: false,
2199
2226
  # })
2200
2227
  #
2201
2228
  # @example Response structure
@@ -2217,6 +2244,14 @@ module Aws::DirectConnect
2217
2244
  # resp.tags[0].key #=> String
2218
2245
  # resp.tags[0].value #=> String
2219
2246
  # resp.provider_name #=> String
2247
+ # resp.mac_sec_capable #=> Boolean
2248
+ # resp.port_encryption_status #=> String
2249
+ # resp.encryption_mode #=> String
2250
+ # resp.mac_sec_keys #=> Array
2251
+ # resp.mac_sec_keys[0].secret_arn #=> String
2252
+ # resp.mac_sec_keys[0].ckn #=> String
2253
+ # resp.mac_sec_keys[0].state #=> String
2254
+ # resp.mac_sec_keys[0].start_on #=> String
2220
2255
  #
2221
2256
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateInterconnect AWS API Documentation
2222
2257
  #
@@ -2388,6 +2423,7 @@ module Aws::DirectConnect
2388
2423
  # resp.connections[0].mac_sec_keys[0].ckn #=> String
2389
2424
  # resp.connections[0].mac_sec_keys[0].state #=> String
2390
2425
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
2426
+ # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
2391
2427
  # resp.allows_hosted_connections #=> Boolean
2392
2428
  # resp.jumbo_frame_capable #=> Boolean
2393
2429
  # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
@@ -2505,7 +2541,7 @@ module Aws::DirectConnect
2505
2541
  # resp.amazon_address #=> String
2506
2542
  # resp.customer_address #=> String
2507
2543
  # resp.address_family #=> String, one of "ipv4", "ipv6"
2508
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
2544
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
2509
2545
  # resp.customer_router_config #=> String
2510
2546
  # resp.mtu #=> Integer
2511
2547
  # resp.jumbo_frame_capable #=> Boolean
@@ -2626,7 +2662,7 @@ module Aws::DirectConnect
2626
2662
  # resp.amazon_address #=> String
2627
2663
  # resp.customer_address #=> String
2628
2664
  # resp.address_family #=> String, one of "ipv4", "ipv6"
2629
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
2665
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
2630
2666
  # resp.customer_router_config #=> String
2631
2667
  # resp.mtu #=> Integer
2632
2668
  # resp.jumbo_frame_capable #=> Boolean
@@ -2733,7 +2769,7 @@ module Aws::DirectConnect
2733
2769
  # resp.virtual_interface.amazon_address #=> String
2734
2770
  # resp.virtual_interface.customer_address #=> String
2735
2771
  # resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
2736
- # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
2772
+ # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
2737
2773
  # resp.virtual_interface.customer_router_config #=> String
2738
2774
  # resp.virtual_interface.mtu #=> Integer
2739
2775
  # resp.virtual_interface.jumbo_frame_capable #=> Boolean
@@ -2815,7 +2851,7 @@ module Aws::DirectConnect
2815
2851
  # resp.virtual_interface.amazon_address #=> String
2816
2852
  # resp.virtual_interface.customer_address #=> String
2817
2853
  # resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
2818
- # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
2854
+ # resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
2819
2855
  # resp.virtual_interface.customer_router_config #=> String
2820
2856
  # resp.virtual_interface.mtu #=> Integer
2821
2857
  # resp.virtual_interface.jumbo_frame_capable #=> Boolean
@@ -2885,6 +2921,7 @@ module Aws::DirectConnect
2885
2921
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
2886
2922
  # * {Types::Connection#encryption_mode #encryption_mode} => String
2887
2923
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
2924
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
2888
2925
  #
2889
2926
  # @example Request syntax with placeholder values
2890
2927
  #
@@ -2922,6 +2959,7 @@ module Aws::DirectConnect
2922
2959
  # resp.mac_sec_keys[0].ckn #=> String
2923
2960
  # resp.mac_sec_keys[0].state #=> String
2924
2961
  # resp.mac_sec_keys[0].start_on #=> String
2962
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
2925
2963
  #
2926
2964
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteConnection AWS API Documentation
2927
2965
  #
@@ -3180,6 +3218,7 @@ module Aws::DirectConnect
3180
3218
  # resp.connections[0].mac_sec_keys[0].ckn #=> String
3181
3219
  # resp.connections[0].mac_sec_keys[0].state #=> String
3182
3220
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
3221
+ # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3183
3222
  # resp.allows_hosted_connections #=> Boolean
3184
3223
  # resp.jumbo_frame_capable #=> Boolean
3185
3224
  # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
@@ -3221,7 +3260,7 @@ module Aws::DirectConnect
3221
3260
  #
3222
3261
  # @example Response structure
3223
3262
  #
3224
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
3263
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
3225
3264
  #
3226
3265
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteVirtualInterface AWS API Documentation
3227
3266
  #
@@ -3334,6 +3373,7 @@ module Aws::DirectConnect
3334
3373
  # resp.connections[0].mac_sec_keys[0].ckn #=> String
3335
3374
  # resp.connections[0].mac_sec_keys[0].state #=> String
3336
3375
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
3376
+ # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3337
3377
  #
3338
3378
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnections AWS API Documentation
3339
3379
  #
@@ -3399,6 +3439,7 @@ module Aws::DirectConnect
3399
3439
  # resp.connections[0].mac_sec_keys[0].ckn #=> String
3400
3440
  # resp.connections[0].mac_sec_keys[0].state #=> String
3401
3441
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
3442
+ # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3402
3443
  #
3403
3444
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnectionsOnInterconnect AWS API Documentation
3404
3445
  #
@@ -3771,6 +3812,7 @@ module Aws::DirectConnect
3771
3812
  # resp.connections[0].mac_sec_keys[0].ckn #=> String
3772
3813
  # resp.connections[0].mac_sec_keys[0].state #=> String
3773
3814
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
3815
+ # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3774
3816
  #
3775
3817
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeHostedConnections AWS API Documentation
3776
3818
  #
@@ -3872,6 +3914,14 @@ module Aws::DirectConnect
3872
3914
  # resp.interconnects[0].tags[0].key #=> String
3873
3915
  # resp.interconnects[0].tags[0].value #=> String
3874
3916
  # resp.interconnects[0].provider_name #=> String
3917
+ # resp.interconnects[0].mac_sec_capable #=> Boolean
3918
+ # resp.interconnects[0].port_encryption_status #=> String
3919
+ # resp.interconnects[0].encryption_mode #=> String
3920
+ # resp.interconnects[0].mac_sec_keys #=> Array
3921
+ # resp.interconnects[0].mac_sec_keys[0].secret_arn #=> String
3922
+ # resp.interconnects[0].mac_sec_keys[0].ckn #=> String
3923
+ # resp.interconnects[0].mac_sec_keys[0].state #=> String
3924
+ # resp.interconnects[0].mac_sec_keys[0].start_on #=> String
3875
3925
  #
3876
3926
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeInterconnects AWS API Documentation
3877
3927
  #
@@ -3941,6 +3991,7 @@ module Aws::DirectConnect
3941
3991
  # resp.lags[0].connections[0].mac_sec_keys[0].ckn #=> String
3942
3992
  # resp.lags[0].connections[0].mac_sec_keys[0].state #=> String
3943
3993
  # resp.lags[0].connections[0].mac_sec_keys[0].start_on #=> String
3994
+ # resp.lags[0].connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3944
3995
  # resp.lags[0].allows_hosted_connections #=> Boolean
3945
3996
  # resp.lags[0].jumbo_frame_capable #=> Boolean
3946
3997
  # resp.lags[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
@@ -4204,7 +4255,7 @@ module Aws::DirectConnect
4204
4255
  # resp.virtual_interfaces[0].amazon_address #=> String
4205
4256
  # resp.virtual_interfaces[0].customer_address #=> String
4206
4257
  # resp.virtual_interfaces[0].address_family #=> String, one of "ipv4", "ipv6"
4207
- # resp.virtual_interfaces[0].virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
4258
+ # resp.virtual_interfaces[0].virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
4208
4259
  # resp.virtual_interfaces[0].customer_router_config #=> String
4209
4260
  # resp.virtual_interfaces[0].mtu #=> Integer
4210
4261
  # resp.virtual_interfaces[0].jumbo_frame_capable #=> Boolean
@@ -4284,6 +4335,7 @@ module Aws::DirectConnect
4284
4335
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
4285
4336
  # * {Types::Connection#encryption_mode #encryption_mode} => String
4286
4337
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
4338
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
4287
4339
  #
4288
4340
  # @example Request syntax with placeholder values
4289
4341
  #
@@ -4322,6 +4374,7 @@ module Aws::DirectConnect
4322
4374
  # resp.mac_sec_keys[0].ckn #=> String
4323
4375
  # resp.mac_sec_keys[0].state #=> String
4324
4376
  # resp.mac_sec_keys[0].start_on #=> String
4377
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
4325
4378
  #
4326
4379
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateConnectionFromLag AWS API Documentation
4327
4380
  #
@@ -4333,14 +4386,14 @@ module Aws::DirectConnect
4333
4386
  end
4334
4387
 
4335
4388
  # Removes the association between a MAC Security (MACsec) security key
4336
- # and an Direct Connect dedicated connection.
4389
+ # and a Direct Connect connection.
4337
4390
  #
4338
4391
  # @option params [required, String] :connection_id
4339
- # The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG
4340
- # (dxlag-xxxx).
4392
+ # The ID of the dedicated connection (dxcon-xxxx), interconnect
4393
+ # (dxcon-xxxx), or LAG (dxlag-xxxx).
4341
4394
  #
4342
- # You can use DescribeConnections or DescribeLags to retrieve connection
4343
- # ID.
4395
+ # You can use DescribeConnections, DescribeInterconnects, or
4396
+ # DescribeLags to retrieve connection ID.
4344
4397
  #
4345
4398
  # @option params [required, String] :secret_arn
4346
4399
  # The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret
@@ -4608,7 +4661,7 @@ module Aws::DirectConnect
4608
4661
  req.send_request(options)
4609
4662
  end
4610
4663
 
4611
- # Updates the Direct Connect dedicated connection configuration.
4664
+ # Updates the Direct Connect connection configuration.
4612
4665
  #
4613
4666
  # You can update the following parameters for a connection:
4614
4667
  #
@@ -4617,7 +4670,7 @@ module Aws::DirectConnect
4617
4670
  # * The connection's MAC Security (MACsec) encryption mode.
4618
4671
  #
4619
4672
  # @option params [required, String] :connection_id
4620
- # The ID of the dedicated connection.
4673
+ # The ID of the connection.
4621
4674
  #
4622
4675
  # You can use DescribeConnections to retrieve the connection ID.
4623
4676
  #
@@ -4654,6 +4707,7 @@ module Aws::DirectConnect
4654
4707
  # * {Types::Connection#port_encryption_status #port_encryption_status} => String
4655
4708
  # * {Types::Connection#encryption_mode #encryption_mode} => String
4656
4709
  # * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array&lt;Types::MacSecKey&gt;
4710
+ # * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
4657
4711
  #
4658
4712
  # @example Request syntax with placeholder values
4659
4713
  #
@@ -4693,6 +4747,7 @@ module Aws::DirectConnect
4693
4747
  # resp.mac_sec_keys[0].ckn #=> String
4694
4748
  # resp.mac_sec_keys[0].state #=> String
4695
4749
  # resp.mac_sec_keys[0].start_on #=> String
4750
+ # resp.partner_interconnect_mac_sec_capable #=> Boolean
4696
4751
  #
4697
4752
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateConnection AWS API Documentation
4698
4753
  #
@@ -4921,6 +4976,7 @@ module Aws::DirectConnect
4921
4976
  # resp.connections[0].mac_sec_keys[0].ckn #=> String
4922
4977
  # resp.connections[0].mac_sec_keys[0].state #=> String
4923
4978
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
4979
+ # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
4924
4980
  # resp.allows_hosted_connections #=> Boolean
4925
4981
  # resp.jumbo_frame_capable #=> Boolean
4926
4982
  # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
@@ -5023,7 +5079,7 @@ module Aws::DirectConnect
5023
5079
  # resp.amazon_address #=> String
5024
5080
  # resp.customer_address #=> String
5025
5081
  # resp.address_family #=> String, one of "ipv4", "ipv6"
5026
- # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
5082
+ # resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
5027
5083
  # resp.customer_router_config #=> String
5028
5084
  # resp.mtu #=> Integer
5029
5085
  # resp.jumbo_frame_capable #=> Boolean
@@ -5077,7 +5133,7 @@ module Aws::DirectConnect
5077
5133
  tracer: tracer
5078
5134
  )
5079
5135
  context[:gem_name] = 'aws-sdk-directconnect'
5080
- context[:gem_version] = '1.92.0'
5136
+ context[:gem_version] = '1.94.0'
5081
5137
  Seahorse::Client::Request.new(handlers, context)
5082
5138
  end
5083
5139
 
@@ -198,6 +198,7 @@ module Aws::DirectConnect
198
198
  NniPartnerType = Shapes::StringShape.new(name: 'NniPartnerType')
199
199
  OwnerAccount = Shapes::StringShape.new(name: 'OwnerAccount')
200
200
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
201
+ PartnerInterconnectMacSecCapable = Shapes::BooleanShape.new(name: 'PartnerInterconnectMacSecCapable')
201
202
  PartnerName = Shapes::StringShape.new(name: 'PartnerName')
202
203
  Platform = Shapes::StringShape.new(name: 'Platform')
203
204
  PortEncryptionStatus = Shapes::StringShape.new(name: 'PortEncryptionStatus')
@@ -419,6 +420,7 @@ module Aws::DirectConnect
419
420
  Connection.add_member(:port_encryption_status, Shapes::ShapeRef.new(shape: PortEncryptionStatus, location_name: "portEncryptionStatus"))
420
421
  Connection.add_member(:encryption_mode, Shapes::ShapeRef.new(shape: EncryptionMode, location_name: "encryptionMode"))
421
422
  Connection.add_member(:mac_sec_keys, Shapes::ShapeRef.new(shape: MacSecKeyList, location_name: "macSecKeys"))
423
+ Connection.add_member(:partner_interconnect_mac_sec_capable, Shapes::ShapeRef.new(shape: PartnerInterconnectMacSecCapable, location_name: "partnerInterconnectMacSecCapable"))
422
424
  Connection.struct_class = Types::Connection
423
425
 
424
426
  ConnectionList.member = Shapes::ShapeRef.new(shape: Connection)
@@ -475,6 +477,7 @@ module Aws::DirectConnect
475
477
  CreateInterconnectRequest.add_member(:lag_id, Shapes::ShapeRef.new(shape: LagId, location_name: "lagId"))
476
478
  CreateInterconnectRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
477
479
  CreateInterconnectRequest.add_member(:provider_name, Shapes::ShapeRef.new(shape: ProviderName, location_name: "providerName"))
480
+ CreateInterconnectRequest.add_member(:request_mac_sec, Shapes::ShapeRef.new(shape: RequestMACSec, location_name: "requestMACSec"))
478
481
  CreateInterconnectRequest.struct_class = Types::CreateInterconnectRequest
479
482
 
480
483
  CreateLagRequest.add_member(:number_of_connections, Shapes::ShapeRef.new(shape: Count, required: true, location_name: "numberOfConnections"))
@@ -739,6 +742,10 @@ module Aws::DirectConnect
739
742
  Interconnect.add_member(:has_logical_redundancy, Shapes::ShapeRef.new(shape: HasLogicalRedundancy, location_name: "hasLogicalRedundancy"))
740
743
  Interconnect.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
741
744
  Interconnect.add_member(:provider_name, Shapes::ShapeRef.new(shape: ProviderName, location_name: "providerName"))
745
+ Interconnect.add_member(:mac_sec_capable, Shapes::ShapeRef.new(shape: MacSecCapable, location_name: "macSecCapable"))
746
+ Interconnect.add_member(:port_encryption_status, Shapes::ShapeRef.new(shape: PortEncryptionStatus, location_name: "portEncryptionStatus"))
747
+ Interconnect.add_member(:encryption_mode, Shapes::ShapeRef.new(shape: EncryptionMode, location_name: "encryptionMode"))
748
+ Interconnect.add_member(:mac_sec_keys, Shapes::ShapeRef.new(shape: MacSecKeyList, location_name: "macSecKeys"))
742
749
  Interconnect.struct_class = Types::Interconnect
743
750
 
744
751
  InterconnectList.member = Shapes::ShapeRef.new(shape: Interconnect)
@@ -258,16 +258,16 @@ module Aws::DirectConnect
258
258
  end
259
259
 
260
260
  # @!attribute [rw] connection_id
261
- # The ID of the dedicated connection (dxcon-xxxx), or the ID of the
262
- # LAG (dxlag-xxxx).
261
+ # The ID of the dedicated connection (dxcon-xxxx), interconnect
262
+ # (dxcon-xxxx), or LAG (dxlag-xxxx).
263
263
  #
264
- # You can use DescribeConnections or DescribeLags to retrieve
265
- # connection ID.
264
+ # You can use DescribeConnections, DescribeInterconnects, or
265
+ # DescribeLags to retrieve connection ID.
266
266
  # @return [String]
267
267
  #
268
268
  # @!attribute [rw] secret_arn
269
269
  # The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret
270
- # key to associate with the dedicated connection.
270
+ # key to associate with the connection.
271
271
  #
272
272
  # You can use DescribeConnections or DescribeLags to retrieve the MAC
273
273
  # Security (MACsec) secret key.
@@ -277,8 +277,7 @@ module Aws::DirectConnect
277
277
  # @return [String]
278
278
  #
279
279
  # @!attribute [rw] ckn
280
- # The MAC Security (MACsec) CKN to associate with the dedicated
281
- # connection.
280
+ # The MAC Security (MACsec) CKN to associate with the connection.
282
281
  #
283
282
  # You can create the CKN/CAK pair using an industry standard tool.
284
283
  #
@@ -289,8 +288,7 @@ module Aws::DirectConnect
289
288
  # @return [String]
290
289
  #
291
290
  # @!attribute [rw] cak
292
- # The MAC Security (MACsec) CAK to associate with the dedicated
293
- # connection.
291
+ # The MAC Security (MACsec) CAK to associate with the connection.
294
292
  #
295
293
  # You can create the CKN/CAK pair using an industry standard tool.
296
294
  #
@@ -312,13 +310,13 @@ module Aws::DirectConnect
312
310
  end
313
311
 
314
312
  # @!attribute [rw] connection_id
315
- # The ID of the dedicated connection (dxcon-xxxx), or the ID of the
316
- # LAG (dxlag-xxxx).
313
+ # The ID of the dedicated connection (dxcon-xxxx), interconnect
314
+ # (dxcon-xxxx), or LAG (dxlag-xxxx).
317
315
  # @return [String]
318
316
  #
319
317
  # @!attribute [rw] mac_sec_keys
320
318
  # The MAC Security (MACsec) security keys associated with the
321
- # dedicated connection.
319
+ # connection.
322
320
  # @return [Array<Types::MacSecKey>]
323
321
  #
324
322
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateMacSecKeyResponse AWS API Documentation
@@ -887,6 +885,11 @@ module Aws::DirectConnect
887
885
  # connection.
888
886
  # @return [Array<Types::MacSecKey>]
889
887
  #
888
+ # @!attribute [rw] partner_interconnect_mac_sec_capable
889
+ # Indicates whether the interconnect hosting this connection supports
890
+ # MAC Security (MACsec).
891
+ # @return [Boolean]
892
+ #
890
893
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Connection AWS API Documentation
891
894
  #
892
895
  class Connection < Struct.new(
@@ -911,7 +914,8 @@ module Aws::DirectConnect
911
914
  :mac_sec_capable,
912
915
  :port_encryption_status,
913
916
  :encryption_mode,
914
- :mac_sec_keys)
917
+ :mac_sec_keys,
918
+ :partner_interconnect_mac_sec_capable)
915
919
  SENSITIVE = []
916
920
  include Aws::Structure
917
921
  end
@@ -986,13 +990,13 @@ module Aws::DirectConnect
986
990
  # Indicates whether you want the connection to support MAC Security
987
991
  # (MACsec).
988
992
  #
989
- # MAC Security (MACsec) is only available on dedicated connections.
990
- # For information about MAC Security (MACsec) prerequisties, see
991
- # [MACsec prerequisties][1] in the *Direct Connect User Guide*.
993
+ # MAC Security (MACsec) is unavailable on hosted connections. For
994
+ # information about MAC Security (MACsec) prerequisites, see [MAC
995
+ # Security in Direct Connect][1] in the *Direct Connect User Guide*.
992
996
  #
993
997
  #
994
998
  #
995
- # [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-prerequisites
999
+ # [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/MACSec.html
996
1000
  # @return [Boolean]
997
1001
  #
998
1002
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateConnectionRequest AWS API Documentation
@@ -1165,6 +1169,11 @@ module Aws::DirectConnect
1165
1169
  # The name of the service provider associated with the interconnect.
1166
1170
  # @return [String]
1167
1171
  #
1172
+ # @!attribute [rw] request_mac_sec
1173
+ # Indicates whether you want the interconnect to support MAC Security
1174
+ # (MACsec).
1175
+ # @return [Boolean]
1176
+ #
1168
1177
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateInterconnectRequest AWS API Documentation
1169
1178
  #
1170
1179
  class CreateInterconnectRequest < Struct.new(
@@ -1173,7 +1182,8 @@ module Aws::DirectConnect
1173
1182
  :location,
1174
1183
  :lag_id,
1175
1184
  :tags,
1176
- :provider_name)
1185
+ :provider_name,
1186
+ :request_mac_sec)
1177
1187
  SENSITIVE = []
1178
1188
  include Aws::Structure
1179
1189
  end
@@ -2373,11 +2383,11 @@ module Aws::DirectConnect
2373
2383
  end
2374
2384
 
2375
2385
  # @!attribute [rw] connection_id
2376
- # The ID of the dedicated connection (dxcon-xxxx), or the ID of the
2377
- # LAG (dxlag-xxxx).
2386
+ # The ID of the dedicated connection (dxcon-xxxx), interconnect
2387
+ # (dxcon-xxxx), or LAG (dxlag-xxxx).
2378
2388
  #
2379
- # You can use DescribeConnections or DescribeLags to retrieve
2380
- # connection ID.
2389
+ # You can use DescribeConnections, DescribeInterconnects, or
2390
+ # DescribeLags to retrieve connection ID.
2381
2391
  # @return [String]
2382
2392
  #
2383
2393
  # @!attribute [rw] secret_arn
@@ -2398,13 +2408,13 @@ module Aws::DirectConnect
2398
2408
  end
2399
2409
 
2400
2410
  # @!attribute [rw] connection_id
2401
- # The ID of the dedicated connection (dxcon-xxxx), or the ID of the
2402
- # LAG (dxlag-xxxx).
2411
+ # The ID of the dedicated connection (dxcon-xxxx), interconnect
2412
+ # (dxcon-xxxx), or LAG (dxlag-xxxx).
2403
2413
  # @return [String]
2404
2414
  #
2405
2415
  # @!attribute [rw] mac_sec_keys
2406
2416
  # The MAC Security (MACsec) security keys no longer associated with
2407
- # the dedicated connection.
2417
+ # the connection.
2408
2418
  # @return [Array<Types::MacSecKey>]
2409
2419
  #
2410
2420
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateMacSecKeyResponse AWS API Documentation
@@ -2506,6 +2516,28 @@ module Aws::DirectConnect
2506
2516
  # The name of the service provider associated with the interconnect.
2507
2517
  # @return [String]
2508
2518
  #
2519
+ # @!attribute [rw] mac_sec_capable
2520
+ # Indicates whether the interconnect supports MAC Security (MACsec).
2521
+ # @return [Boolean]
2522
+ #
2523
+ # @!attribute [rw] port_encryption_status
2524
+ # The MAC Security (MACsec) port link status.
2525
+ #
2526
+ # The valid values are `Encryption Up`, which means that there is an
2527
+ # active Connection Key Name, or `Encryption Down`.
2528
+ # @return [String]
2529
+ #
2530
+ # @!attribute [rw] encryption_mode
2531
+ # The MAC Security (MACsec) encryption mode.
2532
+ #
2533
+ # The valid values are `no_encrypt`, `should_encrypt`, and
2534
+ # `must_encrypt`.
2535
+ # @return [String]
2536
+ #
2537
+ # @!attribute [rw] mac_sec_keys
2538
+ # The MAC Security (MACsec) security keys.
2539
+ # @return [Array<Types::MacSecKey>]
2540
+ #
2509
2541
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Interconnect AWS API Documentation
2510
2542
  #
2511
2543
  class Interconnect < Struct.new(
@@ -2523,7 +2555,11 @@ module Aws::DirectConnect
2523
2555
  :aws_logical_device_id,
2524
2556
  :has_logical_redundancy,
2525
2557
  :tags,
2526
- :provider_name)
2558
+ :provider_name,
2559
+ :mac_sec_capable,
2560
+ :port_encryption_status,
2561
+ :encryption_mode,
2562
+ :mac_sec_keys)
2527
2563
  SENSITIVE = []
2528
2564
  include Aws::Structure
2529
2565
  end
@@ -3518,7 +3554,7 @@ module Aws::DirectConnect
3518
3554
  class UntagResourceResponse < Aws::EmptyStructure; end
3519
3555
 
3520
3556
  # @!attribute [rw] connection_id
3521
- # The ID of the dedicated connection.
3557
+ # The ID of the connection.
3522
3558
  #
3523
3559
  # You can use DescribeConnections to retrieve the connection ID.
3524
3560
  # @return [String]
@@ -54,7 +54,7 @@ module Aws::DirectConnect
54
54
  autoload :EndpointProvider, 'aws-sdk-directconnect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-directconnect/endpoints'
56
56
 
57
- GEM_VERSION = '1.92.0'
57
+ GEM_VERSION = '1.94.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -119,6 +120,7 @@ module Aws
119
120
  def port_encryption_status: () -> ::String
120
121
  def encryption_mode: () -> ::String
121
122
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
123
+ def partner_interconnect_mac_sec_capable: () -> bool
122
124
  end
123
125
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_connection_on_interconnect-instance_method
124
126
  def allocate_connection_on_interconnect: (
@@ -154,6 +156,7 @@ module Aws
154
156
  def port_encryption_status: () -> ::String
155
157
  def encryption_mode: () -> ::String
156
158
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
159
+ def partner_interconnect_mac_sec_capable: () -> bool
157
160
  end
158
161
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_hosted_connection-instance_method
159
162
  def allocate_hosted_connection: (
@@ -186,7 +189,7 @@ module Aws
186
189
  def amazon_address: () -> ::String
187
190
  def customer_address: () -> ::String
188
191
  def address_family: () -> ("ipv4" | "ipv6")
189
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
192
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
190
193
  def customer_router_config: () -> ::String
191
194
  def mtu: () -> ::Integer
192
195
  def jumbo_frame_capable: () -> bool
@@ -238,7 +241,7 @@ module Aws
238
241
  def amazon_address: () -> ::String
239
242
  def customer_address: () -> ::String
240
243
  def address_family: () -> ("ipv4" | "ipv6")
241
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
244
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
242
245
  def customer_router_config: () -> ::String
243
246
  def mtu: () -> ::Integer
244
247
  def jumbo_frame_capable: () -> bool
@@ -330,6 +333,7 @@ module Aws
330
333
  def port_encryption_status: () -> ::String
331
334
  def encryption_mode: () -> ::String
332
335
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
336
+ def partner_interconnect_mac_sec_capable: () -> bool
333
337
  end
334
338
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_connection_with_lag-instance_method
335
339
  def associate_connection_with_lag: (
@@ -362,6 +366,7 @@ module Aws
362
366
  def port_encryption_status: () -> ::String
363
367
  def encryption_mode: () -> ::String
364
368
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
369
+ def partner_interconnect_mac_sec_capable: () -> bool
365
370
  end
366
371
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_hosted_connection-instance_method
367
372
  def associate_hosted_connection: (
@@ -399,7 +404,7 @@ module Aws
399
404
  def amazon_address: () -> ::String
400
405
  def customer_address: () -> ::String
401
406
  def address_family: () -> ("ipv4" | "ipv6")
402
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
407
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
403
408
  def customer_router_config: () -> ::String
404
409
  def mtu: () -> ::Integer
405
410
  def jumbo_frame_capable: () -> bool
@@ -442,7 +447,7 @@ module Aws
442
447
 
443
448
  interface _ConfirmPrivateVirtualInterfaceResponseSuccess
444
449
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmPrivateVirtualInterfaceResponse]
445
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
450
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
446
451
  end
447
452
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_private_virtual_interface-instance_method
448
453
  def confirm_private_virtual_interface: (
@@ -454,7 +459,7 @@ module Aws
454
459
 
455
460
  interface _ConfirmPublicVirtualInterfaceResponseSuccess
456
461
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmPublicVirtualInterfaceResponse]
457
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
462
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
458
463
  end
459
464
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_public_virtual_interface-instance_method
460
465
  def confirm_public_virtual_interface: (
@@ -464,7 +469,7 @@ module Aws
464
469
 
465
470
  interface _ConfirmTransitVirtualInterfaceResponseSuccess
466
471
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmTransitVirtualInterfaceResponse]
467
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
472
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
468
473
  end
469
474
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_transit_virtual_interface-instance_method
470
475
  def confirm_transit_virtual_interface: (
@@ -514,6 +519,7 @@ module Aws
514
519
  def port_encryption_status: () -> ::String
515
520
  def encryption_mode: () -> ::String
516
521
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
522
+ def partner_interconnect_mac_sec_capable: () -> bool
517
523
  end
518
524
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_connection-instance_method
519
525
  def create_connection: (
@@ -605,6 +611,10 @@ module Aws
605
611
  def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
606
612
  def tags: () -> ::Array[Types::Tag]
607
613
  def provider_name: () -> ::String
614
+ def mac_sec_capable: () -> bool
615
+ def port_encryption_status: () -> ::String
616
+ def encryption_mode: () -> ::String
617
+ def mac_sec_keys: () -> ::Array[Types::MacSecKey]
608
618
  end
609
619
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_interconnect-instance_method
610
620
  def create_interconnect: (
@@ -618,7 +628,8 @@ module Aws
618
628
  value: ::String?
619
629
  },
620
630
  ],
621
- ?provider_name: ::String
631
+ ?provider_name: ::String,
632
+ ?request_mac_sec: bool
622
633
  ) -> _CreateInterconnectResponseSuccess
623
634
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInterconnectResponseSuccess
624
635
 
@@ -685,7 +696,7 @@ module Aws
685
696
  def amazon_address: () -> ::String
686
697
  def customer_address: () -> ::String
687
698
  def address_family: () -> ("ipv4" | "ipv6")
688
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
699
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
689
700
  def customer_router_config: () -> ::String
690
701
  def mtu: () -> ::Integer
691
702
  def jumbo_frame_capable: () -> bool
@@ -739,7 +750,7 @@ module Aws
739
750
  def amazon_address: () -> ::String
740
751
  def customer_address: () -> ::String
741
752
  def address_family: () -> ("ipv4" | "ipv6")
742
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
753
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
743
754
  def customer_router_config: () -> ::String
744
755
  def mtu: () -> ::Integer
745
756
  def jumbo_frame_capable: () -> bool
@@ -844,6 +855,7 @@ module Aws
844
855
  def port_encryption_status: () -> ::String
845
856
  def encryption_mode: () -> ::String
846
857
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
858
+ def partner_interconnect_mac_sec_capable: () -> bool
847
859
  end
848
860
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_connection-instance_method
849
861
  def delete_connection: (
@@ -925,7 +937,7 @@ module Aws
925
937
 
926
938
  interface _DeleteVirtualInterfaceResponseSuccess
927
939
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVirtualInterfaceResponse]
928
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
940
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
929
941
  end
930
942
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_virtual_interface-instance_method
931
943
  def delete_virtual_interface: (
@@ -1162,6 +1174,7 @@ module Aws
1162
1174
  def port_encryption_status: () -> ::String
1163
1175
  def encryption_mode: () -> ::String
1164
1176
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
1177
+ def partner_interconnect_mac_sec_capable: () -> bool
1165
1178
  end
1166
1179
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#disassociate_connection_from_lag-instance_method
1167
1180
  def disassociate_connection_from_lag: (
@@ -1269,6 +1282,7 @@ module Aws
1269
1282
  def port_encryption_status: () -> ::String
1270
1283
  def encryption_mode: () -> ::String
1271
1284
  def mac_sec_keys: () -> ::Array[Types::MacSecKey]
1285
+ def partner_interconnect_mac_sec_capable: () -> bool
1272
1286
  end
1273
1287
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#update_connection-instance_method
1274
1288
  def update_connection: (
@@ -1357,7 +1371,7 @@ module Aws
1357
1371
  def amazon_address: () -> ::String
1358
1372
  def customer_address: () -> ::String
1359
1373
  def address_family: () -> ("ipv4" | "ipv6")
1360
- def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
1374
+ def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
1361
1375
  def customer_router_config: () -> ::String
1362
1376
  def mtu: () -> ::Integer
1363
1377
  def jumbo_frame_capable: () -> bool
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -155,7 +155,7 @@ module Aws::DirectConnect
155
155
  end
156
156
 
157
157
  class ConfirmPrivateVirtualInterfaceResponse
158
- attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
158
+ attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
159
159
  SENSITIVE: []
160
160
  end
161
161
 
@@ -165,7 +165,7 @@ module Aws::DirectConnect
165
165
  end
166
166
 
167
167
  class ConfirmPublicVirtualInterfaceResponse
168
- attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
168
+ attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
169
169
  SENSITIVE: []
170
170
  end
171
171
 
@@ -176,7 +176,7 @@ module Aws::DirectConnect
176
176
  end
177
177
 
178
178
  class ConfirmTransitVirtualInterfaceResponse
179
- attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
179
+ attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
180
180
  SENSITIVE: []
181
181
  end
182
182
 
@@ -203,6 +203,7 @@ module Aws::DirectConnect
203
203
  attr_accessor port_encryption_status: ::String
204
204
  attr_accessor encryption_mode: ::String
205
205
  attr_accessor mac_sec_keys: ::Array[Types::MacSecKey]
206
+ attr_accessor partner_interconnect_mac_sec_capable: bool
206
207
  SENSITIVE: []
207
208
  end
208
209
 
@@ -279,6 +280,7 @@ module Aws::DirectConnect
279
280
  attr_accessor lag_id: ::String
280
281
  attr_accessor tags: ::Array[Types::Tag]
281
282
  attr_accessor provider_name: ::String
283
+ attr_accessor request_mac_sec: bool
282
284
  SENSITIVE: []
283
285
  end
284
286
 
@@ -395,7 +397,7 @@ module Aws::DirectConnect
395
397
  end
396
398
 
397
399
  class DeleteVirtualInterfaceResponse
398
- attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
400
+ attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
399
401
  SENSITIVE: []
400
402
  end
401
403
 
@@ -644,6 +646,10 @@ module Aws::DirectConnect
644
646
  attr_accessor has_logical_redundancy: ("unknown" | "yes" | "no")
645
647
  attr_accessor tags: ::Array[Types::Tag]
646
648
  attr_accessor provider_name: ::String
649
+ attr_accessor mac_sec_capable: bool
650
+ attr_accessor port_encryption_status: ::String
651
+ attr_accessor encryption_mode: ::String
652
+ attr_accessor mac_sec_keys: ::Array[Types::MacSecKey]
647
653
  SENSITIVE: []
648
654
  end
649
655
 
@@ -960,7 +966,7 @@ module Aws::DirectConnect
960
966
  attr_accessor amazon_address: ::String
961
967
  attr_accessor customer_address: ::String
962
968
  attr_accessor address_family: ("ipv4" | "ipv6")
963
- attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
969
+ attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
964
970
  attr_accessor customer_router_config: ::String
965
971
  attr_accessor mtu: ::Integer
966
972
  attr_accessor jumbo_frame_capable: bool
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-directconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.92.0
4
+ version: 1.94.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement