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
|
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package directconnect provides a client for AWS Direct Connect.
package directconnect
import (
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opAllocateConnectionOnInterconnect = "AllocateConnectionOnInterconnect"
// AllocateConnectionOnInterconnectRequest generates a request for the AllocateConnectionOnInterconnect operation.
func (c *DirectConnect) AllocateConnectionOnInterconnectRequest(input *AllocateConnectionOnInterconnectInput) (req *request.Request, output *Connection) {
op := &request.Operation{
Name: opAllocateConnectionOnInterconnect,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AllocateConnectionOnInterconnectInput{}
}
req = c.newRequest(op, input, output)
output = &Connection{}
req.Data = output
return
}
// 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 given interconnect.
func (c *DirectConnect) AllocateConnectionOnInterconnect(input *AllocateConnectionOnInterconnectInput) (*Connection, error) {
req, out := c.AllocateConnectionOnInterconnectRequest(input)
err := req.Send()
return out, err
}
const opAllocatePrivateVirtualInterface = "AllocatePrivateVirtualInterface"
// AllocatePrivateVirtualInterfaceRequest generates a request for the AllocatePrivateVirtualInterface operation.
func (c *DirectConnect) AllocatePrivateVirtualInterfaceRequest(input *AllocatePrivateVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) {
op := &request.Operation{
Name: opAllocatePrivateVirtualInterface,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AllocatePrivateVirtualInterfaceInput{}
}
req = c.newRequest(op, input, output)
output = &VirtualInterface{}
req.Data = output
return
}
// Provisions a private virtual interface to be owned by a different customer.
//
// The owner of a connection calls this function to provision a private virtual
// interface which will be owned by another AWS customer.
//
// Virtual interfaces created using this function must be confirmed by the
// virtual interface owner by calling ConfirmPrivateVirtualInterface. Until
// this step has been completed, the virtual interface will be in 'Confirming'
// state, and will not be available for handling traffic.
func (c *DirectConnect) AllocatePrivateVirtualInterface(input *AllocatePrivateVirtualInterfaceInput) (*VirtualInterface, error) {
req, out := c.AllocatePrivateVirtualInterfaceRequest(input)
err := req.Send()
return out, err
}
const opAllocatePublicVirtualInterface = "AllocatePublicVirtualInterface"
// AllocatePublicVirtualInterfaceRequest generates a request for the AllocatePublicVirtualInterface operation.
func (c *DirectConnect) AllocatePublicVirtualInterfaceRequest(input *AllocatePublicVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) {
op := &request.Operation{
Name: opAllocatePublicVirtualInterface,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AllocatePublicVirtualInterfaceInput{}
}
req = c.newRequest(op, input, output)
output = &VirtualInterface{}
req.Data = output
return
}
// Provisions a public virtual interface to be owned by a different customer.
//
// The owner of a connection calls this function to provision a public virtual
// interface which will be owned by another AWS customer.
//
// Virtual interfaces created using this function must be confirmed by the
// virtual interface owner by calling ConfirmPublicVirtualInterface. Until this
// step has been completed, the virtual interface will be in 'Confirming' state,
// and will not be available for handling traffic.
func (c *DirectConnect) AllocatePublicVirtualInterface(input *AllocatePublicVirtualInterfaceInput) (*VirtualInterface, error) {
req, out := c.AllocatePublicVirtualInterfaceRequest(input)
err := req.Send()
return out, err
}
const opConfirmConnection = "ConfirmConnection"
// ConfirmConnectionRequest generates a request for the ConfirmConnection operation.
func (c *DirectConnect) ConfirmConnectionRequest(input *ConfirmConnectionInput) (req *request.Request, output *ConfirmConnectionOutput) {
op := &request.Operation{
Name: opConfirmConnection,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ConfirmConnectionInput{}
}
req = c.newRequest(op, input, output)
output = &ConfirmConnectionOutput{}
req.Data = output
return
}
// Confirm the creation of a hosted connection on an interconnect.
//
// Upon creation, the hosted connection is initially in the 'Ordering' state,
// and will remain in this state until the owner calls ConfirmConnection to
// confirm creation of the hosted connection.
func (c *DirectConnect) ConfirmConnection(input *ConfirmConnectionInput) (*ConfirmConnectionOutput, error) {
req, out := c.ConfirmConnectionRequest(input)
err := req.Send()
return out, err
}
const opConfirmPrivateVirtualInterface = "ConfirmPrivateVirtualInterface"
// ConfirmPrivateVirtualInterfaceRequest generates a request for the ConfirmPrivateVirtualInterface operation.
func (c *DirectConnect) ConfirmPrivateVirtualInterfaceRequest(input *ConfirmPrivateVirtualInterfaceInput) (req *request.Request, output *ConfirmPrivateVirtualInterfaceOutput) {
op := &request.Operation{
Name: opConfirmPrivateVirtualInterface,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ConfirmPrivateVirtualInterfaceInput{}
}
req = c.newRequest(op, input, output)
output = &ConfirmPrivateVirtualInterfaceOutput{}
req.Data = output
return
}
// Accept ownership of a private virtual interface created by another customer.
//
// After the virtual interface owner calls this function, the virtual interface
// will be created and attached to the given virtual private gateway, and will
// be available for handling traffic.
func (c *DirectConnect) ConfirmPrivateVirtualInterface(input *ConfirmPrivateVirtualInterfaceInput) (*ConfirmPrivateVirtualInterfaceOutput, error) {
req, out := c.ConfirmPrivateVirtualInterfaceRequest(input)
err := req.Send()
return out, err
}
const opConfirmPublicVirtualInterface = "ConfirmPublicVirtualInterface"
// ConfirmPublicVirtualInterfaceRequest generates a request for the ConfirmPublicVirtualInterface operation.
func (c *DirectConnect) ConfirmPublicVirtualInterfaceRequest(input *ConfirmPublicVirtualInterfaceInput) (req *request.Request, output *ConfirmPublicVirtualInterfaceOutput) {
op := &request.Operation{
Name: opConfirmPublicVirtualInterface,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ConfirmPublicVirtualInterfaceInput{}
}
req = c.newRequest(op, input, output)
output = &ConfirmPublicVirtualInterfaceOutput{}
req.Data = output
return
}
// Accept ownership of a public virtual interface created by another customer.
//
// After the virtual interface owner calls this function, the specified virtual
// interface will be created and made available for handling traffic.
func (c *DirectConnect) ConfirmPublicVirtualInterface(input *ConfirmPublicVirtualInterfaceInput) (*ConfirmPublicVirtualInterfaceOutput, error) {
req, out := c.ConfirmPublicVirtualInterfaceRequest(input)
err := req.Send()
return out, err
}
const opCreateConnection = "CreateConnection"
// CreateConnectionRequest generates a request for the CreateConnection operation.
func (c *DirectConnect) CreateConnectionRequest(input *CreateConnectionInput) (req *request.Request, output *Connection) {
op := &request.Operation{
Name: opCreateConnection,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateConnectionInput{}
}
req = c.newRequest(op, input, output)
output = &Connection{}
req.Data = output
return
}
// Creates a new connection between the customer network and a specific AWS
// Direct Connect location.
//
// A connection links your internal network to an AWS Direct Connect location
// over a standard 1 gigabit or 10 gigabit Ethernet fiber-optic cable. One end
// of the cable is connected to your router, the other to an AWS Direct Connect
// router. An AWS Direct Connect location provides access to Amazon Web Services
// in the region it is associated with. You can establish connections with AWS
// Direct Connect locations in multiple regions, but a connection in one region
// does not provide connectivity to other regions.
func (c *DirectConnect) CreateConnection(input *CreateConnectionInput) (*Connection, error) {
req, out := c.CreateConnectionRequest(input)
err := req.Send()
return out, err
}
const opCreateInterconnect = "CreateInterconnect"
// CreateInterconnectRequest generates a request for the CreateInterconnect operation.
func (c *DirectConnect) CreateInterconnectRequest(input *CreateInterconnectInput) (req *request.Request, output *Interconnect) {
op := &request.Operation{
Name: opCreateInterconnect,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateInterconnectInput{}
}
req = c.newRequest(op, input, output)
output = &Interconnect{}
req.Data = output
return
}
// Creates a new interconnect between a AWS Direct Connect partner's network
// and a specific AWS Direct Connect location.
//
// An interconnect is a connection which is capable of hosting other connections.
// The AWS Direct Connect partner can use an interconnect to provide sub-1Gbps
// AWS Direct Connect service to tier 2 customers who do not have their own
// connections. Like a standard connection, an interconnect links the AWS Direct
// Connect partner's network to an AWS Direct Connect location over a standard
// 1 Gbps or 10 Gbps Ethernet fiber-optic cable. One end is connected to the
// partner's router, the other to an AWS Direct Connect router.
//
// For each end customer, the AWS Direct Connect partner provisions a connection
// on their interconnect by calling AllocateConnectionOnInterconnect. 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.
func (c *DirectConnect) CreateInterconnect(input *CreateInterconnectInput) (*Interconnect, error) {
req, out := c.CreateInterconnectRequest(input)
err := req.Send()
return out, err
}
const opCreatePrivateVirtualInterface = "CreatePrivateVirtualInterface"
// CreatePrivateVirtualInterfaceRequest generates a request for the CreatePrivateVirtualInterface operation.
func (c *DirectConnect) CreatePrivateVirtualInterfaceRequest(input *CreatePrivateVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) {
op := &request.Operation{
Name: opCreatePrivateVirtualInterface,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePrivateVirtualInterfaceInput{}
}
req = c.newRequest(op, input, output)
output = &VirtualInterface{}
req.Data = output
return
}
// Creates a new private virtual interface. A virtual interface is the VLAN
// that transports AWS Direct Connect traffic. A private virtual interface supports
// sending traffic to a single virtual private cloud (VPC).
func (c *DirectConnect) CreatePrivateVirtualInterface(input *CreatePrivateVirtualInterfaceInput) (*VirtualInterface, error) {
req, out := c.CreatePrivateVirtualInterfaceRequest(input)
err := req.Send()
return out, err
}
const opCreatePublicVirtualInterface = "CreatePublicVirtualInterface"
// CreatePublicVirtualInterfaceRequest generates a request for the CreatePublicVirtualInterface operation.
func (c *DirectConnect) CreatePublicVirtualInterfaceRequest(input *CreatePublicVirtualInterfaceInput) (req *request.Request, output *VirtualInterface) {
op := &request.Operation{
Name: opCreatePublicVirtualInterface,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePublicVirtualInterfaceInput{}
}
req = c.newRequest(op, input, output)
output = &VirtualInterface{}
req.Data = output
return
}
// Creates a new 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 Simple Storage Service
// (Amazon S3).
func (c *DirectConnect) CreatePublicVirtualInterface(input *CreatePublicVirtualInterfaceInput) (*VirtualInterface, error) {
req, out := c.CreatePublicVirtualInterfaceRequest(input)
err := req.Send()
return out, err
}
const opDeleteConnection = "DeleteConnection"
// DeleteConnectionRequest generates a request for the DeleteConnection operation.
func (c *DirectConnect) DeleteConnectionRequest(input *DeleteConnectionInput) (req *request.Request, output *Connection) {
op := &request.Operation{
Name: opDeleteConnection,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteConnectionInput{}
}
req = c.newRequest(op, input, output)
output = &Connection{}
req.Data = output
return
}
// Deletes the connection.
//
// Deleting a connection only stops the AWS Direct Connect port hour and data
// transfer charges. You need to cancel separately with the providers any services
// or charges for cross-connects or network circuits that connect you to the
// AWS Direct Connect location.
func (c *DirectConnect) DeleteConnection(input *DeleteConnectionInput) (*Connection, error) {
req, out := c.DeleteConnectionRequest(input)
err := req.Send()
return out, err
}
const opDeleteInterconnect = "DeleteInterconnect"
// DeleteInterconnectRequest generates a request for the DeleteInterconnect operation.
func (c *DirectConnect) DeleteInterconnectRequest(input *DeleteInterconnectInput) (req *request.Request, output *DeleteInterconnectOutput) {
op := &request.Operation{
Name: opDeleteInterconnect,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteInterconnectInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteInterconnectOutput{}
req.Data = output
return
}
// Deletes the specified interconnect.
func (c *DirectConnect) DeleteInterconnect(input *DeleteInterconnectInput) (*DeleteInterconnectOutput, error) {
req, out := c.DeleteInterconnectRequest(input)
err := req.Send()
return out, err
}
const opDeleteVirtualInterface = "DeleteVirtualInterface"
// DeleteVirtualInterfaceRequest generates a request for the DeleteVirtualInterface operation.
func (c *DirectConnect) DeleteVirtualInterfaceRequest(input *DeleteVirtualInterfaceInput) (req *request.Request, output *DeleteVirtualInterfaceOutput) {
op := &request.Operation{
Name: opDeleteVirtualInterface,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteVirtualInterfaceInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteVirtualInterfaceOutput{}
req.Data = output
return
}
// Deletes a virtual interface.
func (c *DirectConnect) DeleteVirtualInterface(input *DeleteVirtualInterfaceInput) (*DeleteVirtualInterfaceOutput, error) {
req, out := c.DeleteVirtualInterfaceRequest(input)
err := req.Send()
return out, err
}
const opDescribeConnections = "DescribeConnections"
// DescribeConnectionsRequest generates a request for the DescribeConnections operation.
func (c *DirectConnect) DescribeConnectionsRequest(input *DescribeConnectionsInput) (req *request.Request, output *Connections) {
op := &request.Operation{
Name: opDescribeConnections,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeConnectionsInput{}
}
req = c.newRequest(op, input, output)
output = &Connections{}
req.Data = output
return
}
// Displays all connections in this region.
//
// If a connection ID is provided, the call returns only that particular connection.
func (c *DirectConnect) DescribeConnections(input *DescribeConnectionsInput) (*Connections, error) {
req, out := c.DescribeConnectionsRequest(input)
err := req.Send()
return out, err
}
const opDescribeConnectionsOnInterconnect = "DescribeConnectionsOnInterconnect"
// DescribeConnectionsOnInterconnectRequest generates a request for the DescribeConnectionsOnInterconnect operation.
func (c *DirectConnect) DescribeConnectionsOnInterconnectRequest(input *DescribeConnectionsOnInterconnectInput) (req *request.Request, output *Connections) {
op := &request.Operation{
Name: opDescribeConnectionsOnInterconnect,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeConnectionsOnInterconnectInput{}
}
req = c.newRequest(op, input, output)
output = &Connections{}
req.Data = output
return
}
// Return a list of connections that have been provisioned on the given interconnect.
func (c *DirectConnect) DescribeConnectionsOnInterconnect(input *DescribeConnectionsOnInterconnectInput) (*Connections, error) {
req, out := c.DescribeConnectionsOnInterconnectRequest(input)
err := req.Send()
return out, err
}
const opDescribeInterconnects = "DescribeInterconnects"
// DescribeInterconnectsRequest generates a request for the DescribeInterconnects operation.
func (c *DirectConnect) DescribeInterconnectsRequest(input *DescribeInterconnectsInput) (req *request.Request, output *DescribeInterconnectsOutput) {
op := &request.Operation{
Name: opDescribeInterconnects,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeInterconnectsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeInterconnectsOutput{}
req.Data = output
return
}
// Returns a list of interconnects owned by the AWS account.
//
// If an interconnect ID is provided, it will only return this particular interconnect.
func (c *DirectConnect) DescribeInterconnects(input *DescribeInterconnectsInput) (*DescribeInterconnectsOutput, error) {
req, out := c.DescribeInterconnectsRequest(input)
err := req.Send()
return out, err
}
const opDescribeLocations = "DescribeLocations"
// DescribeLocationsRequest generates a request for the DescribeLocations operation.
func (c *DirectConnect) DescribeLocationsRequest(input *DescribeLocationsInput) (req *request.Request, output *DescribeLocationsOutput) {
op := &request.Operation{
Name: opDescribeLocations,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeLocationsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeLocationsOutput{}
req.Data = output
return
}
// Returns the list of AWS Direct Connect locations in the current AWS region.
// These are the locations that may be selected when calling CreateConnection
// or CreateInterconnect.
func (c *DirectConnect) DescribeLocations(input *DescribeLocationsInput) (*DescribeLocationsOutput, error) {
req, out := c.DescribeLocationsRequest(input)
err := req.Send()
return out, err
}
const opDescribeVirtualGateways = "DescribeVirtualGateways"
// DescribeVirtualGatewaysRequest generates a request for the DescribeVirtualGateways operation.
func (c *DirectConnect) DescribeVirtualGatewaysRequest(input *DescribeVirtualGatewaysInput) (req *request.Request, output *DescribeVirtualGatewaysOutput) {
op := &request.Operation{
Name: opDescribeVirtualGateways,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeVirtualGatewaysInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeVirtualGatewaysOutput{}
req.Data = output
return
}
// Returns a list of virtual private gateways owned by the AWS account.
//
// You can create one or more AWS Direct Connect private virtual interfaces
// linking to a virtual private gateway. A virtual private gateway can be managed
// via Amazon Virtual Private Cloud (VPC) console or the EC2 CreateVpnGateway
// (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html)
// action.
func (c *DirectConnect) DescribeVirtualGateways(input *DescribeVirtualGatewaysInput) (*DescribeVirtualGatewaysOutput, error) {
req, out := c.DescribeVirtualGatewaysRequest(input)
err := req.Send()
return out, err
}
const opDescribeVirtualInterfaces = "DescribeVirtualInterfaces"
// DescribeVirtualInterfacesRequest generates a request for the DescribeVirtualInterfaces operation.
func (c *DirectConnect) DescribeVirtualInterfacesRequest(input *DescribeVirtualInterfacesInput) (req *request.Request, output *DescribeVirtualInterfacesOutput) {
op := &request.Operation{
Name: opDescribeVirtualInterfaces,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeVirtualInterfacesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeVirtualInterfacesOutput{}
req.Data = output
return
}
// Displays all virtual interfaces for an AWS account. Virtual interfaces deleted
// fewer than 15 minutes before DescribeVirtualInterfaces is called are also
// returned. If a connection ID is included then only virtual interfaces associated
// with this connection will be returned. If a virtual interface ID is included
// then only a single virtual interface will be returned.
//
// A virtual interface (VLAN) transmits the traffic between the AWS Direct
// Connect location and the customer.
//
// If a connection ID is provided, only virtual interfaces provisioned on the
// specified connection will be returned. If a virtual interface ID is provided,
// only this particular virtual interface will be returned.
func (c *DirectConnect) DescribeVirtualInterfaces(input *DescribeVirtualInterfacesInput) (*DescribeVirtualInterfacesOutput, error) {
req, out := c.DescribeVirtualInterfacesRequest(input)
err := req.Send()
return out, err
}
// Container for the parameters to the AllocateConnectionOnInterconnect operation.
type AllocateConnectionOnInterconnectInput struct {
_ struct{} `type:"structure"`
// Bandwidth of the connection.
//
// Example: "500Mbps"
//
// Default: None
Bandwidth *string `locationName:"bandwidth" type:"string" required:"true"`
// Name of the provisioned connection.
//
// Example: "500M Connection to AWS"
//
// Default: None
ConnectionName *string `locationName:"connectionName" type:"string" required:"true"`
// ID of the interconnect on which the connection will be provisioned.
//
// Example: dxcon-456abc78
//
// Default: None
InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"`
// Numeric account Id of the customer for whom the connection will be provisioned.
//
// Example: 123443215678
//
// Default: None
OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"`
// The dedicated VLAN provisioned to the connection.
//
// Example: 101
//
// Default: None
Vlan *int64 `locationName:"vlan" type:"integer" required:"true"`
}
// String returns the string representation
func (s AllocateConnectionOnInterconnectInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AllocateConnectionOnInterconnectInput) GoString() string {
return s.String()
}
// Container for the parameters to the AllocatePrivateVirtualInterface operation.
type AllocatePrivateVirtualInterfaceInput struct {
_ struct{} `type:"structure"`
// The connection ID on which the private virtual interface is provisioned.
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string" required:"true"`
// Detailed information for the private virtual interface to be provisioned.
//
// Default: None
NewPrivateVirtualInterfaceAllocation *NewPrivateVirtualInterfaceAllocation `locationName:"newPrivateVirtualInterfaceAllocation" type:"structure" required:"true"`
// The AWS account that will own the new private virtual interface.
//
// Default: None
OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"`
}
// String returns the string representation
func (s AllocatePrivateVirtualInterfaceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AllocatePrivateVirtualInterfaceInput) GoString() string {
return s.String()
}
// Container for the parameters to the AllocatePublicVirtualInterface operation.
type AllocatePublicVirtualInterfaceInput struct {
_ struct{} `type:"structure"`
// The connection ID on which the public virtual interface is provisioned.
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string" required:"true"`
// Detailed information for the public virtual interface to be provisioned.
//
// Default: None
NewPublicVirtualInterfaceAllocation *NewPublicVirtualInterfaceAllocation `locationName:"newPublicVirtualInterfaceAllocation" type:"structure" required:"true"`
// The AWS account that will own the new public virtual interface.
//
// Default: None
OwnerAccount *string `locationName:"ownerAccount" type:"string" required:"true"`
}
// String returns the string representation
func (s AllocatePublicVirtualInterfaceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AllocatePublicVirtualInterfaceInput) GoString() string {
return s.String()
}
// Container for the parameters to the ConfirmConnection operation.
type ConfirmConnectionInput struct {
_ struct{} `type:"structure"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string" required:"true"`
}
// String returns the string representation
func (s ConfirmConnectionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ConfirmConnectionInput) GoString() string {
return s.String()
}
// The response received when ConfirmConnection is called.
type ConfirmConnectionOutput struct {
_ struct{} `type:"structure"`
// State of the connection. 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 in the
// process of being deleted. Deleted: The connection has been deleted. Rejected:
// A hosted connection in the 'Ordering' state will enter the 'Rejected' state
// if it is deleted by the end customer.
ConnectionState *string `locationName:"connectionState" type:"string" enum:"ConnectionState"`
}
// String returns the string representation
func (s ConfirmConnectionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ConfirmConnectionOutput) GoString() string {
return s.String()
}
// Container for the parameters to the ConfirmPrivateVirtualInterface operation.
type ConfirmPrivateVirtualInterfaceInput struct {
_ struct{} `type:"structure"`
// ID of the virtual private gateway that will be attached to the virtual interface.
//
// A virtual private gateway can be managed via the Amazon Virtual Private
// Cloud (VPC) console or the EC2 CreateVpnGateway (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html)
// action.
//
// Default: None
VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string" required:"true"`
// ID of the virtual interface.
//
// Example: dxvif-123dfg56
//
// Default: None
VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"`
}
// String returns the string representation
func (s ConfirmPrivateVirtualInterfaceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ConfirmPrivateVirtualInterfaceInput) GoString() string {
return s.String()
}
// The response received when ConfirmPrivateVirtualInterface is called.
type ConfirmPrivateVirtualInterfaceOutput struct {
_ struct{} `type:"structure"`
// State of the virtual interface. 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 will enter the 'Rejected' state.
VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"`
}
// String returns the string representation
func (s ConfirmPrivateVirtualInterfaceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ConfirmPrivateVirtualInterfaceOutput) GoString() string {
return s.String()
}
// Container for the parameters to the ConfirmPublicVirtualInterface operation.
type ConfirmPublicVirtualInterfaceInput struct {
_ struct{} `type:"structure"`
// ID of the virtual interface.
//
// Example: dxvif-123dfg56
//
// Default: None
VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"`
}
// String returns the string representation
func (s ConfirmPublicVirtualInterfaceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ConfirmPublicVirtualInterfaceInput) GoString() string {
return s.String()
}
// The response received when ConfirmPublicVirtualInterface is called.
type ConfirmPublicVirtualInterfaceOutput struct {
_ struct{} `type:"structure"`
// State of the virtual interface. 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 will enter the 'Rejected' state.
VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"`
}
// String returns the string representation
func (s ConfirmPublicVirtualInterfaceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ConfirmPublicVirtualInterfaceOutput) GoString() string {
return s.String()
}
// A connection represents the physical network connection between the AWS Direct
// Connect location and the customer.
type Connection struct {
_ struct{} `type:"structure"`
// Bandwidth of the connection.
//
// Example: 1Gbps (for regular connections), or 500Mbps (for hosted connections)
//
// Default: None
Bandwidth *string `locationName:"bandwidth" type:"string"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string"`
// The name of the connection.
//
// Example: "My Connection to AWS"
//
// Default: None
ConnectionName *string `locationName:"connectionName" type:"string"`
// State of the connection. 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 in the
// process of being deleted. Deleted: The connection has been deleted. Rejected:
// A hosted connection in the 'Ordering' state will enter the 'Rejected' state
// if it is deleted by the end customer.
ConnectionState *string `locationName:"connectionState" type:"string" enum:"ConnectionState"`
// Where the connection is located.
//
// Example: EqSV5
//
// Default: None
Location *string `locationName:"location" type:"string"`
OwnerAccount *string `locationName:"ownerAccount" type:"string"`
PartnerName *string `locationName:"partnerName" type:"string"`
// The AWS region where the connection is located.
//
// Example: us-east-1
//
// Default: None
Region *string `locationName:"region" type:"string"`
// The VLAN ID.
//
// Example: 101
Vlan *int64 `locationName:"vlan" type:"integer"`
}
// String returns the string representation
func (s Connection) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Connection) GoString() string {
return s.String()
}
// A structure containing a list of connections.
type Connections struct {
_ struct{} `type:"structure"`
// A list of connections.
Connections []*Connection `locationName:"connections" type:"list"`
}
// String returns the string representation
func (s Connections) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Connections) GoString() string {
return s.String()
}
// Container for the parameters to the CreateConnection operation.
type CreateConnectionInput struct {
_ struct{} `type:"structure"`
// Bandwidth of the connection.
//
// Example: 1Gbps
//
// Default: None
Bandwidth *string `locationName:"bandwidth" type:"string" required:"true"`
// The name of the connection.
//
// Example: "My Connection to AWS"
//
// Default: None
ConnectionName *string `locationName:"connectionName" type:"string" required:"true"`
// Where the connection is located.
//
// Example: EqSV5
//
// Default: None
Location *string `locationName:"location" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateConnectionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateConnectionInput) GoString() string {
return s.String()
}
// Container for the parameters to the CreateInterconnect operation.
type CreateInterconnectInput struct {
_ struct{} `type:"structure"`
// The port bandwidth
//
// Example: 1Gbps
//
// Default: None
//
// Available values: 1Gbps,10Gbps
Bandwidth *string `locationName:"bandwidth" type:"string" required:"true"`
// The name of the interconnect.
//
// Example: "1G Interconnect to AWS"
//
// Default: None
InterconnectName *string `locationName:"interconnectName" type:"string" required:"true"`
// Where the interconnect is located
//
// Example: EqSV5
//
// Default: None
Location *string `locationName:"location" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateInterconnectInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateInterconnectInput) GoString() string {
return s.String()
}
// Container for the parameters to the CreatePrivateVirtualInterface operation.
type CreatePrivateVirtualInterfaceInput struct {
_ struct{} `type:"structure"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string" required:"true"`
// Detailed information for the private virtual interface to be created.
//
// Default: None
NewPrivateVirtualInterface *NewPrivateVirtualInterface `locationName:"newPrivateVirtualInterface" type:"structure" required:"true"`
}
// String returns the string representation
func (s CreatePrivateVirtualInterfaceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePrivateVirtualInterfaceInput) GoString() string {
return s.String()
}
// Container for the parameters to the CreatePublicVirtualInterface operation.
type CreatePublicVirtualInterfaceInput struct {
_ struct{} `type:"structure"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string" required:"true"`
// Detailed information for the public virtual interface to be created.
//
// Default: None
NewPublicVirtualInterface *NewPublicVirtualInterface `locationName:"newPublicVirtualInterface" type:"structure" required:"true"`
}
// String returns the string representation
func (s CreatePublicVirtualInterfaceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePublicVirtualInterfaceInput) GoString() string {
return s.String()
}
// Container for the parameters to the DeleteConnection operation.
type DeleteConnectionInput struct {
_ struct{} `type:"structure"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteConnectionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteConnectionInput) GoString() string {
return s.String()
}
// Container for the parameters to the DeleteInterconnect operation.
type DeleteInterconnectInput struct {
_ struct{} `type:"structure"`
// The ID of the interconnect.
//
// Example: dxcon-abc123
InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteInterconnectInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteInterconnectInput) GoString() string {
return s.String()
}
// The response received when DeleteInterconnect is called.
type DeleteInterconnectOutput struct {
_ struct{} `type:"structure"`
// State of the interconnect. 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 has been 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 in the process of being deleted. Deleted: The interconnect has been deleted.
InterconnectState *string `locationName:"interconnectState" type:"string" enum:"InterconnectState"`
}
// String returns the string representation
func (s DeleteInterconnectOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteInterconnectOutput) GoString() string {
return s.String()
}
// Container for the parameters to the DeleteVirtualInterface operation.
type DeleteVirtualInterfaceInput struct {
_ struct{} `type:"structure"`
// ID of the virtual interface.
//
// Example: dxvif-123dfg56
//
// Default: None
VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteVirtualInterfaceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteVirtualInterfaceInput) GoString() string {
return s.String()
}
// The response received when DeleteVirtualInterface is called.
type DeleteVirtualInterfaceOutput struct {
_ struct{} `type:"structure"`
// State of the virtual interface. 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 will enter the 'Rejected' state.
VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"`
}
// String returns the string representation
func (s DeleteVirtualInterfaceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteVirtualInterfaceOutput) GoString() string {
return s.String()
}
// Container for the parameters to the DescribeConnections operation.
type DescribeConnectionsInput struct {
_ struct{} `type:"structure"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string"`
}
// String returns the string representation
func (s DescribeConnectionsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeConnectionsInput) GoString() string {
return s.String()
}
// Container for the parameters to the DescribeConnectionsOnInterconnect operation.
type DescribeConnectionsOnInterconnectInput struct {
_ struct{} `type:"structure"`
// ID of the interconnect on which a list of connection is provisioned.
//
// Example: dxcon-abc123
//
// Default: None
InterconnectId *string `locationName:"interconnectId" type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeConnectionsOnInterconnectInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeConnectionsOnInterconnectInput) GoString() string {
return s.String()
}
// Container for the parameters to the DescribeInterconnects operation.
type DescribeInterconnectsInput struct {
_ struct{} `type:"structure"`
// The ID of the interconnect.
//
// Example: dxcon-abc123
InterconnectId *string `locationName:"interconnectId" type:"string"`
}
// String returns the string representation
func (s DescribeInterconnectsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInterconnectsInput) GoString() string {
return s.String()
}
// A structure containing a list of interconnects.
type DescribeInterconnectsOutput struct {
_ struct{} `type:"structure"`
// A list of interconnects.
Interconnects []*Interconnect `locationName:"interconnects" type:"list"`
}
// String returns the string representation
func (s DescribeInterconnectsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeInterconnectsOutput) GoString() string {
return s.String()
}
type DescribeLocationsInput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DescribeLocationsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeLocationsInput) GoString() string {
return s.String()
}
// A location is a network facility where AWS Direct Connect routers are available
// to be connected. Generally, these are colocation hubs where many network
// providers have equipment, and where cross connects can be delivered. Locations
// include a name and facility code, and must be provided when creating a connection.
type DescribeLocationsOutput struct {
_ struct{} `type:"structure"`
// A list of colocation hubs where network providers have equipment. Most regions
// have multiple locations available.
Locations []*Location `locationName:"locations" type:"list"`
}
// String returns the string representation
func (s DescribeLocationsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeLocationsOutput) GoString() string {
return s.String()
}
type DescribeVirtualGatewaysInput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DescribeVirtualGatewaysInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeVirtualGatewaysInput) GoString() string {
return s.String()
}
// A structure containing a list of virtual private gateways.
type DescribeVirtualGatewaysOutput struct {
_ struct{} `type:"structure"`
// A list of virtual private gateways.
VirtualGateways []*VirtualGateway `locationName:"virtualGateways" type:"list"`
}
// String returns the string representation
func (s DescribeVirtualGatewaysOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeVirtualGatewaysOutput) GoString() string {
return s.String()
}
// Container for the parameters to the DescribeVirtualInterfaces operation.
type DescribeVirtualInterfacesInput struct {
_ struct{} `type:"structure"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string"`
// ID of the virtual interface.
//
// Example: dxvif-123dfg56
//
// Default: None
VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string"`
}
// String returns the string representation
func (s DescribeVirtualInterfacesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeVirtualInterfacesInput) GoString() string {
return s.String()
}
// A structure containing a list of virtual interfaces.
type DescribeVirtualInterfacesOutput struct {
_ struct{} `type:"structure"`
// A list of virtual interfaces.
VirtualInterfaces []*VirtualInterface `locationName:"virtualInterfaces" type:"list"`
}
// String returns the string representation
func (s DescribeVirtualInterfacesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeVirtualInterfacesOutput) GoString() string {
return s.String()
}
// An interconnect is a connection that can host other connections.
//
// Like a standard AWS Direct Connect connection, an interconnect represents
// the physical connection between an AWS Direct Connect partner's network and
// a specific Direct Connect location. An AWS Direct Connect partner who owns
// an interconnect can provision hosted connections on the interconnect for
// their end customers, thereby providing the end customers with connectivity
// to AWS services.
//
// The resources of the interconnect, including bandwidth and VLAN numbers,
// are shared by all of the hosted connections on the interconnect, and the
// owner of the interconnect determines how these resources are assigned.
type Interconnect struct {
_ struct{} `type:"structure"`
// Bandwidth of the connection.
//
// Example: 1Gbps
//
// Default: None
Bandwidth *string `locationName:"bandwidth" type:"string"`
// The ID of the interconnect.
//
// Example: dxcon-abc123
InterconnectId *string `locationName:"interconnectId" type:"string"`
// The name of the interconnect.
//
// Example: "1G Interconnect to AWS"
InterconnectName *string `locationName:"interconnectName" type:"string"`
// State of the interconnect. 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 has been 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 in the process of being deleted. Deleted: The interconnect has been deleted.
InterconnectState *string `locationName:"interconnectState" type:"string" enum:"InterconnectState"`
// Where the connection is located.
//
// Example: EqSV5
//
// Default: None
Location *string `locationName:"location" type:"string"`
// The AWS region where the connection is located.
//
// Example: us-east-1
//
// Default: None
Region *string `locationName:"region" type:"string"`
}
// String returns the string representation
func (s Interconnect) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Interconnect) GoString() string {
return s.String()
}
// An AWS Direct Connect location where connections and interconnects can be
// requested.
type Location struct {
_ struct{} `type:"structure"`
// The code used to indicate the AWS Direct Connect location.
LocationCode *string `locationName:"locationCode" type:"string"`
// The name of the AWS Direct Connect location. The name includes the colocation
// partner name and the physical site of the lit building.
LocationName *string `locationName:"locationName" type:"string"`
}
// String returns the string representation
func (s Location) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Location) GoString() string {
return s.String()
}
// A structure containing information about a new private virtual interface.
type NewPrivateVirtualInterface struct {
_ struct{} `type:"structure"`
// IP address assigned to the Amazon interface.
//
// Example: 192.168.1.1/30
AmazonAddress *string `locationName:"amazonAddress" type:"string"`
// Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
//
// Example: 65000
Asn *int64 `locationName:"asn" type:"integer" required:"true"`
// Authentication key for BGP configuration.
//
// Example: asdf34example
AuthKey *string `locationName:"authKey" type:"string"`
// IP address assigned to the customer interface.
//
// Example: 192.168.1.2/30
CustomerAddress *string `locationName:"customerAddress" type:"string"`
// The ID of the virtual private gateway to a VPC. This only applies to private
// virtual interfaces.
//
// Example: vgw-123er56
VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string" required:"true"`
// The name of the virtual interface assigned by the customer.
//
// Example: "My VPC"
VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"`
// The VLAN ID.
//
// Example: 101
Vlan *int64 `locationName:"vlan" type:"integer" required:"true"`
}
// String returns the string representation
func (s NewPrivateVirtualInterface) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s NewPrivateVirtualInterface) GoString() string {
return s.String()
}
// A structure containing information about a private virtual interface that
// will be provisioned on a connection.
type NewPrivateVirtualInterfaceAllocation struct {
_ struct{} `type:"structure"`
// IP address assigned to the Amazon interface.
//
// Example: 192.168.1.1/30
AmazonAddress *string `locationName:"amazonAddress" type:"string"`
// Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
//
// Example: 65000
Asn *int64 `locationName:"asn" type:"integer" required:"true"`
// Authentication key for BGP configuration.
//
// Example: asdf34example
AuthKey *string `locationName:"authKey" type:"string"`
// IP address assigned to the customer interface.
//
// Example: 192.168.1.2/30
CustomerAddress *string `locationName:"customerAddress" type:"string"`
// The name of the virtual interface assigned by the customer.
//
// Example: "My VPC"
VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"`
// The VLAN ID.
//
// Example: 101
Vlan *int64 `locationName:"vlan" type:"integer" required:"true"`
}
// String returns the string representation
func (s NewPrivateVirtualInterfaceAllocation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s NewPrivateVirtualInterfaceAllocation) GoString() string {
return s.String()
}
// A structure containing information about a new public virtual interface.
type NewPublicVirtualInterface struct {
_ struct{} `type:"structure"`
// IP address assigned to the Amazon interface.
//
// Example: 192.168.1.1/30
AmazonAddress *string `locationName:"amazonAddress" type:"string" required:"true"`
// Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
//
// Example: 65000
Asn *int64 `locationName:"asn" type:"integer" required:"true"`
// Authentication key for BGP configuration.
//
// Example: asdf34example
AuthKey *string `locationName:"authKey" type:"string"`
// IP address assigned to the customer interface.
//
// Example: 192.168.1.2/30
CustomerAddress *string `locationName:"customerAddress" type:"string" required:"true"`
// A list of routes to be advertised to the AWS network in this region (public
// virtual interface).
RouteFilterPrefixes []*RouteFilterPrefix `locationName:"routeFilterPrefixes" type:"list" required:"true"`
// The name of the virtual interface assigned by the customer.
//
// Example: "My VPC"
VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"`
// The VLAN ID.
//
// Example: 101
Vlan *int64 `locationName:"vlan" type:"integer" required:"true"`
}
// String returns the string representation
func (s NewPublicVirtualInterface) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s NewPublicVirtualInterface) GoString() string {
return s.String()
}
// A structure containing information about a public virtual interface that
// will be provisioned on a connection.
type NewPublicVirtualInterfaceAllocation struct {
_ struct{} `type:"structure"`
// IP address assigned to the Amazon interface.
//
// Example: 192.168.1.1/30
AmazonAddress *string `locationName:"amazonAddress" type:"string" required:"true"`
// Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
//
// Example: 65000
Asn *int64 `locationName:"asn" type:"integer" required:"true"`
// Authentication key for BGP configuration.
//
// Example: asdf34example
AuthKey *string `locationName:"authKey" type:"string"`
// IP address assigned to the customer interface.
//
// Example: 192.168.1.2/30
CustomerAddress *string `locationName:"customerAddress" type:"string" required:"true"`
// A list of routes to be advertised to the AWS network in this region (public
// virtual interface).
RouteFilterPrefixes []*RouteFilterPrefix `locationName:"routeFilterPrefixes" type:"list" required:"true"`
// The name of the virtual interface assigned by the customer.
//
// Example: "My VPC"
VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string" required:"true"`
// The VLAN ID.
//
// Example: 101
Vlan *int64 `locationName:"vlan" type:"integer" required:"true"`
}
// String returns the string representation
func (s NewPublicVirtualInterfaceAllocation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s NewPublicVirtualInterfaceAllocation) GoString() string {
return s.String()
}
// A route filter prefix that the customer can advertise through Border Gateway
// Protocol (BGP) over a public virtual interface.
type RouteFilterPrefix struct {
_ struct{} `type:"structure"`
// CIDR notation for the advertised route. Multiple routes are separated by
// commas.
//
// Example: 10.10.10.0/24,10.10.11.0/24
Cidr *string `locationName:"cidr" type:"string"`
}
// String returns the string representation
func (s RouteFilterPrefix) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RouteFilterPrefix) GoString() string {
return s.String()
}
// You can create one or more AWS Direct Connect private virtual interfaces
// linking to your virtual private gateway.
//
// Virtual private gateways can be managed using the Amazon Virtual Private
// Cloud (Amazon VPC) console or the Amazon EC2 CreateVpnGateway action (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html).
type VirtualGateway struct {
_ struct{} `type:"structure"`
// The ID of the virtual private gateway to a VPC. This only applies to private
// virtual interfaces.
//
// Example: vgw-123er56
VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string"`
// State of the virtual private gateway. Pending: This is the initial state
// after calling CreateVpnGateway. Available: Ready for use by a private virtual
// interface. Deleting: This is the initial state after calling DeleteVpnGateway.
// Deleted: In this state, a private virtual interface is unable to send traffic
// over this gateway.
VirtualGatewayState *string `locationName:"virtualGatewayState" type:"string"`
}
// String returns the string representation
func (s VirtualGateway) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s VirtualGateway) GoString() string {
return s.String()
}
// A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect
// location and the customer.
type VirtualInterface struct {
_ struct{} `type:"structure"`
// IP address assigned to the Amazon interface.
//
// Example: 192.168.1.1/30
AmazonAddress *string `locationName:"amazonAddress" type:"string"`
// Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
//
// Example: 65000
Asn *int64 `locationName:"asn" type:"integer"`
// Authentication key for BGP configuration.
//
// Example: asdf34example
AuthKey *string `locationName:"authKey" type:"string"`
// ID of the connection.
//
// Example: dxcon-fg5678gh
//
// Default: None
ConnectionId *string `locationName:"connectionId" type:"string"`
// IP address assigned to the customer interface.
//
// Example: 192.168.1.2/30
CustomerAddress *string `locationName:"customerAddress" type:"string"`
// Information for generating the customer router configuration.
CustomerRouterConfig *string `locationName:"customerRouterConfig" type:"string"`
// Where the connection is located.
//
// Example: EqSV5
//
// Default: None
Location *string `locationName:"location" type:"string"`
OwnerAccount *string `locationName:"ownerAccount" type:"string"`
// A list of routes to be advertised to the AWS network in this region (public
// virtual interface).
RouteFilterPrefixes []*RouteFilterPrefix `locationName:"routeFilterPrefixes" type:"list"`
// The ID of the virtual private gateway to a VPC. This only applies to private
// virtual interfaces.
//
// Example: vgw-123er56
VirtualGatewayId *string `locationName:"virtualGatewayId" type:"string"`
// ID of the virtual interface.
//
// Example: dxvif-123dfg56
//
// Default: None
VirtualInterfaceId *string `locationName:"virtualInterfaceId" type:"string"`
// The name of the virtual interface assigned by the customer.
//
// Example: "My VPC"
VirtualInterfaceName *string `locationName:"virtualInterfaceName" type:"string"`
// State of the virtual interface. 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 will enter the 'Rejected' state.
VirtualInterfaceState *string `locationName:"virtualInterfaceState" type:"string" enum:"VirtualInterfaceState"`
// The type of virtual interface.
//
// Example: private (Amazon VPC) or public (Amazon S3, Amazon DynamoDB, and
// so on.)
VirtualInterfaceType *string `locationName:"virtualInterfaceType" type:"string"`
// The VLAN ID.
//
// Example: 101
Vlan *int64 `locationName:"vlan" type:"integer"`
}
// String returns the string representation
func (s VirtualInterface) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s VirtualInterface) GoString() string {
return s.String()
}
// State of the connection. 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 in the
// process of being deleted. Deleted: The connection has been deleted. Rejected:
// A hosted connection in the 'Ordering' state will enter the 'Rejected' state
// if it is deleted by the end customer.
const (
// @enum ConnectionState
ConnectionStateOrdering = "ordering"
// @enum ConnectionState
ConnectionStateRequested = "requested"
// @enum ConnectionState
ConnectionStatePending = "pending"
// @enum ConnectionState
ConnectionStateAvailable = "available"
// @enum ConnectionState
ConnectionStateDown = "down"
// @enum ConnectionState
ConnectionStateDeleting = "deleting"
// @enum ConnectionState
ConnectionStateDeleted = "deleted"
// @enum ConnectionState
ConnectionStateRejected = "rejected"
)
// State of the interconnect. 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 has been 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 in the process of being deleted. Deleted: The interconnect has been deleted.
const (
// @enum InterconnectState
InterconnectStateRequested = "requested"
// @enum InterconnectState
InterconnectStatePending = "pending"
// @enum InterconnectState
InterconnectStateAvailable = "available"
// @enum InterconnectState
InterconnectStateDown = "down"
// @enum InterconnectState
InterconnectStateDeleting = "deleting"
// @enum InterconnectState
InterconnectStateDeleted = "deleted"
)
// State of the virtual interface. 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 will enter the 'Rejected' state.
const (
// @enum VirtualInterfaceState
VirtualInterfaceStateConfirming = "confirming"
// @enum VirtualInterfaceState
VirtualInterfaceStateVerifying = "verifying"
// @enum VirtualInterfaceState
VirtualInterfaceStatePending = "pending"
// @enum VirtualInterfaceState
VirtualInterfaceStateAvailable = "available"
// @enum VirtualInterfaceState
VirtualInterfaceStateDeleting = "deleting"
// @enum VirtualInterfaceState
VirtualInterfaceStateDeleted = "deleted"
// @enum VirtualInterfaceState
VirtualInterfaceStateRejected = "rejected"
)
|