directconnect.d.ts
128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class DirectConnect extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: DirectConnect.Types.ClientConfiguration)
config: Config & DirectConnect.Types.ClientConfiguration;
/**
* Accepts a proposal request to attach a virtual private gateway or transit gateway to a Direct Connect gateway.
*/
acceptDirectConnectGatewayAssociationProposal(params: DirectConnect.Types.AcceptDirectConnectGatewayAssociationProposalRequest, callback?: (err: AWSError, data: DirectConnect.Types.AcceptDirectConnectGatewayAssociationProposalResult) => void): Request<DirectConnect.Types.AcceptDirectConnectGatewayAssociationProposalResult, AWSError>;
/**
* Accepts a proposal request to attach a virtual private gateway or transit gateway to a Direct Connect gateway.
*/
acceptDirectConnectGatewayAssociationProposal(callback?: (err: AWSError, data: DirectConnect.Types.AcceptDirectConnectGatewayAssociationProposalResult) => void): Request<DirectConnect.Types.AcceptDirectConnectGatewayAssociationProposalResult, AWSError>;
/**
* Deprecated. Use AllocateHostedConnection instead. Creates a hosted connection on an interconnect. Allocates a VLAN number and a specified amount of bandwidth for use by a hosted connection on the specified interconnect. Intended for use by AWS Direct Connect Partners only.
*/
allocateConnectionOnInterconnect(params: DirectConnect.Types.AllocateConnectionOnInterconnectRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Deprecated. Use AllocateHostedConnection instead. Creates a hosted connection on an interconnect. Allocates a VLAN number and a specified amount of bandwidth for use by a hosted connection on the specified interconnect. Intended for use by AWS Direct Connect Partners only.
*/
allocateConnectionOnInterconnect(callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Creates a hosted connection on the specified interconnect or a link aggregation group (LAG) of interconnects. Allocates a VLAN number and a specified amount of capacity (bandwidth) for use by a hosted connection on the specified interconnect or LAG of interconnects. AWS polices the hosted connection for the specified capacity and the AWS Direct Connect Partner must also police the hosted connection for the specified capacity. Intended for use by AWS Direct Connect Partners only.
*/
allocateHostedConnection(params: DirectConnect.Types.AllocateHostedConnectionRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Creates a hosted connection on the specified interconnect or a link aggregation group (LAG) of interconnects. Allocates a VLAN number and a specified amount of capacity (bandwidth) for use by a hosted connection on the specified interconnect or LAG of interconnects. AWS polices the hosted connection for the specified capacity and the AWS Direct Connect Partner must also police the hosted connection for the specified capacity. Intended for use by AWS Direct Connect Partners only.
*/
allocateHostedConnection(callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Provisions a private virtual interface to be owned by the specified AWS account. Virtual interfaces created using this action must be confirmed by the owner using ConfirmPrivateVirtualInterface. Until then, the virtual interface is in the Confirming state and is not available to handle traffic.
*/
allocatePrivateVirtualInterface(params: DirectConnect.Types.AllocatePrivateVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Provisions a private virtual interface to be owned by the specified AWS account. Virtual interfaces created using this action must be confirmed by the owner using ConfirmPrivateVirtualInterface. Until then, the virtual interface is in the Confirming state and is not available to handle traffic.
*/
allocatePrivateVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Provisions a public virtual interface to be owned by the specified AWS account. The owner of a connection calls this function to provision a public virtual interface to be owned by the specified AWS account. Virtual interfaces created using this function must be confirmed by the owner using ConfirmPublicVirtualInterface. Until this step has been completed, the virtual interface is in the confirming state and is not available to handle traffic. When creating an IPv6 public virtual interface, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses.
*/
allocatePublicVirtualInterface(params: DirectConnect.Types.AllocatePublicVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Provisions a public virtual interface to be owned by the specified AWS account. The owner of a connection calls this function to provision a public virtual interface to be owned by the specified AWS account. Virtual interfaces created using this function must be confirmed by the owner using ConfirmPublicVirtualInterface. Until this step has been completed, the virtual interface is in the confirming state and is not available to handle traffic. When creating an IPv6 public virtual interface, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses.
*/
allocatePublicVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Provisions a transit virtual interface to be owned by the specified AWS account. Use this type of interface to connect a transit gateway to your Direct Connect gateway. The owner of a connection provisions a transit virtual interface to be owned by the specified AWS account. After you create a transit virtual interface, it must be confirmed by the owner using ConfirmTransitVirtualInterface. Until this step has been completed, the transit virtual interface is in the requested state and is not available to handle traffic.
*/
allocateTransitVirtualInterface(params: DirectConnect.Types.AllocateTransitVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.AllocateTransitVirtualInterfaceResult) => void): Request<DirectConnect.Types.AllocateTransitVirtualInterfaceResult, AWSError>;
/**
* Provisions a transit virtual interface to be owned by the specified AWS account. Use this type of interface to connect a transit gateway to your Direct Connect gateway. The owner of a connection provisions a transit virtual interface to be owned by the specified AWS account. After you create a transit virtual interface, it must be confirmed by the owner using ConfirmTransitVirtualInterface. Until this step has been completed, the transit virtual interface is in the requested state and is not available to handle traffic.
*/
allocateTransitVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.AllocateTransitVirtualInterfaceResult) => void): Request<DirectConnect.Types.AllocateTransitVirtualInterfaceResult, AWSError>;
/**
* Associates an existing connection with a link aggregation group (LAG). The connection is interrupted and re-established as a member of the LAG (connectivity to AWS is interrupted). The connection must be hosted on the same AWS Direct Connect endpoint as the LAG, and its bandwidth must match the bandwidth for the LAG. You can re-associate a connection that's currently associated with a different LAG; however, if removing the connection would cause the original LAG to fall below its setting for minimum number of operational connections, the request fails. Any virtual interfaces that are directly associated with the connection are automatically re-associated with the LAG. If the connection was originally associated with a different LAG, the virtual interfaces remain associated with the original LAG. For interconnects, any hosted connections are automatically re-associated with the LAG. If the interconnect was originally associated with a different LAG, the hosted connections remain associated with the original LAG.
*/
associateConnectionWithLag(params: DirectConnect.Types.AssociateConnectionWithLagRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Associates an existing connection with a link aggregation group (LAG). The connection is interrupted and re-established as a member of the LAG (connectivity to AWS is interrupted). The connection must be hosted on the same AWS Direct Connect endpoint as the LAG, and its bandwidth must match the bandwidth for the LAG. You can re-associate a connection that's currently associated with a different LAG; however, if removing the connection would cause the original LAG to fall below its setting for minimum number of operational connections, the request fails. Any virtual interfaces that are directly associated with the connection are automatically re-associated with the LAG. If the connection was originally associated with a different LAG, the virtual interfaces remain associated with the original LAG. For interconnects, any hosted connections are automatically re-associated with the LAG. If the interconnect was originally associated with a different LAG, the hosted connections remain associated with the original LAG.
*/
associateConnectionWithLag(callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Associates a hosted connection and its virtual interfaces with a link aggregation group (LAG) or interconnect. If the target interconnect or LAG has an existing hosted connection with a conflicting VLAN number or IP address, the operation fails. This action temporarily interrupts the hosted connection's connectivity to AWS as it is being migrated. Intended for use by AWS Direct Connect Partners only.
*/
associateHostedConnection(params: DirectConnect.Types.AssociateHostedConnectionRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Associates a hosted connection and its virtual interfaces with a link aggregation group (LAG) or interconnect. If the target interconnect or LAG has an existing hosted connection with a conflicting VLAN number or IP address, the operation fails. This action temporarily interrupts the hosted connection's connectivity to AWS as it is being migrated. Intended for use by AWS Direct Connect Partners only.
*/
associateHostedConnection(callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Associates a virtual interface with a specified link aggregation group (LAG) or connection. Connectivity to AWS is temporarily interrupted as the virtual interface is being migrated. If the target connection or LAG has an associated virtual interface with a conflicting VLAN number or a conflicting IP address, the operation fails. Virtual interfaces associated with a hosted connection cannot be associated with a LAG; hosted connections must be migrated along with their virtual interfaces using AssociateHostedConnection. To reassociate a virtual interface to a new connection or LAG, the requester must own either the virtual interface itself or the connection to which the virtual interface is currently associated. Additionally, the requester must own the connection or LAG for the association.
*/
associateVirtualInterface(params: DirectConnect.Types.AssociateVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Associates a virtual interface with a specified link aggregation group (LAG) or connection. Connectivity to AWS is temporarily interrupted as the virtual interface is being migrated. If the target connection or LAG has an associated virtual interface with a conflicting VLAN number or a conflicting IP address, the operation fails. Virtual interfaces associated with a hosted connection cannot be associated with a LAG; hosted connections must be migrated along with their virtual interfaces using AssociateHostedConnection. To reassociate a virtual interface to a new connection or LAG, the requester must own either the virtual interface itself or the connection to which the virtual interface is currently associated. Additionally, the requester must own the connection or LAG for the association.
*/
associateVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Confirms the creation of the specified hosted connection on an interconnect. Upon creation, the hosted connection is initially in the Ordering state, and remains in this state until the owner confirms creation of the hosted connection.
*/
confirmConnection(params: DirectConnect.Types.ConfirmConnectionRequest, callback?: (err: AWSError, data: DirectConnect.Types.ConfirmConnectionResponse) => void): Request<DirectConnect.Types.ConfirmConnectionResponse, AWSError>;
/**
* Confirms the creation of the specified hosted connection on an interconnect. Upon creation, the hosted connection is initially in the Ordering state, and remains in this state until the owner confirms creation of the hosted connection.
*/
confirmConnection(callback?: (err: AWSError, data: DirectConnect.Types.ConfirmConnectionResponse) => void): Request<DirectConnect.Types.ConfirmConnectionResponse, AWSError>;
/**
* Accepts ownership of a private virtual interface created by another AWS account. After the virtual interface owner makes this call, the virtual interface is created and attached to the specified virtual private gateway or Direct Connect gateway, and is made available to handle traffic.
*/
confirmPrivateVirtualInterface(params: DirectConnect.Types.ConfirmPrivateVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.ConfirmPrivateVirtualInterfaceResponse) => void): Request<DirectConnect.Types.ConfirmPrivateVirtualInterfaceResponse, AWSError>;
/**
* Accepts ownership of a private virtual interface created by another AWS account. After the virtual interface owner makes this call, the virtual interface is created and attached to the specified virtual private gateway or Direct Connect gateway, and is made available to handle traffic.
*/
confirmPrivateVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.ConfirmPrivateVirtualInterfaceResponse) => void): Request<DirectConnect.Types.ConfirmPrivateVirtualInterfaceResponse, AWSError>;
/**
* Accepts ownership of a public virtual interface created by another AWS account. After the virtual interface owner makes this call, the specified virtual interface is created and made available to handle traffic.
*/
confirmPublicVirtualInterface(params: DirectConnect.Types.ConfirmPublicVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.ConfirmPublicVirtualInterfaceResponse) => void): Request<DirectConnect.Types.ConfirmPublicVirtualInterfaceResponse, AWSError>;
/**
* Accepts ownership of a public virtual interface created by another AWS account. After the virtual interface owner makes this call, the specified virtual interface is created and made available to handle traffic.
*/
confirmPublicVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.ConfirmPublicVirtualInterfaceResponse) => void): Request<DirectConnect.Types.ConfirmPublicVirtualInterfaceResponse, AWSError>;
/**
* Accepts ownership of a transit virtual interface created by another AWS account. After the owner of the transit virtual interface makes this call, the specified transit virtual interface is created and made available to handle traffic.
*/
confirmTransitVirtualInterface(params: DirectConnect.Types.ConfirmTransitVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.ConfirmTransitVirtualInterfaceResponse) => void): Request<DirectConnect.Types.ConfirmTransitVirtualInterfaceResponse, AWSError>;
/**
* Accepts ownership of a transit virtual interface created by another AWS account. After the owner of the transit virtual interface makes this call, the specified transit virtual interface is created and made available to handle traffic.
*/
confirmTransitVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.ConfirmTransitVirtualInterfaceResponse) => void): Request<DirectConnect.Types.ConfirmTransitVirtualInterfaceResponse, AWSError>;
/**
* Creates a BGP peer on the specified virtual interface. You must create a BGP peer for the corresponding address family (IPv4/IPv6) in order to access AWS resources that also use that address family. If logical redundancy is not supported by the connection, interconnect, or LAG, the BGP peer cannot be in the same address family as an existing BGP peer on the virtual interface. When creating a IPv6 BGP peer, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses. For a public virtual interface, the Autonomous System Number (ASN) must be private or already whitelisted for the virtual interface.
*/
createBGPPeer(params: DirectConnect.Types.CreateBGPPeerRequest, callback?: (err: AWSError, data: DirectConnect.Types.CreateBGPPeerResponse) => void): Request<DirectConnect.Types.CreateBGPPeerResponse, AWSError>;
/**
* Creates a BGP peer on the specified virtual interface. You must create a BGP peer for the corresponding address family (IPv4/IPv6) in order to access AWS resources that also use that address family. If logical redundancy is not supported by the connection, interconnect, or LAG, the BGP peer cannot be in the same address family as an existing BGP peer on the virtual interface. When creating a IPv6 BGP peer, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses. For a public virtual interface, the Autonomous System Number (ASN) must be private or already whitelisted for the virtual interface.
*/
createBGPPeer(callback?: (err: AWSError, data: DirectConnect.Types.CreateBGPPeerResponse) => void): Request<DirectConnect.Types.CreateBGPPeerResponse, AWSError>;
/**
* Creates a connection between a customer network and a specific AWS Direct Connect location. A connection links your internal network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an AWS Direct Connect router. To find the locations for your Region, use DescribeLocations. You can automatically add the new connection to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new connection is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no connection is created.
*/
createConnection(params: DirectConnect.Types.CreateConnectionRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Creates a connection between a customer network and a specific AWS Direct Connect location. A connection links your internal network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an AWS Direct Connect router. To find the locations for your Region, use DescribeLocations. You can automatically add the new connection to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new connection is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no connection is created.
*/
createConnection(callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Creates a Direct Connect gateway, which is an intermediate object that enables you to connect a set of virtual interfaces and virtual private gateways. A Direct Connect gateway is global and visible in any AWS Region after it is created. The virtual interfaces and virtual private gateways that are connected through a Direct Connect gateway can be in different AWS Regions. This enables you to connect to a VPC in any Region, regardless of the Region in which the virtual interfaces are located, and pass traffic between them.
*/
createDirectConnectGateway(params: DirectConnect.Types.CreateDirectConnectGatewayRequest, callback?: (err: AWSError, data: DirectConnect.Types.CreateDirectConnectGatewayResult) => void): Request<DirectConnect.Types.CreateDirectConnectGatewayResult, AWSError>;
/**
* Creates a Direct Connect gateway, which is an intermediate object that enables you to connect a set of virtual interfaces and virtual private gateways. A Direct Connect gateway is global and visible in any AWS Region after it is created. The virtual interfaces and virtual private gateways that are connected through a Direct Connect gateway can be in different AWS Regions. This enables you to connect to a VPC in any Region, regardless of the Region in which the virtual interfaces are located, and pass traffic between them.
*/
createDirectConnectGateway(callback?: (err: AWSError, data: DirectConnect.Types.CreateDirectConnectGatewayResult) => void): Request<DirectConnect.Types.CreateDirectConnectGatewayResult, AWSError>;
/**
* Creates an association between a Direct Connect gateway and a virtual private gateway. The virtual private gateway must be attached to a VPC and must not be associated with another Direct Connect gateway.
*/
createDirectConnectGatewayAssociation(params: DirectConnect.Types.CreateDirectConnectGatewayAssociationRequest, callback?: (err: AWSError, data: DirectConnect.Types.CreateDirectConnectGatewayAssociationResult) => void): Request<DirectConnect.Types.CreateDirectConnectGatewayAssociationResult, AWSError>;
/**
* Creates an association between a Direct Connect gateway and a virtual private gateway. The virtual private gateway must be attached to a VPC and must not be associated with another Direct Connect gateway.
*/
createDirectConnectGatewayAssociation(callback?: (err: AWSError, data: DirectConnect.Types.CreateDirectConnectGatewayAssociationResult) => void): Request<DirectConnect.Types.CreateDirectConnectGatewayAssociationResult, AWSError>;
/**
* Creates a proposal to associate the specified virtual private gateway or transit gateway with the specified Direct Connect gateway. You can only associate a Direct Connect gateway and virtual private gateway or transit gateway when the account that owns the Direct Connect gateway and the account that owns the virtual private gateway or transit gateway have the same AWS Payer ID.
*/
createDirectConnectGatewayAssociationProposal(params: DirectConnect.Types.CreateDirectConnectGatewayAssociationProposalRequest, callback?: (err: AWSError, data: DirectConnect.Types.CreateDirectConnectGatewayAssociationProposalResult) => void): Request<DirectConnect.Types.CreateDirectConnectGatewayAssociationProposalResult, AWSError>;
/**
* Creates a proposal to associate the specified virtual private gateway or transit gateway with the specified Direct Connect gateway. You can only associate a Direct Connect gateway and virtual private gateway or transit gateway when the account that owns the Direct Connect gateway and the account that owns the virtual private gateway or transit gateway have the same AWS Payer ID.
*/
createDirectConnectGatewayAssociationProposal(callback?: (err: AWSError, data: DirectConnect.Types.CreateDirectConnectGatewayAssociationProposalResult) => void): Request<DirectConnect.Types.CreateDirectConnectGatewayAssociationProposalResult, AWSError>;
/**
* Creates an interconnect between an AWS Direct Connect Partner's network and a specific AWS Direct Connect location. An interconnect is a connection that is capable of hosting other connections. The AWS Direct Connect partner can use an interconnect to provide AWS Direct Connect hosted connections to customers through their own network services. Like a standard connection, an interconnect links the partner's network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end is connected to the partner's router, the other to an AWS Direct Connect router. You can automatically add the new interconnect to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new interconnect is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no interconnect is created. For each end customer, the AWS Direct Connect Partner provisions a connection on their interconnect by calling AllocateHostedConnection. The end customer can then connect to AWS resources by creating a virtual interface on their connection, using the VLAN assigned to them by the AWS Direct Connect Partner. Intended for use by AWS Direct Connect Partners only.
*/
createInterconnect(params: DirectConnect.Types.CreateInterconnectRequest, callback?: (err: AWSError, data: DirectConnect.Types.Interconnect) => void): Request<DirectConnect.Types.Interconnect, AWSError>;
/**
* Creates an interconnect between an AWS Direct Connect Partner's network and a specific AWS Direct Connect location. An interconnect is a connection that is capable of hosting other connections. The AWS Direct Connect partner can use an interconnect to provide AWS Direct Connect hosted connections to customers through their own network services. Like a standard connection, an interconnect links the partner's network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end is connected to the partner's router, the other to an AWS Direct Connect router. You can automatically add the new interconnect to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new interconnect is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no interconnect is created. For each end customer, the AWS Direct Connect Partner provisions a connection on their interconnect by calling AllocateHostedConnection. The end customer can then connect to AWS resources by creating a virtual interface on their connection, using the VLAN assigned to them by the AWS Direct Connect Partner. Intended for use by AWS Direct Connect Partners only.
*/
createInterconnect(callback?: (err: AWSError, data: DirectConnect.Types.Interconnect) => void): Request<DirectConnect.Types.Interconnect, AWSError>;
/**
* Creates a link aggregation group (LAG) with the specified number of bundled physical connections between the customer network and a specific AWS Direct Connect location. A LAG is a logical interface that uses the Link Aggregation Control Protocol (LACP) to aggregate multiple interfaces, enabling you to treat them as a single interface. All connections in a LAG must use the same bandwidth and must terminate at the same AWS Direct Connect endpoint. You can have up to 10 connections per LAG. Regardless of this limit, if you request more connections for the LAG than AWS Direct Connect can allocate on a single endpoint, no LAG is created. You can specify an existing physical connection or interconnect to include in the LAG (which counts towards the total number of connections). Doing so interrupts the current physical connection or hosted connections, and re-establishes them as a member of the LAG. The LAG will be created on the same AWS Direct Connect endpoint to which the connection terminates. Any virtual interfaces associated with the connection are automatically disassociated and re-associated with the LAG. The connection ID does not change. If the AWS account used to create a LAG is a registered AWS Direct Connect Partner, the LAG is automatically enabled to host sub-connections. For a LAG owned by a partner, any associated virtual interfaces cannot be directly configured.
*/
createLag(params: DirectConnect.Types.CreateLagRequest, callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
/**
* Creates a link aggregation group (LAG) with the specified number of bundled physical connections between the customer network and a specific AWS Direct Connect location. A LAG is a logical interface that uses the Link Aggregation Control Protocol (LACP) to aggregate multiple interfaces, enabling you to treat them as a single interface. All connections in a LAG must use the same bandwidth and must terminate at the same AWS Direct Connect endpoint. You can have up to 10 connections per LAG. Regardless of this limit, if you request more connections for the LAG than AWS Direct Connect can allocate on a single endpoint, no LAG is created. You can specify an existing physical connection or interconnect to include in the LAG (which counts towards the total number of connections). Doing so interrupts the current physical connection or hosted connections, and re-establishes them as a member of the LAG. The LAG will be created on the same AWS Direct Connect endpoint to which the connection terminates. Any virtual interfaces associated with the connection are automatically disassociated and re-associated with the LAG. The connection ID does not change. If the AWS account used to create a LAG is a registered AWS Direct Connect Partner, the LAG is automatically enabled to host sub-connections. For a LAG owned by a partner, any associated virtual interfaces cannot be directly configured.
*/
createLag(callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
/**
* Creates a private virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A private virtual interface can be connected to either a Direct Connect gateway or a Virtual Private Gateway (VGW). Connecting the private virtual interface to a Direct Connect gateway enables the possibility for connecting to multiple VPCs, including VPCs in different AWS Regions. Connecting the private virtual interface to a VGW only provides access to a single VPC within the same Region.
*/
createPrivateVirtualInterface(params: DirectConnect.Types.CreatePrivateVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Creates a private virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A private virtual interface can be connected to either a Direct Connect gateway or a Virtual Private Gateway (VGW). Connecting the private virtual interface to a Direct Connect gateway enables the possibility for connecting to multiple VPCs, including VPCs in different AWS Regions. Connecting the private virtual interface to a VGW only provides access to a single VPC within the same Region.
*/
createPrivateVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Creates a public virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A public virtual interface supports sending traffic to public services of AWS such as Amazon S3. When creating an IPv6 public virtual interface (addressFamily is ipv6), leave the customer and amazon address fields blank to use auto-assigned IPv6 space. Custom IPv6 addresses are not supported.
*/
createPublicVirtualInterface(params: DirectConnect.Types.CreatePublicVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Creates a public virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A public virtual interface supports sending traffic to public services of AWS such as Amazon S3. When creating an IPv6 public virtual interface (addressFamily is ipv6), leave the customer and amazon address fields blank to use auto-assigned IPv6 space. Custom IPv6 addresses are not supported.
*/
createPublicVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Creates a transit virtual interface. A transit virtual interface should be used to access one or more transit gateways associated with Direct Connect gateways. A transit virtual interface enables the connection of multiple VPCs attached to a transit gateway to a Direct Connect gateway. If you associate your transit gateway with one or more Direct Connect gateways, the Autonomous System Number (ASN) used by the transit gateway and the Direct Connect gateway must be different. For example, if you use the default ASN 64512 for both your the transit gateway and Direct Connect gateway, the association request fails.
*/
createTransitVirtualInterface(params: DirectConnect.Types.CreateTransitVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.CreateTransitVirtualInterfaceResult) => void): Request<DirectConnect.Types.CreateTransitVirtualInterfaceResult, AWSError>;
/**
* Creates a transit virtual interface. A transit virtual interface should be used to access one or more transit gateways associated with Direct Connect gateways. A transit virtual interface enables the connection of multiple VPCs attached to a transit gateway to a Direct Connect gateway. If you associate your transit gateway with one or more Direct Connect gateways, the Autonomous System Number (ASN) used by the transit gateway and the Direct Connect gateway must be different. For example, if you use the default ASN 64512 for both your the transit gateway and Direct Connect gateway, the association request fails.
*/
createTransitVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.CreateTransitVirtualInterfaceResult) => void): Request<DirectConnect.Types.CreateTransitVirtualInterfaceResult, AWSError>;
/**
* Deletes the specified BGP peer on the specified virtual interface with the specified customer address and ASN. You cannot delete the last BGP peer from a virtual interface.
*/
deleteBGPPeer(params: DirectConnect.Types.DeleteBGPPeerRequest, callback?: (err: AWSError, data: DirectConnect.Types.DeleteBGPPeerResponse) => void): Request<DirectConnect.Types.DeleteBGPPeerResponse, AWSError>;
/**
* Deletes the specified BGP peer on the specified virtual interface with the specified customer address and ASN. You cannot delete the last BGP peer from a virtual interface.
*/
deleteBGPPeer(callback?: (err: AWSError, data: DirectConnect.Types.DeleteBGPPeerResponse) => void): Request<DirectConnect.Types.DeleteBGPPeerResponse, AWSError>;
/**
* Deletes the specified connection. Deleting a connection only stops the AWS Direct Connect port hour and data transfer charges. If you are partnering with any third parties to connect with the AWS Direct Connect location, you must cancel your service with them separately.
*/
deleteConnection(params: DirectConnect.Types.DeleteConnectionRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Deletes the specified connection. Deleting a connection only stops the AWS Direct Connect port hour and data transfer charges. If you are partnering with any third parties to connect with the AWS Direct Connect location, you must cancel your service with them separately.
*/
deleteConnection(callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Deletes the specified Direct Connect gateway. You must first delete all virtual interfaces that are attached to the Direct Connect gateway and disassociate all virtual private gateways associated with the Direct Connect gateway.
*/
deleteDirectConnectGateway(params: DirectConnect.Types.DeleteDirectConnectGatewayRequest, callback?: (err: AWSError, data: DirectConnect.Types.DeleteDirectConnectGatewayResult) => void): Request<DirectConnect.Types.DeleteDirectConnectGatewayResult, AWSError>;
/**
* Deletes the specified Direct Connect gateway. You must first delete all virtual interfaces that are attached to the Direct Connect gateway and disassociate all virtual private gateways associated with the Direct Connect gateway.
*/
deleteDirectConnectGateway(callback?: (err: AWSError, data: DirectConnect.Types.DeleteDirectConnectGatewayResult) => void): Request<DirectConnect.Types.DeleteDirectConnectGatewayResult, AWSError>;
/**
* Deletes the association between the specified Direct Connect gateway and virtual private gateway. We recommend that you specify the associationID to delete the association. Alternatively, if you own virtual gateway and a Direct Connect gateway association, you can specify the virtualGatewayId and directConnectGatewayId to delete an association.
*/
deleteDirectConnectGatewayAssociation(params: DirectConnect.Types.DeleteDirectConnectGatewayAssociationRequest, callback?: (err: AWSError, data: DirectConnect.Types.DeleteDirectConnectGatewayAssociationResult) => void): Request<DirectConnect.Types.DeleteDirectConnectGatewayAssociationResult, AWSError>;
/**
* Deletes the association between the specified Direct Connect gateway and virtual private gateway. We recommend that you specify the associationID to delete the association. Alternatively, if you own virtual gateway and a Direct Connect gateway association, you can specify the virtualGatewayId and directConnectGatewayId to delete an association.
*/
deleteDirectConnectGatewayAssociation(callback?: (err: AWSError, data: DirectConnect.Types.DeleteDirectConnectGatewayAssociationResult) => void): Request<DirectConnect.Types.DeleteDirectConnectGatewayAssociationResult, AWSError>;
/**
* Deletes the association proposal request between the specified Direct Connect gateway and virtual private gateway or transit gateway.
*/
deleteDirectConnectGatewayAssociationProposal(params: DirectConnect.Types.DeleteDirectConnectGatewayAssociationProposalRequest, callback?: (err: AWSError, data: DirectConnect.Types.DeleteDirectConnectGatewayAssociationProposalResult) => void): Request<DirectConnect.Types.DeleteDirectConnectGatewayAssociationProposalResult, AWSError>;
/**
* Deletes the association proposal request between the specified Direct Connect gateway and virtual private gateway or transit gateway.
*/
deleteDirectConnectGatewayAssociationProposal(callback?: (err: AWSError, data: DirectConnect.Types.DeleteDirectConnectGatewayAssociationProposalResult) => void): Request<DirectConnect.Types.DeleteDirectConnectGatewayAssociationProposalResult, AWSError>;
/**
* Deletes the specified interconnect. Intended for use by AWS Direct Connect Partners only.
*/
deleteInterconnect(params: DirectConnect.Types.DeleteInterconnectRequest, callback?: (err: AWSError, data: DirectConnect.Types.DeleteInterconnectResponse) => void): Request<DirectConnect.Types.DeleteInterconnectResponse, AWSError>;
/**
* Deletes the specified interconnect. Intended for use by AWS Direct Connect Partners only.
*/
deleteInterconnect(callback?: (err: AWSError, data: DirectConnect.Types.DeleteInterconnectResponse) => void): Request<DirectConnect.Types.DeleteInterconnectResponse, AWSError>;
/**
* Deletes the specified link aggregation group (LAG). You cannot delete a LAG if it has active virtual interfaces or hosted connections.
*/
deleteLag(params: DirectConnect.Types.DeleteLagRequest, callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
/**
* Deletes the specified link aggregation group (LAG). You cannot delete a LAG if it has active virtual interfaces or hosted connections.
*/
deleteLag(callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
/**
* Deletes a virtual interface.
*/
deleteVirtualInterface(params: DirectConnect.Types.DeleteVirtualInterfaceRequest, callback?: (err: AWSError, data: DirectConnect.Types.DeleteVirtualInterfaceResponse) => void): Request<DirectConnect.Types.DeleteVirtualInterfaceResponse, AWSError>;
/**
* Deletes a virtual interface.
*/
deleteVirtualInterface(callback?: (err: AWSError, data: DirectConnect.Types.DeleteVirtualInterfaceResponse) => void): Request<DirectConnect.Types.DeleteVirtualInterfaceResponse, AWSError>;
/**
* Deprecated. Use DescribeLoa instead. Gets the LOA-CFA for a connection. The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that your APN partner or service provider uses when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
*/
describeConnectionLoa(params: DirectConnect.Types.DescribeConnectionLoaRequest, callback?: (err: AWSError, data: DirectConnect.Types.DescribeConnectionLoaResponse) => void): Request<DirectConnect.Types.DescribeConnectionLoaResponse, AWSError>;
/**
* Deprecated. Use DescribeLoa instead. Gets the LOA-CFA for a connection. The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that your APN partner or service provider uses when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
*/
describeConnectionLoa(callback?: (err: AWSError, data: DirectConnect.Types.DescribeConnectionLoaResponse) => void): Request<DirectConnect.Types.DescribeConnectionLoaResponse, AWSError>;
/**
* Displays the specified connection or all connections in this Region.
*/
describeConnections(params: DirectConnect.Types.DescribeConnectionsRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connections) => void): Request<DirectConnect.Types.Connections, AWSError>;
/**
* Displays the specified connection or all connections in this Region.
*/
describeConnections(callback?: (err: AWSError, data: DirectConnect.Types.Connections) => void): Request<DirectConnect.Types.Connections, AWSError>;
/**
* Deprecated. Use DescribeHostedConnections instead. Lists the connections that have been provisioned on the specified interconnect. Intended for use by AWS Direct Connect Partners only.
*/
describeConnectionsOnInterconnect(params: DirectConnect.Types.DescribeConnectionsOnInterconnectRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connections) => void): Request<DirectConnect.Types.Connections, AWSError>;
/**
* Deprecated. Use DescribeHostedConnections instead. Lists the connections that have been provisioned on the specified interconnect. Intended for use by AWS Direct Connect Partners only.
*/
describeConnectionsOnInterconnect(callback?: (err: AWSError, data: DirectConnect.Types.Connections) => void): Request<DirectConnect.Types.Connections, AWSError>;
/**
* Describes one or more association proposals for connection between a virtual private gateway or transit gateway and a Direct Connect gateway.
*/
describeDirectConnectGatewayAssociationProposals(params: DirectConnect.Types.DescribeDirectConnectGatewayAssociationProposalsRequest, callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewayAssociationProposalsResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewayAssociationProposalsResult, AWSError>;
/**
* Describes one or more association proposals for connection between a virtual private gateway or transit gateway and a Direct Connect gateway.
*/
describeDirectConnectGatewayAssociationProposals(callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewayAssociationProposalsResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewayAssociationProposalsResult, AWSError>;
/**
* Lists the associations between your Direct Connect gateways and virtual private gateways. You must specify a Direct Connect gateway, a virtual private gateway, or both. If you specify a Direct Connect gateway, the response contains all virtual private gateways associated with the Direct Connect gateway. If you specify a virtual private gateway, the response contains all Direct Connect gateways associated with the virtual private gateway. If you specify both, the response contains the association between the Direct Connect gateway and the virtual private gateway.
*/
describeDirectConnectGatewayAssociations(params: DirectConnect.Types.DescribeDirectConnectGatewayAssociationsRequest, callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewayAssociationsResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewayAssociationsResult, AWSError>;
/**
* Lists the associations between your Direct Connect gateways and virtual private gateways. You must specify a Direct Connect gateway, a virtual private gateway, or both. If you specify a Direct Connect gateway, the response contains all virtual private gateways associated with the Direct Connect gateway. If you specify a virtual private gateway, the response contains all Direct Connect gateways associated with the virtual private gateway. If you specify both, the response contains the association between the Direct Connect gateway and the virtual private gateway.
*/
describeDirectConnectGatewayAssociations(callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewayAssociationsResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewayAssociationsResult, AWSError>;
/**
* Lists the attachments between your Direct Connect gateways and virtual interfaces. You must specify a Direct Connect gateway, a virtual interface, or both. If you specify a Direct Connect gateway, the response contains all virtual interfaces attached to the Direct Connect gateway. If you specify a virtual interface, the response contains all Direct Connect gateways attached to the virtual interface. If you specify both, the response contains the attachment between the Direct Connect gateway and the virtual interface.
*/
describeDirectConnectGatewayAttachments(params: DirectConnect.Types.DescribeDirectConnectGatewayAttachmentsRequest, callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewayAttachmentsResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewayAttachmentsResult, AWSError>;
/**
* Lists the attachments between your Direct Connect gateways and virtual interfaces. You must specify a Direct Connect gateway, a virtual interface, or both. If you specify a Direct Connect gateway, the response contains all virtual interfaces attached to the Direct Connect gateway. If you specify a virtual interface, the response contains all Direct Connect gateways attached to the virtual interface. If you specify both, the response contains the attachment between the Direct Connect gateway and the virtual interface.
*/
describeDirectConnectGatewayAttachments(callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewayAttachmentsResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewayAttachmentsResult, AWSError>;
/**
* Lists all your Direct Connect gateways or only the specified Direct Connect gateway. Deleted Direct Connect gateways are not returned.
*/
describeDirectConnectGateways(params: DirectConnect.Types.DescribeDirectConnectGatewaysRequest, callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewaysResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewaysResult, AWSError>;
/**
* Lists all your Direct Connect gateways or only the specified Direct Connect gateway. Deleted Direct Connect gateways are not returned.
*/
describeDirectConnectGateways(callback?: (err: AWSError, data: DirectConnect.Types.DescribeDirectConnectGatewaysResult) => void): Request<DirectConnect.Types.DescribeDirectConnectGatewaysResult, AWSError>;
/**
* Lists the hosted connections that have been provisioned on the specified interconnect or link aggregation group (LAG). Intended for use by AWS Direct Connect Partners only.
*/
describeHostedConnections(params: DirectConnect.Types.DescribeHostedConnectionsRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connections) => void): Request<DirectConnect.Types.Connections, AWSError>;
/**
* Lists the hosted connections that have been provisioned on the specified interconnect or link aggregation group (LAG). Intended for use by AWS Direct Connect Partners only.
*/
describeHostedConnections(callback?: (err: AWSError, data: DirectConnect.Types.Connections) => void): Request<DirectConnect.Types.Connections, AWSError>;
/**
* Deprecated. Use DescribeLoa instead. Gets the LOA-CFA for the specified interconnect. The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
*/
describeInterconnectLoa(params: DirectConnect.Types.DescribeInterconnectLoaRequest, callback?: (err: AWSError, data: DirectConnect.Types.DescribeInterconnectLoaResponse) => void): Request<DirectConnect.Types.DescribeInterconnectLoaResponse, AWSError>;
/**
* Deprecated. Use DescribeLoa instead. Gets the LOA-CFA for the specified interconnect. The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
*/
describeInterconnectLoa(callback?: (err: AWSError, data: DirectConnect.Types.DescribeInterconnectLoaResponse) => void): Request<DirectConnect.Types.DescribeInterconnectLoaResponse, AWSError>;
/**
* Lists the interconnects owned by the AWS account or only the specified interconnect.
*/
describeInterconnects(params: DirectConnect.Types.DescribeInterconnectsRequest, callback?: (err: AWSError, data: DirectConnect.Types.Interconnects) => void): Request<DirectConnect.Types.Interconnects, AWSError>;
/**
* Lists the interconnects owned by the AWS account or only the specified interconnect.
*/
describeInterconnects(callback?: (err: AWSError, data: DirectConnect.Types.Interconnects) => void): Request<DirectConnect.Types.Interconnects, AWSError>;
/**
* Describes all your link aggregation groups (LAG) or the specified LAG.
*/
describeLags(params: DirectConnect.Types.DescribeLagsRequest, callback?: (err: AWSError, data: DirectConnect.Types.Lags) => void): Request<DirectConnect.Types.Lags, AWSError>;
/**
* Describes all your link aggregation groups (LAG) or the specified LAG.
*/
describeLags(callback?: (err: AWSError, data: DirectConnect.Types.Lags) => void): Request<DirectConnect.Types.Lags, AWSError>;
/**
* Gets the LOA-CFA for a connection, interconnect, or link aggregation group (LAG). The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
*/
describeLoa(params: DirectConnect.Types.DescribeLoaRequest, callback?: (err: AWSError, data: DirectConnect.Types.Loa) => void): Request<DirectConnect.Types.Loa, AWSError>;
/**
* Gets the LOA-CFA for a connection, interconnect, or link aggregation group (LAG). The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
*/
describeLoa(callback?: (err: AWSError, data: DirectConnect.Types.Loa) => void): Request<DirectConnect.Types.Loa, AWSError>;
/**
* Lists the AWS Direct Connect locations in the current AWS Region. These are the locations that can be selected when calling CreateConnection or CreateInterconnect.
*/
describeLocations(callback?: (err: AWSError, data: DirectConnect.Types.Locations) => void): Request<DirectConnect.Types.Locations, AWSError>;
/**
* Describes the tags associated with the specified AWS Direct Connect resources.
*/
describeTags(params: DirectConnect.Types.DescribeTagsRequest, callback?: (err: AWSError, data: DirectConnect.Types.DescribeTagsResponse) => void): Request<DirectConnect.Types.DescribeTagsResponse, AWSError>;
/**
* Describes the tags associated with the specified AWS Direct Connect resources.
*/
describeTags(callback?: (err: AWSError, data: DirectConnect.Types.DescribeTagsResponse) => void): Request<DirectConnect.Types.DescribeTagsResponse, AWSError>;
/**
* Lists the virtual private gateways owned by the AWS account. You can create one or more AWS Direct Connect private virtual interfaces linked to a virtual private gateway.
*/
describeVirtualGateways(callback?: (err: AWSError, data: DirectConnect.Types.VirtualGateways) => void): Request<DirectConnect.Types.VirtualGateways, AWSError>;
/**
* Displays all virtual interfaces for an AWS account. Virtual interfaces deleted fewer than 15 minutes before you make the request are also returned. If you specify a connection ID, only the virtual interfaces associated with the connection are returned. If you specify a virtual interface ID, then only a single virtual interface is returned. A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect location and the customer network.
*/
describeVirtualInterfaces(params: DirectConnect.Types.DescribeVirtualInterfacesRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterfaces) => void): Request<DirectConnect.Types.VirtualInterfaces, AWSError>;
/**
* Displays all virtual interfaces for an AWS account. Virtual interfaces deleted fewer than 15 minutes before you make the request are also returned. If you specify a connection ID, only the virtual interfaces associated with the connection are returned. If you specify a virtual interface ID, then only a single virtual interface is returned. A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect location and the customer network.
*/
describeVirtualInterfaces(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterfaces) => void): Request<DirectConnect.Types.VirtualInterfaces, AWSError>;
/**
* Disassociates a connection from a link aggregation group (LAG). The connection is interrupted and re-established as a standalone connection (the connection is not deleted; to delete the connection, use the DeleteConnection request). If the LAG has associated virtual interfaces or hosted connections, they remain associated with the LAG. A disassociated connection owned by an AWS Direct Connect Partner is automatically converted to an interconnect. If disassociating the connection would cause the LAG to fall below its setting for minimum number of operational connections, the request fails, except when it's the last member of the LAG. If all connections are disassociated, the LAG continues to exist as an empty LAG with no physical connections.
*/
disassociateConnectionFromLag(params: DirectConnect.Types.DisassociateConnectionFromLagRequest, callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Disassociates a connection from a link aggregation group (LAG). The connection is interrupted and re-established as a standalone connection (the connection is not deleted; to delete the connection, use the DeleteConnection request). If the LAG has associated virtual interfaces or hosted connections, they remain associated with the LAG. A disassociated connection owned by an AWS Direct Connect Partner is automatically converted to an interconnect. If disassociating the connection would cause the LAG to fall below its setting for minimum number of operational connections, the request fails, except when it's the last member of the LAG. If all connections are disassociated, the LAG continues to exist as an empty LAG with no physical connections.
*/
disassociateConnectionFromLag(callback?: (err: AWSError, data: DirectConnect.Types.Connection) => void): Request<DirectConnect.Types.Connection, AWSError>;
/**
* Adds the specified tags to the specified AWS Direct Connect resource. Each resource can have a maximum of 50 tags. Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.
*/
tagResource(params: DirectConnect.Types.TagResourceRequest, callback?: (err: AWSError, data: DirectConnect.Types.TagResourceResponse) => void): Request<DirectConnect.Types.TagResourceResponse, AWSError>;
/**
* Adds the specified tags to the specified AWS Direct Connect resource. Each resource can have a maximum of 50 tags. Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.
*/
tagResource(callback?: (err: AWSError, data: DirectConnect.Types.TagResourceResponse) => void): Request<DirectConnect.Types.TagResourceResponse, AWSError>;
/**
* Removes one or more tags from the specified AWS Direct Connect resource.
*/
untagResource(params: DirectConnect.Types.UntagResourceRequest, callback?: (err: AWSError, data: DirectConnect.Types.UntagResourceResponse) => void): Request<DirectConnect.Types.UntagResourceResponse, AWSError>;
/**
* Removes one or more tags from the specified AWS Direct Connect resource.
*/
untagResource(callback?: (err: AWSError, data: DirectConnect.Types.UntagResourceResponse) => void): Request<DirectConnect.Types.UntagResourceResponse, AWSError>;
/**
* Updates the specified attributes of the Direct Connect gateway association. Add or remove prefixes from the association.
*/
updateDirectConnectGatewayAssociation(params: DirectConnect.Types.UpdateDirectConnectGatewayAssociationRequest, callback?: (err: AWSError, data: DirectConnect.Types.UpdateDirectConnectGatewayAssociationResult) => void): Request<DirectConnect.Types.UpdateDirectConnectGatewayAssociationResult, AWSError>;
/**
* Updates the specified attributes of the Direct Connect gateway association. Add or remove prefixes from the association.
*/
updateDirectConnectGatewayAssociation(callback?: (err: AWSError, data: DirectConnect.Types.UpdateDirectConnectGatewayAssociationResult) => void): Request<DirectConnect.Types.UpdateDirectConnectGatewayAssociationResult, AWSError>;
/**
* Updates the attributes of the specified link aggregation group (LAG). You can update the following attributes: The name of the LAG. The value for the minimum number of connections that must be operational for the LAG itself to be operational. When you create a LAG, the default value for the minimum number of operational connections is zero (0). If you update this value and the number of operational connections falls below the specified value, the LAG automatically goes down to avoid over-utilization of the remaining connections. Adjust this value with care, as it could force the LAG down if it is set higher than the current number of operational connections.
*/
updateLag(params: DirectConnect.Types.UpdateLagRequest, callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
/**
* Updates the attributes of the specified link aggregation group (LAG). You can update the following attributes: The name of the LAG. The value for the minimum number of connections that must be operational for the LAG itself to be operational. When you create a LAG, the default value for the minimum number of operational connections is zero (0). If you update this value and the number of operational connections falls below the specified value, the LAG automatically goes down to avoid over-utilization of the remaining connections. Adjust this value with care, as it could force the LAG down if it is set higher than the current number of operational connections.
*/
updateLag(callback?: (err: AWSError, data: DirectConnect.Types.Lag) => void): Request<DirectConnect.Types.Lag, AWSError>;
/**
* Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
*/
updateVirtualInterfaceAttributes(params: DirectConnect.Types.UpdateVirtualInterfaceAttributesRequest, callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
/**
* Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
*/
updateVirtualInterfaceAttributes(callback?: (err: AWSError, data: DirectConnect.Types.VirtualInterface) => void): Request<DirectConnect.Types.VirtualInterface, AWSError>;
}
declare namespace DirectConnect {
export type ASN = number;
export interface AcceptDirectConnectGatewayAssociationProposalRequest {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId: DirectConnectGatewayId;
/**
* The ID of the request proposal.
*/
proposalId: DirectConnectGatewayAssociationProposalId;
/**
* The ID of the AWS account that owns the virtual private gateway or transit gateway.
*/
associatedGatewayOwnerAccount: OwnerAccount;
/**
* Overrides the Amazon VPC prefixes advertised to the Direct Connect gateway. For information about how to set the prefixes, see Allowed Prefixes in the AWS Direct Connect User Guide.
*/
overrideAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
}
export interface AcceptDirectConnectGatewayAssociationProposalResult {
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
}
export type AddressFamily = "ipv4"|"ipv6"|string;
export interface AllocateConnectionOnInterconnectRequest {
/**
* The bandwidth of the connection. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps. Note that only those AWS Direct Connect Partners who have met specific requirements are allowed to create a 1Gbps, 2Gbps, 5Gbps or 10Gbps hosted connection.
*/
bandwidth: Bandwidth;
/**
* The name of the provisioned connection.
*/
connectionName: ConnectionName;
/**
* The ID of the AWS account of the customer for whom the connection will be provisioned.
*/
ownerAccount: OwnerAccount;
/**
* The ID of the interconnect on which the connection will be provisioned.
*/
interconnectId: InterconnectId;
/**
* The dedicated VLAN provisioned to the connection.
*/
vlan: VLAN;
}
export interface AllocateHostedConnectionRequest {
/**
* The ID of the interconnect or LAG.
*/
connectionId: ConnectionId;
/**
* The ID of the AWS account ID of the customer for the connection.
*/
ownerAccount: OwnerAccount;
/**
* The bandwidth of the connection. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps. Note that only those AWS Direct Connect Partners who have met specific requirements are allowed to create a 1Gbps, 2Gbps, 5Gbps or 10Gbps hosted connection.
*/
bandwidth: Bandwidth;
/**
* The name of the hosted connection.
*/
connectionName: ConnectionName;
/**
* The dedicated VLAN provisioned to the hosted connection.
*/
vlan: VLAN;
/**
* The tags associated with the connection.
*/
tags?: TagList;
}
export interface AllocatePrivateVirtualInterfaceRequest {
/**
* The ID of the connection on which the private virtual interface is provisioned.
*/
connectionId: ConnectionId;
/**
* The ID of the AWS account that owns the virtual private interface.
*/
ownerAccount: OwnerAccount;
/**
* Information about the private virtual interface.
*/
newPrivateVirtualInterfaceAllocation: NewPrivateVirtualInterfaceAllocation;
}
export interface AllocatePublicVirtualInterfaceRequest {
/**
* The ID of the connection on which the public virtual interface is provisioned.
*/
connectionId: ConnectionId;
/**
* The ID of the AWS account that owns the public virtual interface.
*/
ownerAccount: OwnerAccount;
/**
* Information about the public virtual interface.
*/
newPublicVirtualInterfaceAllocation: NewPublicVirtualInterfaceAllocation;
}
export interface AllocateTransitVirtualInterfaceRequest {
/**
* The ID of the connection on which the transit virtual interface is provisioned.
*/
connectionId: ConnectionId;
/**
* The ID of the AWS account that owns the transit virtual interface.
*/
ownerAccount: OwnerAccount;
/**
* Information about the transit virtual interface.
*/
newTransitVirtualInterfaceAllocation: NewTransitVirtualInterfaceAllocation;
}
export interface AllocateTransitVirtualInterfaceResult {
virtualInterface?: VirtualInterface;
}
export type AmazonAddress = string;
export interface AssociateConnectionWithLagRequest {
/**
* The ID of the connection.
*/
connectionId: ConnectionId;
/**
* The ID of the LAG with which to associate the connection.
*/
lagId: LagId;
}
export interface AssociateHostedConnectionRequest {
/**
* The ID of the hosted connection.
*/
connectionId: ConnectionId;
/**
* The ID of the interconnect or the LAG.
*/
parentConnectionId: ConnectionId;
}
export interface AssociateVirtualInterfaceRequest {
/**
* The ID of the virtual interface.
*/
virtualInterfaceId: VirtualInterfaceId;
/**
* The ID of the LAG or connection.
*/
connectionId: ConnectionId;
}
export interface AssociatedGateway {
/**
* The ID of the associated gateway.
*/
id?: GatewayIdentifier;
/**
* The type of associated gateway.
*/
type?: GatewayType;
/**
* The ID of the AWS account that owns the associated virtual private gateway or transit gateway.
*/
ownerAccount?: OwnerAccount;
/**
* The Region where the associated gateway is located.
*/
region?: Region;
}
export type AssociatedGatewayId = string;
export type AvailablePortSpeeds = PortSpeed[];
export type AwsDevice = string;
export type AwsDeviceV2 = string;
export type BGPAuthKey = string;
export interface BGPPeer {
/**
* The ID of the BGP peer.
*/
bgpPeerId?: BGPPeerId;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
*/
asn?: ASN;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The state of the BGP peer. The following are the possible values: verifying: The BGP peering addresses or ASN require validation before the BGP peer can be created. This state applies only to public virtual interfaces. pending: The BGP peer is created, and remains in this state until it is ready to be established. available: The BGP peer is ready to be established. deleting: The BGP peer is being deleted. deleted: The BGP peer is deleted and cannot be established.
*/
bgpPeerState?: BGPPeerState;
/**
* The status of the BGP peer. The following are the possible values: up: The BGP peer is established. This state does not indicate the state of the routing function. Ensure that you are receiving routes over the BGP session. down: The BGP peer is down. unknown: The BGP peer status is not available.
*/
bgpStatus?: BGPStatus;
/**
* The Direct Connect endpoint on which the BGP peer terminates.
*/
awsDeviceV2?: AwsDeviceV2;
}
export type BGPPeerId = string;
export type BGPPeerList = BGPPeer[];
export type BGPPeerState = "verifying"|"pending"|"available"|"deleting"|"deleted"|string;
export type BGPStatus = "up"|"down"|"unknown"|string;
export type Bandwidth = string;
export type BooleanFlag = boolean;
export type CIDR = string;
export interface ConfirmConnectionRequest {
/**
* The ID of the hosted connection.
*/
connectionId: ConnectionId;
}
export interface ConfirmConnectionResponse {
/**
* The state of the connection. The following are the possible values: ordering: The initial state of a hosted connection provisioned on an interconnect. The connection stays in the ordering state until the owner of the hosted connection confirms or declines the connection order. requested: The initial state of a standard connection. The connection stays in the requested state until the Letter of Authorization (LOA) is sent to the customer. pending: The connection has been approved and is being initialized. available: The network link is up and the connection is ready for use. down: The network link is down. deleting: The connection is being deleted. deleted: The connection has been deleted. rejected: A hosted connection in the ordering state enters the rejected state if it is deleted by the customer. unknown: The state of the connection is not available.
*/
connectionState?: ConnectionState;
}
export interface ConfirmPrivateVirtualInterfaceRequest {
/**
* The ID of the virtual interface.
*/
virtualInterfaceId: VirtualInterfaceId;
/**
* The ID of the virtual private gateway.
*/
virtualGatewayId?: VirtualGatewayId;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
}
export interface ConfirmPrivateVirtualInterfaceResponse {
/**
* The state of the virtual interface. The following are the possible values: confirming: The creation of the virtual interface is pending confirmation from the virtual interface owner. If the owner of the virtual interface is different from the owner of the connection on which it is provisioned, then the virtual interface will remain in this state until it is confirmed by the virtual interface owner. verifying: This state only applies to public virtual interfaces. Each public virtual interface needs validation before the virtual interface can be created. pending: A virtual interface is in this state from the time that it is created until the virtual interface is ready to forward traffic. available: A virtual interface that is able to forward traffic. down: A virtual interface that is BGP down. deleting: A virtual interface is in this state immediately after calling DeleteVirtualInterface until it can no longer forward traffic. deleted: A virtual interface that cannot forward traffic. rejected: The virtual interface owner has declined creation of the virtual interface. If a virtual interface in the Confirming state is deleted by the virtual interface owner, the virtual interface enters the Rejected state. unknown: The state of the virtual interface is not available.
*/
virtualInterfaceState?: VirtualInterfaceState;
}
export interface ConfirmPublicVirtualInterfaceRequest {
/**
* The ID of the virtual interface.
*/
virtualInterfaceId: VirtualInterfaceId;
}
export interface ConfirmPublicVirtualInterfaceResponse {
/**
* The state of the virtual interface. The following are the possible values: confirming: The creation of the virtual interface is pending confirmation from the virtual interface owner. If the owner of the virtual interface is different from the owner of the connection on which it is provisioned, then the virtual interface will remain in this state until it is confirmed by the virtual interface owner. verifying: This state only applies to public virtual interfaces. Each public virtual interface needs validation before the virtual interface can be created. pending: A virtual interface is in this state from the time that it is created until the virtual interface is ready to forward traffic. available: A virtual interface that is able to forward traffic. down: A virtual interface that is BGP down. deleting: A virtual interface is in this state immediately after calling DeleteVirtualInterface until it can no longer forward traffic. deleted: A virtual interface that cannot forward traffic. rejected: The virtual interface owner has declined creation of the virtual interface. If a virtual interface in the Confirming state is deleted by the virtual interface owner, the virtual interface enters the Rejected state. unknown: The state of the virtual interface is not available.
*/
virtualInterfaceState?: VirtualInterfaceState;
}
export interface ConfirmTransitVirtualInterfaceRequest {
/**
* The ID of the virtual interface.
*/
virtualInterfaceId: VirtualInterfaceId;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId: DirectConnectGatewayId;
}
export interface ConfirmTransitVirtualInterfaceResponse {
/**
* The state of the virtual interface. The following are the possible values: confirming: The creation of the virtual interface is pending confirmation from the virtual interface owner. If the owner of the virtual interface is different from the owner of the connection on which it is provisioned, then the virtual interface will remain in this state until it is confirmed by the virtual interface owner. verifying: This state only applies to public virtual interfaces. Each public virtual interface needs validation before the virtual interface can be created. pending: A virtual interface is in this state from the time that it is created until the virtual interface is ready to forward traffic. available: A virtual interface that is able to forward traffic. down: A virtual interface that is BGP down. deleting: A virtual interface is in this state immediately after calling DeleteVirtualInterface until it can no longer forward traffic. deleted: A virtual interface that cannot forward traffic. rejected: The virtual interface owner has declined creation of the virtual interface. If a virtual interface in the Confirming state is deleted by the virtual interface owner, the virtual interface enters the Rejected state. unknown: The state of the virtual interface is not available.
*/
virtualInterfaceState?: VirtualInterfaceState;
}
export interface Connection {
/**
* The ID of the AWS account that owns the connection.
*/
ownerAccount?: OwnerAccount;
/**
* The ID of the connection.
*/
connectionId?: ConnectionId;
/**
* The name of the connection.
*/
connectionName?: ConnectionName;
/**
* The state of the connection. The following are the possible values: ordering: The initial state of a hosted connection provisioned on an interconnect. The connection stays in the ordering state until the owner of the hosted connection confirms or declines the connection order. requested: The initial state of a standard connection. The connection stays in the requested state until the Letter of Authorization (LOA) is sent to the customer. pending: The connection has been approved and is being initialized. available: The network link is up and the connection is ready for use. down: The network link is down. deleting: The connection is being deleted. deleted: The connection has been deleted. rejected: A hosted connection in the ordering state enters the rejected state if it is deleted by the customer. unknown: The state of the connection is not available.
*/
connectionState?: ConnectionState;
/**
* The AWS Region where the connection is located.
*/
region?: Region;
/**
* The location of the connection.
*/
location?: LocationCode;
/**
* The bandwidth of the connection.
*/
bandwidth?: Bandwidth;
/**
* The ID of the VLAN.
*/
vlan?: VLAN;
/**
* The name of the AWS Direct Connect service provider associated with the connection.
*/
partnerName?: PartnerName;
/**
* The time of the most recent call to DescribeLoa for this connection.
*/
loaIssueTime?: LoaIssueTime;
/**
* The ID of the LAG.
*/
lagId?: LagId;
/**
* The Direct Connect endpoint on which the physical connection terminates.
*/
awsDevice?: AwsDevice;
/**
* Indicates whether jumbo frames (9001 MTU) are supported.
*/
jumboFrameCapable?: JumboFrameCapable;
/**
* The Direct Connect endpoint on which the physical connection terminates.
*/
awsDeviceV2?: AwsDeviceV2;
/**
* Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).
*/
hasLogicalRedundancy?: HasLogicalRedundancy;
/**
* The tags associated with the connection.
*/
tags?: TagList;
/**
* The name of the service provider associated with the connection.
*/
providerName?: ProviderName;
}
export type ConnectionId = string;
export type ConnectionList = Connection[];
export type ConnectionName = string;
export type ConnectionState = "ordering"|"requested"|"pending"|"available"|"down"|"deleting"|"deleted"|"rejected"|"unknown"|string;
export interface Connections {
/**
* The connections.
*/
connections?: ConnectionList;
}
export type Count = number;
export interface CreateBGPPeerRequest {
/**
* The ID of the virtual interface.
*/
virtualInterfaceId?: VirtualInterfaceId;
/**
* Information about the BGP peer.
*/
newBGPPeer?: NewBGPPeer;
}
export interface CreateBGPPeerResponse {
/**
* The virtual interface.
*/
virtualInterface?: VirtualInterface;
}
export interface CreateConnectionRequest {
/**
* The location of the connection.
*/
location: LocationCode;
/**
* The bandwidth of the connection.
*/
bandwidth: Bandwidth;
/**
* The name of the connection.
*/
connectionName: ConnectionName;
/**
* The ID of the LAG.
*/
lagId?: LagId;
/**
* The tags to associate with the lag.
*/
tags?: TagList;
/**
* The name of the service provider associated with the requested connection.
*/
providerName?: ProviderName;
}
export interface CreateDirectConnectGatewayAssociationProposalRequest {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId: DirectConnectGatewayId;
/**
* The ID of the AWS account that owns the Direct Connect gateway.
*/
directConnectGatewayOwnerAccount: OwnerAccount;
/**
* The ID of the virtual private gateway or transit gateway.
*/
gatewayId: GatewayIdToAssociate;
/**
* The Amazon VPC prefixes to advertise to the Direct Connect gateway.
*/
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
/**
* The Amazon VPC prefixes to no longer advertise to the Direct Connect gateway.
*/
removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
}
export interface CreateDirectConnectGatewayAssociationProposalResult {
/**
* Information about the Direct Connect gateway proposal.
*/
directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal;
}
export interface CreateDirectConnectGatewayAssociationRequest {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId: DirectConnectGatewayId;
/**
* The ID of the virtual private gateway or transit gateway.
*/
gatewayId?: GatewayIdToAssociate;
/**
* The Amazon VPC prefixes to advertise to the Direct Connect gateway This parameter is required when you create an association to a transit gateway. For information about how to set the prefixes, see Allowed Prefixes in the AWS Direct Connect User Guide.
*/
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
/**
* The ID of the virtual private gateway.
*/
virtualGatewayId?: VirtualGatewayId;
}
export interface CreateDirectConnectGatewayAssociationResult {
/**
* The association to be created.
*/
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
}
export interface CreateDirectConnectGatewayRequest {
/**
* The name of the Direct Connect gateway.
*/
directConnectGatewayName: DirectConnectGatewayName;
/**
* The autonomous system number (ASN) for Border Gateway Protocol (BGP) to be configured on the Amazon side of the connection. The ASN must be in the private range of 64,512 to 65,534 or 4,200,000,000 to 4,294,967,294. The default is 64512.
*/
amazonSideAsn?: LongAsn;
}
export interface CreateDirectConnectGatewayResult {
/**
* The Direct Connect gateway.
*/
directConnectGateway?: DirectConnectGateway;
}
export interface CreateInterconnectRequest {
/**
* The name of the interconnect.
*/
interconnectName: InterconnectName;
/**
* The port bandwidth, in Gbps. The possible values are 1 and 10.
*/
bandwidth: Bandwidth;
/**
* The location of the interconnect.
*/
location: LocationCode;
/**
* The ID of the LAG.
*/
lagId?: LagId;
/**
* The tags to associate with the interconnect.
*/
tags?: TagList;
/**
* The name of the service provider associated with the interconnect.
*/
providerName?: ProviderName;
}
export interface CreateLagRequest {
/**
* The number of physical connections initially provisioned and bundled by the LAG.
*/
numberOfConnections: Count;
/**
* The location for the LAG.
*/
location: LocationCode;
/**
* The bandwidth of the individual physical connections bundled by the LAG. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps.
*/
connectionsBandwidth: Bandwidth;
/**
* The name of the LAG.
*/
lagName: LagName;
/**
* The ID of an existing connection to migrate to the LAG.
*/
connectionId?: ConnectionId;
/**
* The tags to associate with the LAG.
*/
tags?: TagList;
/**
* The tags to associate with the automtically created LAGs.
*/
childConnectionTags?: TagList;
/**
* The name of the service provider associated with the LAG.
*/
providerName?: ProviderName;
}
export interface CreatePrivateVirtualInterfaceRequest {
/**
* The ID of the connection.
*/
connectionId: ConnectionId;
/**
* Information about the private virtual interface.
*/
newPrivateVirtualInterface: NewPrivateVirtualInterface;
}
export interface CreatePublicVirtualInterfaceRequest {
/**
* The ID of the connection.
*/
connectionId: ConnectionId;
/**
* Information about the public virtual interface.
*/
newPublicVirtualInterface: NewPublicVirtualInterface;
}
export interface CreateTransitVirtualInterfaceRequest {
/**
* The ID of the connection.
*/
connectionId: ConnectionId;
/**
* Information about the transit virtual interface.
*/
newTransitVirtualInterface: NewTransitVirtualInterface;
}
export interface CreateTransitVirtualInterfaceResult {
virtualInterface?: VirtualInterface;
}
export type CustomerAddress = string;
export interface DeleteBGPPeerRequest {
/**
* The ID of the virtual interface.
*/
virtualInterfaceId?: VirtualInterfaceId;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
*/
asn?: ASN;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The ID of the BGP peer.
*/
bgpPeerId?: BGPPeerId;
}
export interface DeleteBGPPeerResponse {
/**
* The virtual interface.
*/
virtualInterface?: VirtualInterface;
}
export interface DeleteConnectionRequest {
/**
* The ID of the connection.
*/
connectionId: ConnectionId;
}
export interface DeleteDirectConnectGatewayAssociationProposalRequest {
/**
* The ID of the proposal.
*/
proposalId: DirectConnectGatewayAssociationProposalId;
}
export interface DeleteDirectConnectGatewayAssociationProposalResult {
/**
* The ID of the associated gateway.
*/
directConnectGatewayAssociationProposal?: DirectConnectGatewayAssociationProposal;
}
export interface DeleteDirectConnectGatewayAssociationRequest {
/**
* The ID of the Direct Connect gateway association.
*/
associationId?: DirectConnectGatewayAssociationId;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The ID of the virtual private gateway.
*/
virtualGatewayId?: VirtualGatewayId;
}
export interface DeleteDirectConnectGatewayAssociationResult {
/**
* Information about the deleted association.
*/
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
}
export interface DeleteDirectConnectGatewayRequest {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId: DirectConnectGatewayId;
}
export interface DeleteDirectConnectGatewayResult {
/**
* The Direct Connect gateway.
*/
directConnectGateway?: DirectConnectGateway;
}
export interface DeleteInterconnectRequest {
/**
* The ID of the interconnect.
*/
interconnectId: InterconnectId;
}
export interface DeleteInterconnectResponse {
/**
* The state of the interconnect. The following are the possible values: requested: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer. pending: The interconnect is approved, and is being initialized. available: The network link is up, and the interconnect is ready for use. down: The network link is down. deleting: The interconnect is being deleted. deleted: The interconnect is deleted. unknown: The state of the interconnect is not available.
*/
interconnectState?: InterconnectState;
}
export interface DeleteLagRequest {
/**
* The ID of the LAG.
*/
lagId: LagId;
}
export interface DeleteVirtualInterfaceRequest {
/**
* The ID of the virtual interface.
*/
virtualInterfaceId: VirtualInterfaceId;
}
export interface DeleteVirtualInterfaceResponse {
/**
* The state of the virtual interface. The following are the possible values: confirming: The creation of the virtual interface is pending confirmation from the virtual interface owner. If the owner of the virtual interface is different from the owner of the connection on which it is provisioned, then the virtual interface will remain in this state until it is confirmed by the virtual interface owner. verifying: This state only applies to public virtual interfaces. Each public virtual interface needs validation before the virtual interface can be created. pending: A virtual interface is in this state from the time that it is created until the virtual interface is ready to forward traffic. available: A virtual interface that is able to forward traffic. down: A virtual interface that is BGP down. deleting: A virtual interface is in this state immediately after calling DeleteVirtualInterface until it can no longer forward traffic. deleted: A virtual interface that cannot forward traffic. rejected: The virtual interface owner has declined creation of the virtual interface. If a virtual interface in the Confirming state is deleted by the virtual interface owner, the virtual interface enters the Rejected state. unknown: The state of the virtual interface is not available.
*/
virtualInterfaceState?: VirtualInterfaceState;
}
export interface DescribeConnectionLoaRequest {
/**
* The ID of the connection.
*/
connectionId: ConnectionId;
/**
* The name of the APN partner or service provider who establishes connectivity on your behalf. If you specify this parameter, the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.
*/
providerName?: ProviderName;
/**
* The standard media type for the LOA-CFA document. The only supported value is application/pdf.
*/
loaContentType?: LoaContentType;
}
export interface DescribeConnectionLoaResponse {
/**
* The Letter of Authorization - Connecting Facility Assignment (LOA-CFA).
*/
loa?: Loa;
}
export interface DescribeConnectionsOnInterconnectRequest {
/**
* The ID of the interconnect.
*/
interconnectId: InterconnectId;
}
export interface DescribeConnectionsRequest {
/**
* The ID of the connection.
*/
connectionId?: ConnectionId;
}
export interface DescribeDirectConnectGatewayAssociationProposalsRequest {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The ID of the proposal.
*/
proposalId?: DirectConnectGatewayAssociationProposalId;
/**
* The ID of the associated gateway.
*/
associatedGatewayId?: AssociatedGatewayId;
/**
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If MaxResults is given a value larger than 100, only 100 results are returned.
*/
maxResults?: MaxResultSetSize;
/**
* The token for the next page of results.
*/
nextToken?: PaginationToken;
}
export interface DescribeDirectConnectGatewayAssociationProposalsResult {
/**
* Describes the Direct Connect gateway association proposals.
*/
directConnectGatewayAssociationProposals?: DirectConnectGatewayAssociationProposalList;
/**
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
*/
nextToken?: PaginationToken;
}
export interface DescribeDirectConnectGatewayAssociationsRequest {
/**
* The ID of the Direct Connect gateway association.
*/
associationId?: DirectConnectGatewayAssociationId;
/**
* The ID of the associated gateway.
*/
associatedGatewayId?: AssociatedGatewayId;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If MaxResults is given a value larger than 100, only 100 results are returned.
*/
maxResults?: MaxResultSetSize;
/**
* The token provided in the previous call to retrieve the next page.
*/
nextToken?: PaginationToken;
/**
* The ID of the virtual private gateway.
*/
virtualGatewayId?: VirtualGatewayId;
}
export interface DescribeDirectConnectGatewayAssociationsResult {
/**
* Information about the associations.
*/
directConnectGatewayAssociations?: DirectConnectGatewayAssociationList;
/**
* The token to retrieve the next page.
*/
nextToken?: PaginationToken;
}
export interface DescribeDirectConnectGatewayAttachmentsRequest {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The ID of the virtual interface.
*/
virtualInterfaceId?: VirtualInterfaceId;
/**
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If MaxResults is given a value larger than 100, only 100 results are returned.
*/
maxResults?: MaxResultSetSize;
/**
* The token provided in the previous call to retrieve the next page.
*/
nextToken?: PaginationToken;
}
export interface DescribeDirectConnectGatewayAttachmentsResult {
/**
* The attachments.
*/
directConnectGatewayAttachments?: DirectConnectGatewayAttachmentList;
/**
* The token to retrieve the next page.
*/
nextToken?: PaginationToken;
}
export interface DescribeDirectConnectGatewaysRequest {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If MaxResults is given a value larger than 100, only 100 results are returned.
*/
maxResults?: MaxResultSetSize;
/**
* The token provided in the previous call to retrieve the next page.
*/
nextToken?: PaginationToken;
}
export interface DescribeDirectConnectGatewaysResult {
/**
* The Direct Connect gateways.
*/
directConnectGateways?: DirectConnectGatewayList;
/**
* The token to retrieve the next page.
*/
nextToken?: PaginationToken;
}
export interface DescribeHostedConnectionsRequest {
/**
* The ID of the interconnect or LAG.
*/
connectionId: ConnectionId;
}
export interface DescribeInterconnectLoaRequest {
/**
* The ID of the interconnect.
*/
interconnectId: InterconnectId;
/**
* The name of the service provider who establishes connectivity on your behalf. If you supply this parameter, the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.
*/
providerName?: ProviderName;
/**
* The standard media type for the LOA-CFA document. The only supported value is application/pdf.
*/
loaContentType?: LoaContentType;
}
export interface DescribeInterconnectLoaResponse {
/**
* The Letter of Authorization - Connecting Facility Assignment (LOA-CFA).
*/
loa?: Loa;
}
export interface DescribeInterconnectsRequest {
/**
* The ID of the interconnect.
*/
interconnectId?: InterconnectId;
}
export interface DescribeLagsRequest {
/**
* The ID of the LAG.
*/
lagId?: LagId;
}
export interface DescribeLoaRequest {
/**
* The ID of a connection, LAG, or interconnect.
*/
connectionId: ConnectionId;
/**
* The name of the service provider who establishes connectivity on your behalf. If you specify this parameter, the LOA-CFA lists the provider name alongside your company name as the requester of the cross connect.
*/
providerName?: ProviderName;
/**
* The standard media type for the LOA-CFA document. The only supported value is application/pdf.
*/
loaContentType?: LoaContentType;
}
export interface DescribeTagsRequest {
/**
* The Amazon Resource Names (ARNs) of the resources.
*/
resourceArns: ResourceArnList;
}
export interface DescribeTagsResponse {
/**
* Information about the tags.
*/
resourceTags?: ResourceTagList;
}
export interface DescribeVirtualInterfacesRequest {
/**
* The ID of the connection.
*/
connectionId?: ConnectionId;
/**
* The ID of the virtual interface.
*/
virtualInterfaceId?: VirtualInterfaceId;
}
export interface DirectConnectGateway {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The name of the Direct Connect gateway.
*/
directConnectGatewayName?: DirectConnectGatewayName;
/**
* The autonomous system number (ASN) for the Amazon side of the connection.
*/
amazonSideAsn?: LongAsn;
/**
* The ID of the AWS account that owns the Direct Connect gateway.
*/
ownerAccount?: OwnerAccount;
/**
* The state of the Direct Connect gateway. The following are the possible values: pending: The initial state after calling CreateDirectConnectGateway. available: The Direct Connect gateway is ready for use. deleting: The initial state after calling DeleteDirectConnectGateway. deleted: The Direct Connect gateway is deleted and cannot pass traffic.
*/
directConnectGatewayState?: DirectConnectGatewayState;
/**
* The error message if the state of an object failed to advance.
*/
stateChangeError?: StateChangeError;
}
export interface DirectConnectGatewayAssociation {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The ID of the AWS account that owns the associated gateway.
*/
directConnectGatewayOwnerAccount?: OwnerAccount;
/**
* The state of the association. The following are the possible values: associating: The initial state after calling CreateDirectConnectGatewayAssociation. associated: The Direct Connect gateway and virtual private gateway or transit gateway are successfully associated and ready to pass traffic. disassociating: The initial state after calling DeleteDirectConnectGatewayAssociation. disassociated: The virtual private gateway or transit gateway is disassociated from the Direct Connect gateway. Traffic flow between the Direct Connect gateway and virtual private gateway or transit gateway is stopped.
*/
associationState?: DirectConnectGatewayAssociationState;
/**
* The error message if the state of an object failed to advance.
*/
stateChangeError?: StateChangeError;
/**
* Information about the associated gateway.
*/
associatedGateway?: AssociatedGateway;
/**
* The ID of the Direct Connect gateway association.
*/
associationId?: DirectConnectGatewayAssociationId;
/**
* The Amazon VPC prefixes to advertise to the Direct Connect gateway.
*/
allowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
/**
* The ID of the virtual private gateway. Applies only to private virtual interfaces.
*/
virtualGatewayId?: VirtualGatewayId;
/**
* The AWS Region where the virtual private gateway is located.
*/
virtualGatewayRegion?: VirtualGatewayRegion;
/**
* The ID of the AWS account that owns the virtual private gateway.
*/
virtualGatewayOwnerAccount?: OwnerAccount;
}
export type DirectConnectGatewayAssociationId = string;
export type DirectConnectGatewayAssociationList = DirectConnectGatewayAssociation[];
export interface DirectConnectGatewayAssociationProposal {
/**
* The ID of the association proposal.
*/
proposalId?: DirectConnectGatewayAssociationProposalId;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The ID of the AWS account that owns the Direct Connect gateway.
*/
directConnectGatewayOwnerAccount?: OwnerAccount;
/**
* The state of the proposal. The following are possible values: accepted: The proposal has been accepted. The Direct Connect gateway association is available to use in this state. deleted: The proposal has been deleted by the owner that made the proposal. The Direct Connect gateway association cannot be used in this state. requested: The proposal has been requested. The Direct Connect gateway association cannot be used in this state.
*/
proposalState?: DirectConnectGatewayAssociationProposalState;
/**
* Information about the associated gateway.
*/
associatedGateway?: AssociatedGateway;
/**
* The existing Amazon VPC prefixes advertised to the Direct Connect gateway.
*/
existingAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
/**
* The Amazon VPC prefixes to advertise to the Direct Connect gateway.
*/
requestedAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
}
export type DirectConnectGatewayAssociationProposalId = string;
export type DirectConnectGatewayAssociationProposalList = DirectConnectGatewayAssociationProposal[];
export type DirectConnectGatewayAssociationProposalState = "requested"|"accepted"|"deleted"|string;
export type DirectConnectGatewayAssociationState = "associating"|"associated"|"disassociating"|"disassociated"|"updating"|string;
export interface DirectConnectGatewayAttachment {
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The ID of the virtual interface.
*/
virtualInterfaceId?: VirtualInterfaceId;
/**
* The AWS Region where the virtual interface is located.
*/
virtualInterfaceRegion?: VirtualInterfaceRegion;
/**
* The ID of the AWS account that owns the virtual interface.
*/
virtualInterfaceOwnerAccount?: OwnerAccount;
/**
* The state of the attachment. The following are the possible values: attaching: The initial state after a virtual interface is created using the Direct Connect gateway. attached: The Direct Connect gateway and virtual interface are attached and ready to pass traffic. detaching: The initial state after calling DeleteVirtualInterface. detached: The virtual interface is detached from the Direct Connect gateway. Traffic flow between the Direct Connect gateway and virtual interface is stopped.
*/
attachmentState?: DirectConnectGatewayAttachmentState;
/**
* The type of attachment.
*/
attachmentType?: DirectConnectGatewayAttachmentType;
/**
* The error message if the state of an object failed to advance.
*/
stateChangeError?: StateChangeError;
}
export type DirectConnectGatewayAttachmentList = DirectConnectGatewayAttachment[];
export type DirectConnectGatewayAttachmentState = "attaching"|"attached"|"detaching"|"detached"|string;
export type DirectConnectGatewayAttachmentType = "TransitVirtualInterface"|"PrivateVirtualInterface"|string;
export type DirectConnectGatewayId = string;
export type DirectConnectGatewayList = DirectConnectGateway[];
export type DirectConnectGatewayName = string;
export type DirectConnectGatewayState = "pending"|"available"|"deleting"|"deleted"|string;
export interface DisassociateConnectionFromLagRequest {
/**
* The ID of the connection.
*/
connectionId: ConnectionId;
/**
* The ID of the LAG.
*/
lagId: LagId;
}
export type GatewayIdToAssociate = string;
export type GatewayIdentifier = string;
export type GatewayType = "virtualPrivateGateway"|"transitGateway"|string;
export type HasLogicalRedundancy = "unknown"|"yes"|"no"|string;
export interface Interconnect {
/**
* The ID of the interconnect.
*/
interconnectId?: InterconnectId;
/**
* The name of the interconnect.
*/
interconnectName?: InterconnectName;
/**
* The state of the interconnect. The following are the possible values: requested: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer. pending: The interconnect is approved, and is being initialized. available: The network link is up, and the interconnect is ready for use. down: The network link is down. deleting: The interconnect is being deleted. deleted: The interconnect is deleted. unknown: The state of the interconnect is not available.
*/
interconnectState?: InterconnectState;
/**
* The AWS Region where the connection is located.
*/
region?: Region;
/**
* The location of the connection.
*/
location?: LocationCode;
/**
* The bandwidth of the connection.
*/
bandwidth?: Bandwidth;
/**
* The time of the most recent call to DescribeLoa for this connection.
*/
loaIssueTime?: LoaIssueTime;
/**
* The ID of the LAG.
*/
lagId?: LagId;
/**
* The Direct Connect endpoint on which the physical connection terminates.
*/
awsDevice?: AwsDevice;
/**
* Indicates whether jumbo frames (9001 MTU) are supported.
*/
jumboFrameCapable?: JumboFrameCapable;
/**
* The Direct Connect endpoint on which the physical connection terminates.
*/
awsDeviceV2?: AwsDeviceV2;
/**
* Indicates whether the interconnect supports a secondary BGP in the same address family (IPv4/IPv6).
*/
hasLogicalRedundancy?: HasLogicalRedundancy;
/**
* The tags associated with the interconnect.
*/
tags?: TagList;
/**
* The name of the service provider associated with the interconnect.
*/
providerName?: ProviderName;
}
export type InterconnectId = string;
export type InterconnectList = Interconnect[];
export type InterconnectName = string;
export type InterconnectState = "requested"|"pending"|"available"|"down"|"deleting"|"deleted"|"unknown"|string;
export interface Interconnects {
/**
* The interconnects.
*/
interconnects?: InterconnectList;
}
export type JumboFrameCapable = boolean;
export interface Lag {
/**
* The individual bandwidth of the physical connections bundled by the LAG. The possible values are 1Gbps and 10Gbps.
*/
connectionsBandwidth?: Bandwidth;
/**
* The number of physical connections bundled by the LAG, up to a maximum of 10.
*/
numberOfConnections?: Count;
/**
* The ID of the LAG.
*/
lagId?: LagId;
/**
* The ID of the AWS account that owns the LAG.
*/
ownerAccount?: OwnerAccount;
/**
* The name of the LAG.
*/
lagName?: LagName;
/**
* The state of the LAG. The following are the possible values: requested: The initial state of a LAG. The LAG stays in the requested state until the Letter of Authorization (LOA) is available. pending: The LAG has been approved and is being initialized. available: The network link is established and the LAG is ready for use. down: The network link is down. deleting: The LAG is being deleted. deleted: The LAG is deleted. unknown: The state of the LAG is not available.
*/
lagState?: LagState;
/**
* The location of the LAG.
*/
location?: LocationCode;
/**
* The AWS Region where the connection is located.
*/
region?: Region;
/**
* The minimum number of physical connections that must be operational for the LAG itself to be operational.
*/
minimumLinks?: Count;
/**
* The AWS Direct Connect endpoint that hosts the LAG.
*/
awsDevice?: AwsDevice;
/**
* The AWS Direct Connect endpoint that hosts the LAG.
*/
awsDeviceV2?: AwsDeviceV2;
/**
* The connections bundled by the LAG.
*/
connections?: ConnectionList;
/**
* Indicates whether the LAG can host other connections.
*/
allowsHostedConnections?: BooleanFlag;
/**
* Indicates whether jumbo frames (9001 MTU) are supported.
*/
jumboFrameCapable?: JumboFrameCapable;
/**
* Indicates whether the LAG supports a secondary BGP peer in the same address family (IPv4/IPv6).
*/
hasLogicalRedundancy?: HasLogicalRedundancy;
/**
* The tags associated with the LAG.
*/
tags?: TagList;
/**
* The name of the service provider associated with the LAG.
*/
providerName?: ProviderName;
}
export type LagId = string;
export type LagList = Lag[];
export type LagName = string;
export type LagState = "requested"|"pending"|"available"|"down"|"deleting"|"deleted"|"unknown"|string;
export interface Lags {
/**
* The LAGs.
*/
lags?: LagList;
}
export interface Loa {
/**
* The binary contents of the LOA-CFA document.
*/
loaContent?: LoaContent;
/**
* The standard media type for the LOA-CFA document. The only supported value is application/pdf.
*/
loaContentType?: LoaContentType;
}
export type LoaContent = Buffer|Uint8Array|Blob|string;
export type LoaContentType = "application/pdf"|string;
export type LoaIssueTime = Date;
export interface Location {
/**
* The code for the location.
*/
locationCode?: LocationCode;
/**
* The name of the location. This includes the name of the colocation partner and the physical site of the building.
*/
locationName?: LocationName;
/**
* The AWS Region for the location.
*/
region?: Region;
/**
* The available port speeds for the location.
*/
availablePortSpeeds?: AvailablePortSpeeds;
/**
* The name of the service provider for the location.
*/
availableProviders?: ProviderList;
}
export type LocationCode = string;
export type LocationList = Location[];
export type LocationName = string;
export interface Locations {
/**
* The locations.
*/
locations?: LocationList;
}
export type LongAsn = number;
export type MTU = number;
export type MaxResultSetSize = number;
export interface NewBGPPeer {
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
*/
asn?: ASN;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
}
export interface NewPrivateVirtualInterface {
/**
* The name of the virtual interface assigned by the customer network.
*/
virtualInterfaceName: VirtualInterfaceName;
/**
* The ID of the VLAN.
*/
vlan: VLAN;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. The valid values are 1-2147483647.
*/
asn: ASN;
/**
* The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
*/
mtu?: MTU;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The ID of the virtual private gateway.
*/
virtualGatewayId?: VirtualGatewayId;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The tags associated with the private virtual interface.
*/
tags?: TagList;
}
export interface NewPrivateVirtualInterfaceAllocation {
/**
* The name of the virtual interface assigned by the customer network.
*/
virtualInterfaceName: VirtualInterfaceName;
/**
* The ID of the VLAN.
*/
vlan: VLAN;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. The valid values are 1-2147483647.
*/
asn: ASN;
/**
* The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
*/
mtu?: MTU;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The tags associated with the private virtual interface.
*/
tags?: TagList;
}
export interface NewPublicVirtualInterface {
/**
* The name of the virtual interface assigned by the customer network.
*/
virtualInterfaceName: VirtualInterfaceName;
/**
* The ID of the VLAN.
*/
vlan: VLAN;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. The valid values are 1-2147483647.
*/
asn: ASN;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The routes to be advertised to the AWS network in this Region. Applies to public virtual interfaces.
*/
routeFilterPrefixes?: RouteFilterPrefixList;
/**
* The tags associated with the public virtual interface.
*/
tags?: TagList;
}
export interface NewPublicVirtualInterfaceAllocation {
/**
* The name of the virtual interface assigned by the customer network.
*/
virtualInterfaceName: VirtualInterfaceName;
/**
* The ID of the VLAN.
*/
vlan: VLAN;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. The valid values are 1-2147483647.
*/
asn: ASN;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The routes to be advertised to the AWS network in this Region. Applies to public virtual interfaces.
*/
routeFilterPrefixes?: RouteFilterPrefixList;
/**
* The tags associated with the public virtual interface.
*/
tags?: TagList;
}
export interface NewTransitVirtualInterface {
/**
* The name of the virtual interface assigned by the customer network.
*/
virtualInterfaceName?: VirtualInterfaceName;
/**
* The ID of the VLAN.
*/
vlan?: VLAN;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. The valid values are 1-2147483647.
*/
asn?: ASN;
/**
* The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
*/
mtu?: MTU;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The tags associated with the transitive virtual interface.
*/
tags?: TagList;
}
export interface NewTransitVirtualInterfaceAllocation {
/**
* The name of the virtual interface assigned by the customer network.
*/
virtualInterfaceName?: VirtualInterfaceName;
/**
* The ID of the VLAN.
*/
vlan?: VLAN;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. The valid values are 1-2147483647.
*/
asn?: ASN;
/**
* The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
*/
mtu?: MTU;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The tags associated with the transitive virtual interface.
*/
tags?: TagList;
}
export type OwnerAccount = string;
export type PaginationToken = string;
export type PartnerName = string;
export type PortSpeed = string;
export type ProviderList = ProviderName[];
export type ProviderName = string;
export type Region = string;
export type ResourceArn = string;
export type ResourceArnList = ResourceArn[];
export interface ResourceTag {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
resourceArn?: ResourceArn;
/**
* The tags.
*/
tags?: TagList;
}
export type ResourceTagList = ResourceTag[];
export interface RouteFilterPrefix {
/**
* The CIDR block for the advertised route. Separate multiple routes using commas. An IPv6 CIDR must use /64 or shorter.
*/
cidr?: CIDR;
}
export type RouteFilterPrefixList = RouteFilterPrefix[];
export type RouterConfig = string;
export type StateChangeError = string;
export interface Tag {
/**
* The key.
*/
key: TagKey;
/**
* The value.
*/
value?: TagValue;
}
export type TagKey = string;
export type TagKeyList = TagKey[];
export type TagList = Tag[];
export interface TagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
resourceArn: ResourceArn;
/**
* The tags to add.
*/
tags: TagList;
}
export interface TagResourceResponse {
}
export type TagValue = string;
export interface UntagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
resourceArn: ResourceArn;
/**
* The tag keys of the tags to remove.
*/
tagKeys: TagKeyList;
}
export interface UntagResourceResponse {
}
export interface UpdateDirectConnectGatewayAssociationRequest {
/**
* The ID of the Direct Connect gateway association.
*/
associationId?: DirectConnectGatewayAssociationId;
/**
* The Amazon VPC prefixes to advertise to the Direct Connect gateway.
*/
addAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
/**
* The Amazon VPC prefixes to no longer advertise to the Direct Connect gateway.
*/
removeAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefixList;
}
export interface UpdateDirectConnectGatewayAssociationResult {
directConnectGatewayAssociation?: DirectConnectGatewayAssociation;
}
export interface UpdateLagRequest {
/**
* The ID of the LAG.
*/
lagId: LagId;
/**
* The name of the LAG.
*/
lagName?: LagName;
/**
* The minimum number of physical connections that must be operational for the LAG itself to be operational.
*/
minimumLinks?: Count;
}
export interface UpdateVirtualInterfaceAttributesRequest {
/**
* The ID of the virtual private interface.
*/
virtualInterfaceId: VirtualInterfaceId;
/**
* The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
*/
mtu?: MTU;
}
export type VLAN = number;
export interface VirtualGateway {
/**
* The ID of the virtual private gateway.
*/
virtualGatewayId?: VirtualGatewayId;
/**
* The state of the virtual private gateway. The following are the possible values: pending: Initial state after creating the virtual private gateway. available: Ready for use by a private virtual interface. deleting: Initial state after deleting the virtual private gateway. deleted: The virtual private gateway is deleted. The private virtual interface is unable to send traffic over this gateway.
*/
virtualGatewayState?: VirtualGatewayState;
}
export type VirtualGatewayId = string;
export type VirtualGatewayList = VirtualGateway[];
export type VirtualGatewayRegion = string;
export type VirtualGatewayState = string;
export interface VirtualGateways {
/**
* The virtual private gateways.
*/
virtualGateways?: VirtualGatewayList;
}
export interface VirtualInterface {
/**
* The ID of the AWS account that owns the virtual interface.
*/
ownerAccount?: OwnerAccount;
/**
* The ID of the virtual interface.
*/
virtualInterfaceId?: VirtualInterfaceId;
/**
* The location of the connection.
*/
location?: LocationCode;
/**
* The ID of the connection.
*/
connectionId?: ConnectionId;
/**
* The type of virtual interface. The possible values are private and public.
*/
virtualInterfaceType?: VirtualInterfaceType;
/**
* The name of the virtual interface assigned by the customer network.
*/
virtualInterfaceName?: VirtualInterfaceName;
/**
* The ID of the VLAN.
*/
vlan?: VLAN;
/**
* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. The valid values are 1-2147483647.
*/
asn?: ASN;
/**
* The autonomous system number (ASN) for the Amazon side of the connection.
*/
amazonSideAsn?: LongAsn;
/**
* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.
*/
authKey?: BGPAuthKey;
/**
* The IP address assigned to the Amazon interface.
*/
amazonAddress?: AmazonAddress;
/**
* The IP address assigned to the customer interface.
*/
customerAddress?: CustomerAddress;
/**
* The address family for the BGP peer.
*/
addressFamily?: AddressFamily;
/**
* The state of the virtual interface. The following are the possible values: confirming: The creation of the virtual interface is pending confirmation from the virtual interface owner. If the owner of the virtual interface is different from the owner of the connection on which it is provisioned, then the virtual interface will remain in this state until it is confirmed by the virtual interface owner. verifying: This state only applies to public virtual interfaces. Each public virtual interface needs validation before the virtual interface can be created. pending: A virtual interface is in this state from the time that it is created until the virtual interface is ready to forward traffic. available: A virtual interface that is able to forward traffic. down: A virtual interface that is BGP down. deleting: A virtual interface is in this state immediately after calling DeleteVirtualInterface until it can no longer forward traffic. deleted: A virtual interface that cannot forward traffic. rejected: The virtual interface owner has declined creation of the virtual interface. If a virtual interface in the Confirming state is deleted by the virtual interface owner, the virtual interface enters the Rejected state. unknown: The state of the virtual interface is not available.
*/
virtualInterfaceState?: VirtualInterfaceState;
/**
* The customer router configuration.
*/
customerRouterConfig?: RouterConfig;
/**
* The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
*/
mtu?: MTU;
/**
* Indicates whether jumbo frames (9001 MTU) are supported.
*/
jumboFrameCapable?: JumboFrameCapable;
/**
* The ID of the virtual private gateway. Applies only to private virtual interfaces.
*/
virtualGatewayId?: VirtualGatewayId;
/**
* The ID of the Direct Connect gateway.
*/
directConnectGatewayId?: DirectConnectGatewayId;
/**
* The routes to be advertised to the AWS network in this Region. Applies to public virtual interfaces.
*/
routeFilterPrefixes?: RouteFilterPrefixList;
/**
* The BGP peers configured on this virtual interface.
*/
bgpPeers?: BGPPeerList;
/**
* The AWS Region where the virtual interface is located.
*/
region?: Region;
/**
* The Direct Connect endpoint on which the virtual interface terminates.
*/
awsDeviceV2?: AwsDeviceV2;
/**
* The tags associated with the virtual interface.
*/
tags?: TagList;
}
export type VirtualInterfaceId = string;
export type VirtualInterfaceList = VirtualInterface[];
export type VirtualInterfaceName = string;
export type VirtualInterfaceRegion = string;
export type VirtualInterfaceState = "confirming"|"verifying"|"pending"|"available"|"down"|"deleting"|"deleted"|"rejected"|"unknown"|string;
export type VirtualInterfaceType = string;
export interface VirtualInterfaces {
/**
* The virtual interfaces
*/
virtualInterfaces?: VirtualInterfaceList;
}
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2012-10-25"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the DirectConnect client.
*/
export import Types = DirectConnect;
}
export = DirectConnect;