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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// Add a flow source to an existing bridge.
type AddBridgeFlowSourceRequest struct {
// The Amazon Resource Number (ARN) of the cloud flow to use as a source of this
// bridge.
//
// This member is required.
FlowArn *string
// The name of the flow source. This name is used to reference the source and must
// be unique among sources in this bridge.
//
// This member is required.
Name *string
// The name of the VPC interface attachment to use for this source.
FlowVpcInterfaceAttachment *VpcInterfaceAttachment
noSmithyDocumentSerde
}
// Add a network output to an existing bridge.
type AddBridgeNetworkOutputRequest struct {
// The network output IP Address.
//
// This member is required.
IpAddress *string
// The network output name. This name is used to reference the output and must be
// unique among outputs in this bridge.
//
// This member is required.
Name *string
// The network output's gateway network name.
//
// This member is required.
NetworkName *string
// The network output port.
//
// This member is required.
Port *int32
// The network output protocol.
//
// This member is required.
Protocol Protocol
// The network output TTL.
//
// This member is required.
Ttl *int32
noSmithyDocumentSerde
}
// Add a network source to an existing bridge.
type AddBridgeNetworkSourceRequest struct {
// The network source multicast IP.
//
// This member is required.
MulticastIp *string
// The name of the network source. This name is used to reference the source and
// must be unique among sources in this bridge.
//
// This member is required.
Name *string
// The network source's gateway network name.
//
// This member is required.
NetworkName *string
// The network source port.
//
// This member is required.
Port *int32
// The network source protocol.
//
// This member is required.
Protocol Protocol
noSmithyDocumentSerde
}
// Add an output to a bridge.
type AddBridgeOutputRequest struct {
// Add a network output to an existing bridge.
NetworkOutput *AddBridgeNetworkOutputRequest
noSmithyDocumentSerde
}
// Add a source to an existing bridge.
type AddBridgeSourceRequest struct {
// Add a flow source to an existing bridge.
FlowSource *AddBridgeFlowSourceRequest
// Add a network source to an existing bridge.
NetworkSource *AddBridgeNetworkSourceRequest
noSmithyDocumentSerde
}
type AddEgressGatewayBridgeRequest struct {
// The maximum expected bitrate (in bps).
//
// This member is required.
MaxBitrate *int32
noSmithyDocumentSerde
}
type AddIngressGatewayBridgeRequest struct {
// The maximum expected bitrate (in bps).
//
// This member is required.
MaxBitrate *int32
// The maximum number of expected outputs.
//
// This member is required.
MaxOutputs *int32
noSmithyDocumentSerde
}
// Create maintenance setting for a flow
type AddMaintenance struct {
// A day of a week when the maintenance will happen. Use
// Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
//
// This member is required.
MaintenanceDay MaintenanceDay
// UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes
// must be 00. Example: 13:00. The default value is 02:00.
//
// This member is required.
MaintenanceStartHour *string
noSmithyDocumentSerde
}
// The media stream that you want to add to the flow.
type AddMediaStreamRequest struct {
// A unique identifier for the media stream.
//
// This member is required.
MediaStreamId *int32
// A name that helps you distinguish one media stream from another.
//
// This member is required.
MediaStreamName *string
// The type of media stream.
//
// This member is required.
MediaStreamType MediaStreamType
// The attributes that you want to assign to the new media stream.
Attributes *MediaStreamAttributesRequest
// The sample rate (in Hz) for the stream. If the media stream type is video or
// ancillary data, set this value to 90000. If the media stream type is audio, set
// this value to either 48000 or 96000.
ClockRate *int32
// A description that can help you quickly identify what your media stream is used
// for.
Description *string
// The resolution of the video.
VideoFormat *string
noSmithyDocumentSerde
}
// The output that you want to add to this flow.
type AddOutputRequest struct {
// The protocol to use for the output.
//
// This member is required.
Protocol Protocol
// The range of IP addresses that should be allowed to initiate output requests to
// this flow. These IP addresses should be in the form of a Classless Inter-Domain
// Routing (CIDR) block; for example, 10.0.0.0/16.
CidrAllowList []string
// A description of the output. This description appears only on the AWS Elemental
// MediaConnect console and will not be seen by the end user.
Description *string
// The IP address from which video will be sent to output destinations.
Destination *string
// The type of key used for the encryption. If no keyType is provided, the service
// will use the default setting (static-key). Allowable encryption types:
// static-key.
Encryption *Encryption
// The maximum latency in milliseconds. This parameter applies only to RIST-based,
// Zixi-based, and Fujitsu-based streams.
MaxLatency *int32
// The media streams that are associated with the output, and the parameters for
// those associations.
MediaStreamOutputConfigurations []MediaStreamOutputConfigurationRequest
// The minimum latency in milliseconds for SRT-based streams. In streams that use
// the SRT protocol, this value that you set on your MediaConnect source or output
// represents the minimal potential latency of that connection. The latency of the
// stream is set to the highest number between the sender’s minimum latency and the
// receiver’s minimum latency.
MinLatency *int32
// The name of the output. This value must be unique within the current flow.
Name *string
// The port to use when content is distributed to this output.
Port *int32
// The remote ID for the Zixi-pull output stream.
RemoteId *string
// The port that the flow uses to send outbound requests to initiate connection
// with the sender.
SenderControlPort *int32
// The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
SmoothingLatency *int32
// The stream ID that you want to use for this transport. This parameter applies
// only to Zixi and SRT caller-based streams.
StreamId *string
// The name of the VPC interface attachment to use for this output.
VpcInterfaceAttachment *VpcInterfaceAttachment
noSmithyDocumentSerde
}
// A Bridge is the connection between your datacenter's Instances and the AWS
// cloud. A bridge can be used to send video from the AWS cloud to your datacenter
// or from your datacenter to the AWS cloud.
type Bridge struct {
// The Amazon Resource Number (ARN) of the bridge.
//
// This member is required.
BridgeArn *string
// This member is required.
BridgeState BridgeState
// The name of the bridge.
//
// This member is required.
Name *string
// The placement Amazon Resource Number (ARN) of the bridge.
//
// This member is required.
PlacementArn *string
BridgeMessages []MessageDetail
EgressGatewayBridge *EgressGatewayBridge
IngressGatewayBridge *IngressGatewayBridge
// The outputs on this bridge.
Outputs []BridgeOutput
// The settings for source failover.
SourceFailoverConfig *FailoverConfig
// The sources on this bridge.
Sources []BridgeSource
noSmithyDocumentSerde
}
// The output of the bridge. A flow output is delivered to the AWS cloud.
type BridgeFlowOutput struct {
// The Amazon Resource Number (ARN) of the cloud flow.
//
// This member is required.
FlowArn *string
// The Amazon Resource Number (ARN) of the flow source.
//
// This member is required.
FlowSourceArn *string
// The name of the bridge's output.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// The source of the bridge. A flow source originates in MediaConnect as an
// existing cloud flow.
type BridgeFlowSource struct {
// The ARN of the cloud flow used as a source of this bridge.
//
// This member is required.
FlowArn *string
// The name of the flow source.
//
// This member is required.
Name *string
// The name of the VPC interface attachment to use for this source.
FlowVpcInterfaceAttachment *VpcInterfaceAttachment
// The Amazon Resource Number (ARN) of the output.
OutputArn *string
noSmithyDocumentSerde
}
// The output of the bridge. A network output is delivered to your premises.
type BridgeNetworkOutput struct {
// The network output IP Address.
//
// This member is required.
IpAddress *string
// The network output name.
//
// This member is required.
Name *string
// The network output's gateway network name.
//
// This member is required.
NetworkName *string
// The network output port.
//
// This member is required.
Port *int32
// The network output protocol.
//
// This member is required.
Protocol Protocol
// The network output TTL.
//
// This member is required.
Ttl *int32
noSmithyDocumentSerde
}
// The source of the bridge. A network source originates at your premises.
type BridgeNetworkSource struct {
// The network source multicast IP.
//
// This member is required.
MulticastIp *string
// The name of the network source.
//
// This member is required.
Name *string
// The network source's gateway network name.
//
// This member is required.
NetworkName *string
// The network source port.
//
// This member is required.
Port *int32
// The network source protocol.
//
// This member is required.
Protocol Protocol
noSmithyDocumentSerde
}
// The output of the bridge.
type BridgeOutput struct {
// The output of the bridge. A flow output is delivered to the AWS cloud.
FlowOutput *BridgeFlowOutput
// The output of the bridge. A network output is delivered to your premises.
NetworkOutput *BridgeNetworkOutput
noSmithyDocumentSerde
}
// The bridge's source.
type BridgeSource struct {
// The source of the bridge. A flow source originates in MediaConnect as an
// existing cloud flow.
FlowSource *BridgeFlowSource
// The source of the bridge. A network source originates at your premises.
NetworkSource *BridgeNetworkSource
noSmithyDocumentSerde
}
// The transport parameters that are associated with an outbound media stream.
type DestinationConfiguration struct {
// The IP address where contents of the media stream will be sent.
//
// This member is required.
DestinationIp *string
// The port to use when the content of the media stream is distributed to the
// output.
//
// This member is required.
DestinationPort *int32
// The VPC interface that is used for the media stream associated with the output.
//
// This member is required.
Interface *Interface
// The IP address that the receiver requires in order to establish a connection
// with the flow. This value is represented by the elastic network interface IP
// address of the VPC. This field applies only to outputs that use the CDI or ST
// 2110 JPEG XS protocol.
//
// This member is required.
OutboundIp *string
noSmithyDocumentSerde
}
// The transport parameters that you want to associate with an outbound media
// stream.
type DestinationConfigurationRequest struct {
// The IP address where you want MediaConnect to send contents of the media stream.
//
// This member is required.
DestinationIp *string
// The port that you want MediaConnect to use when it distributes the media stream
// to the output.
//
// This member is required.
DestinationPort *int32
// The VPC interface that you want to use for the media stream associated with the
// output.
//
// This member is required.
Interface *InterfaceRequest
noSmithyDocumentSerde
}
type EgressGatewayBridge struct {
// The maximum expected bitrate (in bps) of the egress bridge.
//
// This member is required.
MaxBitrate *int32
// The ID of the instance running this bridge.
InstanceId *string
noSmithyDocumentSerde
}
// A collection of parameters that determine how MediaConnect will convert the
// content. These fields only apply to outputs on flows that have a CDI source.
type EncodingParameters struct {
// A value that is used to calculate compression for an output. The bitrate of the
// output is calculated as follows: Output bitrate = (1 / compressionFactor) *
// (source bitrate) This property only applies to outputs that use the ST 2110 JPEG
// XS protocol, with a flow source that uses the CDI protocol. Valid values are
// floating point numbers in the range of 3.0 to 10.0, inclusive.
//
// This member is required.
CompressionFactor *float64
// A setting on the encoder that drives compression settings. This property only
// applies to video media streams associated with outputs that use the ST 2110 JPEG
// XS protocol, with a flow source that uses the CDI protocol.
//
// This member is required.
EncoderProfile EncoderProfile
noSmithyDocumentSerde
}
// A collection of parameters that determine how MediaConnect will convert the
// content. These fields only apply to outputs on flows that have a CDI source.
type EncodingParametersRequest struct {
// A value that is used to calculate compression for an output. The bitrate of the
// output is calculated as follows: Output bitrate = (1 / compressionFactor) *
// (source bitrate) This property only applies to outputs that use the ST 2110 JPEG
// XS protocol, with a flow source that uses the CDI protocol. Valid values are
// floating point numbers in the range of 3.0 to 10.0, inclusive.
//
// This member is required.
CompressionFactor *float64
// A setting on the encoder that drives compression settings. This property only
// applies to video media streams associated with outputs that use the ST 2110 JPEG
// XS protocol, if at least one source on the flow uses the CDI protocol.
//
// This member is required.
EncoderProfile EncoderProfile
noSmithyDocumentSerde
}
// Information about the encryption of the flow.
type Encryption struct {
// The ARN of the role that you created during setup (when you set up AWS
// Elemental MediaConnect as a trusted entity).
//
// This member is required.
RoleArn *string
// The type of algorithm that is used for the encryption (such as aes128, aes192,
// or aes256).
Algorithm Algorithm
// A 128-bit, 16-byte hex value represented by a 32-character string, to be used
// with the key for encrypting content. This parameter is not valid for static key
// encryption.
ConstantInitializationVector *string
// The value of one of the devices that you configured with your digital rights
// management (DRM) platform key provider. This parameter is required for SPEKE
// encryption and is not valid for static key encryption.
DeviceId *string
// The type of key that is used for the encryption. If no keyType is provided, the
// service will use the default setting (static-key).
KeyType KeyType
// The AWS Region that the API Gateway proxy endpoint was created in. This
// parameter is required for SPEKE encryption and is not valid for static key
// encryption.
Region *string
// An identifier for the content. The service sends this value to the key server
// to identify the current endpoint. The resource ID is also known as the content
// ID. This parameter is required for SPEKE encryption and is not valid for static
// key encryption.
ResourceId *string
// The ARN of the secret that you created in AWS Secrets Manager to store the
// encryption key. This parameter is required for static key encryption and is not
// valid for SPEKE encryption.
SecretArn *string
// The URL from the API Gateway proxy that you set up to talk to your key server.
// This parameter is required for SPEKE encryption and is not valid for static key
// encryption.
Url *string
noSmithyDocumentSerde
}
// The settings for a flow entitlement.
type Entitlement struct {
// The ARN of the entitlement.
//
// This member is required.
EntitlementArn *string
// The name of the entitlement.
//
// This member is required.
Name *string
// The AWS account IDs that you want to share your content with. The receiving
// accounts (subscribers) will be allowed to create their own flow using your
// content as the source.
//
// This member is required.
Subscribers []string
// Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
DataTransferSubscriberFeePercent *int32
// A description of the entitlement.
Description *string
// The type of encryption that will be used on the output that is associated with
// this entitlement.
Encryption *Encryption
// An indication of whether the entitlement is enabled.
EntitlementStatus EntitlementStatus
noSmithyDocumentSerde
}
// The settings for source failover.
type FailoverConfig struct {
// The type of failover you choose for this flow. MERGE combines the source
// streams into a single stream, allowing graceful recovery from any single-source
// loss. FAILOVER allows switching between different streams.
FailoverMode FailoverMode
// Search window time to look for dash-7 packets
RecoveryWindow *int32
// The priority you want to assign to a source. You can have a primary stream and
// a backup stream or two equally prioritized streams.
SourcePriority *SourcePriority
State State
noSmithyDocumentSerde
}
// The settings for a flow, including its source, outputs, and entitlements.
type Flow struct {
// The Availability Zone that you want to create the flow in. These options are
// limited to the Availability Zones within the current AWS.
//
// This member is required.
AvailabilityZone *string
// The entitlements in this flow.
//
// This member is required.
Entitlements []Entitlement
// The Amazon Resource Name (ARN) of the flow.
//
// This member is required.
FlowArn *string
// The name of the flow.
//
// This member is required.
Name *string
// The outputs in this flow.
//
// This member is required.
Outputs []Output
// The settings for the source of the flow.
//
// This member is required.
Source *Source
// The current status of the flow.
//
// This member is required.
Status Status
// A description of the flow. This value is not used or seen outside of the
// current AWS Elemental MediaConnect account.
Description *string
// The IP address from which video will be sent to output destinations.
EgressIp *string
// The maintenance setting of a flow
Maintenance *Maintenance
// The media streams that are associated with the flow. After you associate a
// media stream with a source, you can also associate it with outputs on the flow.
MediaStreams []MediaStream
// The settings for source failover.
SourceFailoverConfig *FailoverConfig
Sources []Source
// The VPC Interfaces for this flow.
VpcInterfaces []VpcInterface
noSmithyDocumentSerde
}
// FMTP
type Fmtp struct {
// The format of the audio channel.
ChannelOrder *string
// The format that is used for the representation of color.
Colorimetry Colorimetry
// The frame rate for the video stream, in frames/second. For example: 60000/1001.
// If you specify a whole number, MediaConnect uses a ratio of N/1. For example, if
// you specify 60, MediaConnect uses 60/1 as the exactFramerate.
ExactFramerate *string
// The pixel aspect ratio (PAR) of the video.
Par *string
// The encoding range of the video.
Range Range
// The type of compression that was used to smooth the video’s appearance
ScanMode ScanMode
// The transfer characteristic system (TCS) that is used in the video.
Tcs Tcs
noSmithyDocumentSerde
}
// The settings that you want to use to define the media stream.
type FmtpRequest struct {
// The format of the audio channel.
ChannelOrder *string
// The format that is used for the representation of color.
Colorimetry Colorimetry
// The frame rate for the video stream, in frames/second. For example: 60000/1001.
// If you specify a whole number, MediaConnect uses a ratio of N/1. For example, if
// you specify 60, MediaConnect uses 60/1 as the exactFramerate.
ExactFramerate *string
// The pixel aspect ratio (PAR) of the video.
Par *string
// The encoding range of the video.
Range Range
// The type of compression that was used to smooth the video’s appearance.
ScanMode ScanMode
// The transfer characteristic system (TCS) that is used in the video.
Tcs Tcs
noSmithyDocumentSerde
}
// The frame resolution used by the video stream.
type FrameResolution struct {
// The number of pixels in the height of the video frame.
//
// This member is required.
FrameHeight *int32
// The number of pixels in the width of the video frame.
//
// This member is required.
FrameWidth *int32
noSmithyDocumentSerde
}
// The settings for a gateway, including its networks.
type Gateway struct {
// The range of IP addresses that contribute content or initiate output requests
// for flows communicating with this gateway. These IP addresses should be in the
// form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
//
// This member is required.
EgressCidrBlocks []string
// The Amazon Resource Name (ARN) of the gateway.
//
// This member is required.
GatewayArn *string
// The name of the gateway. This name can not be modified after the gateway is
// created.
//
// This member is required.
Name *string
// The list of networks in the gateway.
//
// This member is required.
Networks []GatewayNetwork
GatewayMessages []MessageDetail
// The current status of the gateway.
GatewayState GatewayState
noSmithyDocumentSerde
}
// The source configuration for cloud flows receiving a stream from a bridge.
type GatewayBridgeSource struct {
// The ARN of the bridge feeding this flow.
//
// This member is required.
BridgeArn *string
// The name of the VPC interface attachment to use for this bridge source.
VpcInterfaceAttachment *VpcInterfaceAttachment
noSmithyDocumentSerde
}
// The settings for an instance in a gateway.
type GatewayInstance struct {
// The availability of the instance to host new bridges. The bridgePlacement
// property can be LOCKED or AVAILABLE. If it is LOCKED, no new bridges can be
// deployed to this instance. If it is AVAILABLE, new bridges can be added to this
// instance.
//
// This member is required.
BridgePlacement BridgePlacement
// The connection state of the instance.
//
// This member is required.
ConnectionStatus ConnectionStatus
// The Amazon Resource Name (ARN) of the instance.
//
// This member is required.
GatewayArn *string
// The Amazon Resource Name (ARN) of the gateway.
//
// This member is required.
GatewayInstanceArn *string
// The managed instance ID generated by the SSM install. This will begin with
// "mi-".
//
// This member is required.
InstanceId *string
// The status of the instance.
//
// This member is required.
InstanceState InstanceState
// The running bridge count.
//
// This member is required.
RunningBridgeCount *int32
InstanceMessages []MessageDetail
noSmithyDocumentSerde
}
// The network settings for a gateway.
type GatewayNetwork struct {
// A unique IP address range to use for this network. These IP addresses should be
// in the form of a Classless Inter-Domain Routing (CIDR) block; for example,
// 10.0.0.0/16.
//
// This member is required.
CidrBlock *string
// The name of the network. This name is used to reference the network and must be
// unique among networks in this gateway.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// The entitlements that you want to grant on a flow.
type GrantEntitlementRequest struct {
// The AWS account IDs that you want to share your content with. The receiving
// accounts (subscribers) will be allowed to create their own flows using your
// content as the source.
//
// This member is required.
Subscribers []string
// Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
DataTransferSubscriberFeePercent *int32
// A description of the entitlement. This description appears only on the AWS
// Elemental MediaConnect console and will not be seen by the subscriber or end
// user.
Description *string
// The type of encryption that will be used on the output that is associated with
// this entitlement. Allowable encryption types: static-key, speke.
Encryption *Encryption
// An indication of whether the new entitlement should be enabled or disabled as
// soon as it is created. If you don’t specify the entitlementStatus field in your
// request, MediaConnect sets it to ENABLED.
EntitlementStatus EntitlementStatus
// The name of the entitlement. This value must be unique within the current flow.
Name *string
noSmithyDocumentSerde
}
type IngressGatewayBridge struct {
// The maximum expected bitrate (in bps) of the ingress bridge.
//
// This member is required.
MaxBitrate *int32
// The maximum number of outputs on the ingress bridge.
//
// This member is required.
MaxOutputs *int32
// The ID of the instance running this bridge.
InstanceId *string
noSmithyDocumentSerde
}
// The transport parameters that are associated with an incoming media stream.
type InputConfiguration struct {
// The IP address that the flow listens on for incoming content for a media stream.
//
// This member is required.
InputIp *string
// The port that the flow listens on for an incoming media stream.
//
// This member is required.
InputPort *int32
// The VPC interface where the media stream comes in from.
//
// This member is required.
Interface *Interface
noSmithyDocumentSerde
}
// The transport parameters that you want to associate with an incoming media
// stream.
type InputConfigurationRequest struct {
// The port that you want the flow to listen on for an incoming media stream.
//
// This member is required.
InputPort *int32
// The VPC interface that you want to use for the incoming media stream.
//
// This member is required.
Interface *InterfaceRequest
noSmithyDocumentSerde
}
// The VPC interface that is used for the media stream associated with the source
// or output.
type Interface struct {
// The name of the VPC interface.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// The VPC interface that you want to designate where the media stream is coming
// from or going to.
type InterfaceRequest struct {
// The name of the VPC interface.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Displays details of the selected bridge.
type ListedBridge struct {
// The ARN of the bridge.
//
// This member is required.
BridgeArn *string
// This member is required.
BridgeState BridgeState
// The type of the bridge.
//
// This member is required.
BridgeType *string
// The name of the bridge.
//
// This member is required.
Name *string
// The ARN of the gateway associated with the bridge.
//
// This member is required.
PlacementArn *string
noSmithyDocumentSerde
}
// An entitlement that has been granted to you from other AWS accounts.
type ListedEntitlement struct {
// The ARN of the entitlement.
//
// This member is required.
EntitlementArn *string
// The name of the entitlement.
//
// This member is required.
EntitlementName *string
// Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
DataTransferSubscriberFeePercent *int32
noSmithyDocumentSerde
}
// Provides a summary of a flow, including its ARN, Availability Zone, and source
// type.
type ListedFlow struct {
// The Availability Zone that the flow was created in.
//
// This member is required.
AvailabilityZone *string
// A description of the flow.
//
// This member is required.
Description *string
// The ARN of the flow.
//
// This member is required.
FlowArn *string
// The name of the flow.
//
// This member is required.
Name *string
// The type of source. This value is either owned (originated somewhere other than
// an AWS Elemental MediaConnect flow owned by another AWS account) or entitled
// (originated at an AWS Elemental MediaConnect flow owned by another AWS account).
//
// This member is required.
SourceType SourceType
// The current status of the flow.
//
// This member is required.
Status Status
// The maintenance setting of a flow
Maintenance *Maintenance
noSmithyDocumentSerde
}
// Provides a summary of a gateway, including its name, ARN, and status.
type ListedGateway struct {
// The Amazon Resource Name (ARN) of the gateway.
//
// This member is required.
GatewayArn *string
// This member is required.
GatewayState GatewayState
// The name of the gateway.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Provides a summary of an instance.
type ListedGatewayInstance struct {
// The Amazon Resource Name (ARN) of the gateway.
//
// This member is required.
GatewayArn *string
// The Amazon Resource Name (ARN) of the instance.
//
// This member is required.
GatewayInstanceArn *string
// The managed instance ID generated by the SSM install. This will begin with
// "mi-".
//
// This member is required.
InstanceId *string
// The status of the instance.
InstanceState InstanceState
noSmithyDocumentSerde
}
// The maintenance setting of a flow
type Maintenance struct {
// A day of a week when the maintenance will happen. Use
// Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
MaintenanceDay MaintenanceDay
// The Maintenance has to be performed before this deadline in ISO UTC format.
// Example: 2021-01-30T08:30:00Z.
MaintenanceDeadline *string
// A scheduled date in ISO UTC format when the maintenance will happen. Use
// YYYY-MM-DD format. Example: 2021-01-30.
MaintenanceScheduledDate *string
// UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes
// must be 00. Example: 13:00. The default value is 02:00.
MaintenanceStartHour *string
noSmithyDocumentSerde
}
// A single track or stream of media that contains video, audio, or ancillary
// data. After you add a media stream to a flow, you can associate it with sources
// and outputs on that flow, as long as they use the CDI protocol or the ST 2110
// JPEG XS protocol. Each source or output can consist of one or many media
// streams.
type MediaStream struct {
// The format type number (sometimes referred to as RTP payload type) of the media
// stream. MediaConnect assigns this value to the media stream. For ST 2110 JPEG XS
// outputs, you need to provide this value to the receiver.
//
// This member is required.
Fmt *int32
// A unique identifier for the media stream.
//
// This member is required.
MediaStreamId *int32
// A name that helps you distinguish one media stream from another.
//
// This member is required.
MediaStreamName *string
// The type of media stream.
//
// This member is required.
MediaStreamType MediaStreamType
// Attributes that are related to the media stream.
Attributes *MediaStreamAttributes
// The sample rate for the stream. This value is measured in Hz.
ClockRate *int32
// A description that can help you quickly identify what your media stream is used
// for.
Description *string
// The resolution of the video.
VideoFormat *string
noSmithyDocumentSerde
}
// Attributes that are related to the media stream.
type MediaStreamAttributes struct {
// A set of parameters that define the media stream.
//
// This member is required.
Fmtp *Fmtp
// The audio language, in a format that is recognized by the receiver.
Lang *string
noSmithyDocumentSerde
}
// Attributes that are related to the media stream.
type MediaStreamAttributesRequest struct {
// The settings that you want to use to define the media stream.
Fmtp *FmtpRequest
// The audio language, in a format that is recognized by the receiver.
Lang *string
noSmithyDocumentSerde
}
// The media stream that is associated with the output, and the parameters for
// that association.
type MediaStreamOutputConfiguration struct {
// The format that was used to encode the data. For ancillary data streams, set
// the encoding name to smpte291. For audio streams, set the encoding name to pcm.
// For video, 2110 streams, set the encoding name to raw. For video, JPEG XS
// streams, set the encoding name to jxsv.
//
// This member is required.
EncodingName EncodingName
// The name of the media stream.
//
// This member is required.
MediaStreamName *string
// The transport parameters that are associated with each outbound media stream.
DestinationConfigurations []DestinationConfiguration
// Encoding parameters
EncodingParameters *EncodingParameters
noSmithyDocumentSerde
}
// The media stream that you want to associate with the output, and the parameters
// for that association.
type MediaStreamOutputConfigurationRequest struct {
// The format that will be used to encode the data. For ancillary data streams,
// set the encoding name to smpte291. For audio streams, set the encoding name to
// pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS
// streams, set the encoding name to jxsv.
//
// This member is required.
EncodingName EncodingName
// The name of the media stream that is associated with the output.
//
// This member is required.
MediaStreamName *string
// The transport parameters that you want to associate with the media stream.
DestinationConfigurations []DestinationConfigurationRequest
// A collection of parameters that determine how MediaConnect will convert the
// content. These fields only apply to outputs on flows that have a CDI source.
EncodingParameters *EncodingParametersRequest
noSmithyDocumentSerde
}
// The media stream that is associated with the source, and the parameters for
// that association.
type MediaStreamSourceConfiguration struct {
// The format that was used to encode the data. For ancillary data streams, set
// the encoding name to smpte291. For audio streams, set the encoding name to pcm.
// For video, 2110 streams, set the encoding name to raw. For video, JPEG XS
// streams, set the encoding name to jxsv.
//
// This member is required.
EncodingName EncodingName
// The name of the media stream.
//
// This member is required.
MediaStreamName *string
// The transport parameters that are associated with an incoming media stream.
InputConfigurations []InputConfiguration
noSmithyDocumentSerde
}
// The definition of a media stream that you want to associate with the source.
type MediaStreamSourceConfigurationRequest struct {
// The format you want to use to encode the data. For ancillary data streams, set
// the encoding name to smpte291. For audio streams, set the encoding name to pcm.
// For video, 2110 streams, set the encoding name to raw. For video, JPEG XS
// streams, set the encoding name to jxsv.
//
// This member is required.
EncodingName EncodingName
// The name of the media stream.
//
// This member is required.
MediaStreamName *string
// The transport parameters that you want to associate with the media stream.
InputConfigurations []InputConfigurationRequest
noSmithyDocumentSerde
}
type MessageDetail struct {
// The error code.
//
// This member is required.
Code *string
// The specific error message that MediaConnect returns to help you understand the
// reason that the request did not succeed.
//
// This member is required.
Message *string
// The name of the resource.
ResourceName *string
noSmithyDocumentSerde
}
// Messages that provide the state of the flow.
type Messages struct {
// A list of errors that might have been generated from processes on this flow.
//
// This member is required.
Errors []string
noSmithyDocumentSerde
}
// A savings plan that reserves a certain amount of outbound bandwidth usage at a
// discounted rate each month over a period of time.
type Offering struct {
// The type of currency that is used for billing. The currencyCode used for all
// reservations is US dollars.
//
// This member is required.
CurrencyCode *string
// The length of time that your reservation would be active.
//
// This member is required.
Duration *int32
// The unit of measurement for the duration of the offering.
//
// This member is required.
DurationUnits DurationUnits
// The Amazon Resource Name (ARN) that MediaConnect assigns to the offering.
//
// This member is required.
OfferingArn *string
// A description of the offering.
//
// This member is required.
OfferingDescription *string
// The cost of a single unit. This value, in combination with priceUnits, makes up
// the rate.
//
// This member is required.
PricePerUnit *string
// The unit of measurement that is used for billing. This value, in combination
// with pricePerUnit, makes up the rate.
//
// This member is required.
PriceUnits PriceUnits
// A definition of the amount of outbound bandwidth that you would be reserving if
// you purchase the offering.
//
// This member is required.
ResourceSpecification *ResourceSpecification
noSmithyDocumentSerde
}
// The settings for an output.
type Output struct {
// The name of the output. This value must be unique within the current flow.
//
// This member is required.
Name *string
// The ARN of the output.
//
// This member is required.
OutputArn *string
// The ARN of the bridge that added this output.
BridgeArn *string
// The bridge output ports currently in use.
BridgePorts []int32
// Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
DataTransferSubscriberFeePercent *int32
// A description of the output.
Description *string
// The address where you want to send the output.
Destination *string
// The type of key used for the encryption. If no keyType is provided, the service
// will use the default setting (static-key).
Encryption *Encryption
// The ARN of the entitlement on the originator''s flow. This value is relevant
// only on entitled flows.
EntitlementArn *string
// The IP address that the receiver requires in order to establish a connection
// with the flow. For public networking, the ListenerAddress is represented by the
// elastic IP address of the flow. For private networking, the ListenerAddress is
// represented by the elastic network interface IP address of the VPC. This field
// applies only to outputs that use the Zixi pull or SRT listener protocol.
ListenerAddress *string
// The input ARN of the AWS Elemental MediaLive channel. This parameter is
// relevant only for outputs that were added by creating a MediaLive input.
MediaLiveInputArn *string
// The configuration for each media stream that is associated with the output.
MediaStreamOutputConfigurations []MediaStreamOutputConfiguration
// The port to use when content is distributed to this output.
Port *int32
// Attributes related to the transport stream that are used in the output.
Transport *Transport
// The name of the VPC interface attachment to use for this output.
VpcInterfaceAttachment *VpcInterfaceAttachment
noSmithyDocumentSerde
}
// A pricing agreement for a discounted rate for a specific outbound bandwidth
// that your MediaConnect account will use each month over a specific time period.
// The discounted rate in the reservation applies to outbound bandwidth for all
// flows from your account until your account reaches the amount of bandwidth in
// your reservation. If you use more outbound bandwidth than the agreed upon amount
// in a single month, the overage is charged at the on-demand rate.
type Reservation struct {
// The type of currency that is used for billing. The currencyCode used for your
// reservation is US dollars.
//
// This member is required.
CurrencyCode *string
// The length of time that this reservation is active. MediaConnect defines this
// value in the offering.
//
// This member is required.
Duration *int32
// The unit of measurement for the duration of the reservation. MediaConnect
// defines this value in the offering.
//
// This member is required.
DurationUnits DurationUnits
// The day and time that this reservation expires. This value is calculated based
// on the start date and time that you set and the offering's duration.
//
// This member is required.
End *string
// The Amazon Resource Name (ARN) that MediaConnect assigns to the offering.
//
// This member is required.
OfferingArn *string
// A description of the offering. MediaConnect defines this value in the offering.
//
// This member is required.
OfferingDescription *string
// The cost of a single unit. This value, in combination with priceUnits, makes up
// the rate. MediaConnect defines this value in the offering.
//
// This member is required.
PricePerUnit *string
// The unit of measurement that is used for billing. This value, in combination
// with pricePerUnit, makes up the rate. MediaConnect defines this value in the
// offering.
//
// This member is required.
PriceUnits PriceUnits
// The Amazon Resource Name (ARN) that MediaConnect assigns to the reservation
// when you purchase an offering.
//
// This member is required.
ReservationArn *string
// The name that you assigned to the reservation when you purchased the offering.
//
// This member is required.
ReservationName *string
// The status of your reservation.
//
// This member is required.
ReservationState ReservationState
// A definition of the amount of outbound bandwidth that you would be reserving if
// you purchase the offering. MediaConnect defines the values that make up the
// resourceSpecification in the offering.
//
// This member is required.
ResourceSpecification *ResourceSpecification
// The day and time that the reservation becomes active. You set this value when
// you purchase the offering.
//
// This member is required.
Start *string
noSmithyDocumentSerde
}
// A definition of what is being billed for, including the type and amount.
type ResourceSpecification struct {
// The type of resource and the unit that is being billed for.
//
// This member is required.
ResourceType ResourceType
// The amount of outbound bandwidth that is discounted in the offering.
ReservedBitrate *int32
noSmithyDocumentSerde
}
// The source configuration for cloud flows receiving a stream from a bridge.
type SetGatewayBridgeSourceRequest struct {
// The ARN of the bridge feeding this flow.
//
// This member is required.
BridgeArn *string
// The name of the VPC interface attachment to use for this bridge source.
VpcInterfaceAttachment *VpcInterfaceAttachment
noSmithyDocumentSerde
}
// The settings for the source of the flow.
type SetSourceRequest struct {
// The type of encryption that is used on the content ingested from this source.
// Allowable encryption types: static-key.
Decryption *Encryption
// A description for the source. This value is not used or seen outside of the
// current AWS Elemental MediaConnect account.
Description *string
// The ARN of the entitlement that allows you to subscribe to this flow. The
// entitlement is set by the flow originator, and the ARN is generated as part of
// the originator's flow.
EntitlementArn *string
// The source configuration for cloud flows receiving a stream from a bridge.
GatewayBridgeSource *SetGatewayBridgeSourceRequest
// The port that the flow will be listening on for incoming content.
IngestPort *int32
// The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
MaxBitrate *int32
// The maximum latency in milliseconds. This parameter applies only to RIST-based,
// Zixi-based, and Fujitsu-based streams.
MaxLatency *int32
// The size of the buffer (in milliseconds) to use to sync incoming source data.
MaxSyncBuffer *int32
// The media streams that are associated with the source, and the parameters for
// those associations.
MediaStreamSourceConfigurations []MediaStreamSourceConfigurationRequest
// The minimum latency in milliseconds for SRT-based streams. In streams that use
// the SRT protocol, this value that you set on your MediaConnect source or output
// represents the minimal potential latency of that connection. The latency of the
// stream is set to the highest number between the sender’s minimum latency and the
// receiver’s minimum latency.
MinLatency *int32
// The name of the source.
Name *string
// The protocol that is used by the source.
Protocol Protocol
// The port that the flow uses to send outbound requests to initiate connection
// with the sender.
SenderControlPort *int32
// The IP address that the flow communicates with to initiate connection with the
// sender.
SenderIpAddress *string
// Source IP or domain name for SRT-caller protocol.
SourceListenerAddress *string
// Source port for SRT-caller protocol.
SourceListenerPort *int32
// The stream ID that you want to use for this transport. This parameter applies
// only to Zixi and SRT caller-based streams.
StreamId *string
// The name of the VPC interface to use for this source.
VpcInterfaceName *string
// The range of IP addresses that should be allowed to contribute content to your
// source. These IP addresses should be in the form of a Classless Inter-Domain
// Routing (CIDR) block; for example, 10.0.0.0/16.
WhitelistCidr *string
noSmithyDocumentSerde
}
// The settings for the source of the flow.
type Source struct {
// The name of the source.
//
// This member is required.
Name *string
// The ARN of the source.
//
// This member is required.
SourceArn *string
// Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
DataTransferSubscriberFeePercent *int32
// The type of encryption that is used on the content ingested from this source.
Decryption *Encryption
// A description for the source. This value is not used or seen outside of the
// current AWS Elemental MediaConnect account.
Description *string
// The ARN of the entitlement that allows you to subscribe to content that comes
// from another AWS account. The entitlement is set by the content originator and
// the ARN is generated as part of the originator's flow.
EntitlementArn *string
// The source configuration for cloud flows receiving a stream from a bridge.
GatewayBridgeSource *GatewayBridgeSource
// The IP address that the flow will be listening on for incoming content.
IngestIp *string
// The port that the flow will be listening on for incoming content.
IngestPort *int32
// The media streams that are associated with the source, and the parameters for
// those associations.
MediaStreamSourceConfigurations []MediaStreamSourceConfiguration
// The port that the flow uses to send outbound requests to initiate connection
// with the sender.
SenderControlPort *int32
// The IP address that the flow communicates with to initiate connection with the
// sender.
SenderIpAddress *string
// Attributes related to the transport stream that are used in the source.
Transport *Transport
// The name of the VPC interface that is used for this source.
VpcInterfaceName *string
// The range of IP addresses that should be allowed to contribute content to your
// source. These IP addresses should be in the form of a Classless Inter-Domain
// Routing (CIDR) block; for example, 10.0.0.0/16.
WhitelistCidr *string
noSmithyDocumentSerde
}
// The priority you want to assign to a source. You can have a primary stream and
// a backup stream or two equally prioritized streams.
type SourcePriority struct {
// The name of the source you choose as the primary source for this flow.
PrimarySource *string
noSmithyDocumentSerde
}
// Attributes related to the transport stream that are used in a source or output.
type Transport struct {
// The protocol that is used by the source or output.
//
// This member is required.
Protocol Protocol
// The range of IP addresses that should be allowed to initiate output requests to
// this flow. These IP addresses should be in the form of a Classless Inter-Domain
// Routing (CIDR) block; for example, 10.0.0.0/16.
CidrAllowList []string
// The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
MaxBitrate *int32
// The maximum latency in milliseconds. This parameter applies only to RIST-based,
// Zixi-based, and Fujitsu-based streams.
MaxLatency *int32
// The size of the buffer (in milliseconds) to use to sync incoming source data.
MaxSyncBuffer *int32
// The minimum latency in milliseconds for SRT-based streams. In streams that use
// the SRT protocol, this value that you set on your MediaConnect source or output
// represents the minimal potential latency of that connection. The latency of the
// stream is set to the highest number between the sender’s minimum latency and the
// receiver’s minimum latency.
MinLatency *int32
// The remote ID for the Zixi-pull stream.
RemoteId *string
// The port that the flow uses to send outbound requests to initiate connection
// with the sender.
SenderControlPort *int32
// The IP address that the flow communicates with to initiate connection with the
// sender.
SenderIpAddress *string
// The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
SmoothingLatency *int32
// Source IP or domain name for SRT-caller protocol.
SourceListenerAddress *string
// Source port for SRT-caller protocol.
SourceListenerPort *int32
// The stream ID that you want to use for this transport. This parameter applies
// only to Zixi and SRT caller-based streams.
StreamId *string
noSmithyDocumentSerde
}
// The metadata of the transport stream in the current flow's source.
type TransportMediaInfo struct {
// The list of transport stream programs in the current flow's source.
//
// This member is required.
Programs []TransportStreamProgram
noSmithyDocumentSerde
}
// The metadata of an elementary transport stream.
type TransportStream struct {
// The Packet ID (PID) as it is reported in the Program Map Table.
//
// This member is required.
Pid *int32
// The Stream Type as it is reported in the Program Map Table.
//
// This member is required.
StreamType *string
// The number of channels in the audio stream.
Channels *int32
// The codec used by the stream.
Codec *string
// The frame rate used by the video stream.
FrameRate *string
// The frame resolution used by the video stream.
FrameResolution *FrameResolution
// The sample rate used by the audio stream.
SampleRate *int32
// The sample bit size used by the audio stream.
SampleSize *int32
noSmithyDocumentSerde
}
// The metadata of a single transport stream program.
type TransportStreamProgram struct {
// The Program Clock Reference (PCR) Packet ID (PID) as it is reported in the
// Program Association Table.
//
// This member is required.
PcrPid *int32
// The program number as it is reported in the Program Association Table.
//
// This member is required.
ProgramNumber *int32
// The program Packet ID (PID) as it is reported in the Program Association Table.
//
// This member is required.
ProgramPid *int32
// The list of elementary transport streams in the program. The list includes
// video, audio, and data streams.
//
// This member is required.
Streams []TransportStream
// The program name as it is reported in the Program Association Table.
ProgramName *string
noSmithyDocumentSerde
}
// Update the flow source of the bridge.
type UpdateBridgeFlowSourceRequest struct {
// The ARN of the cloud flow to use as a source of this bridge.
FlowArn *string
// The name of the VPC interface attachment to use for this source.
FlowVpcInterfaceAttachment *VpcInterfaceAttachment
noSmithyDocumentSerde
}
// Update an existing network output.
type UpdateBridgeNetworkOutputRequest struct {
// The network output IP Address.
IpAddress *string
// The network output's gateway network name.
NetworkName *string
// The network output port.
Port *int32
// The network output protocol.
Protocol Protocol
// The network output TTL.
Ttl *int32
noSmithyDocumentSerde
}
// Update the network source of the bridge.
type UpdateBridgeNetworkSourceRequest struct {
// The network source multicast IP.
MulticastIp *string
// The network source's gateway network name.
NetworkName *string
// The network source port.
Port *int32
// The network source protocol.
Protocol Protocol
noSmithyDocumentSerde
}
type UpdateEgressGatewayBridgeRequest struct {
// Update an existing egress-type bridge.
MaxBitrate *int32
noSmithyDocumentSerde
}
// Information about the encryption of the flow.
type UpdateEncryption struct {
// The type of algorithm that is used for the encryption (such as aes128, aes192,
// or aes256).
Algorithm Algorithm
// A 128-bit, 16-byte hex value represented by a 32-character string, to be used
// with the key for encrypting content. This parameter is not valid for static key
// encryption.
ConstantInitializationVector *string
// The value of one of the devices that you configured with your digital rights
// management (DRM) platform key provider. This parameter is required for SPEKE
// encryption and is not valid for static key encryption.
DeviceId *string
// The type of key that is used for the encryption. If no keyType is provided, the
// service will use the default setting (static-key).
KeyType KeyType
// The AWS Region that the API Gateway proxy endpoint was created in. This
// parameter is required for SPEKE encryption and is not valid for static key
// encryption.
Region *string
// An identifier for the content. The service sends this value to the key server
// to identify the current endpoint. The resource ID is also known as the content
// ID. This parameter is required for SPEKE encryption and is not valid for static
// key encryption.
ResourceId *string
// The ARN of the role that you created during setup (when you set up AWS
// Elemental MediaConnect as a trusted entity).
RoleArn *string
// The ARN of the secret that you created in AWS Secrets Manager to store the
// encryption key. This parameter is required for static key encryption and is not
// valid for SPEKE encryption.
SecretArn *string
// The URL from the API Gateway proxy that you set up to talk to your key server.
// This parameter is required for SPEKE encryption and is not valid for static key
// encryption.
Url *string
noSmithyDocumentSerde
}
// The settings for source failover.
type UpdateFailoverConfig struct {
// The type of failover you choose for this flow. MERGE combines the source
// streams into a single stream, allowing graceful recovery from any single-source
// loss. FAILOVER allows switching between different streams.
FailoverMode FailoverMode
// Recovery window time to look for dash-7 packets
RecoveryWindow *int32
// The priority you want to assign to a source. You can have a primary stream and
// a backup stream or two equally prioritized streams.
SourcePriority *SourcePriority
State State
noSmithyDocumentSerde
}
// The source configuration for cloud flows receiving a stream from a bridge.
type UpdateGatewayBridgeSourceRequest struct {
// The ARN of the bridge feeding this flow.
BridgeArn *string
// The name of the VPC interface attachment to use for this bridge source.
VpcInterfaceAttachment *VpcInterfaceAttachment
noSmithyDocumentSerde
}
type UpdateIngressGatewayBridgeRequest struct {
// The maximum expected bitrate (in bps).
MaxBitrate *int32
// The maximum number of expected outputs.
MaxOutputs *int32
noSmithyDocumentSerde
}
// Update maintenance setting for a flow
type UpdateMaintenance struct {
// A day of a week when the maintenance will happen. use
// Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
MaintenanceDay MaintenanceDay
// A scheduled date in ISO UTC format when the maintenance will happen. Use
// YYYY-MM-DD format. Example: 2021-01-30.
MaintenanceScheduledDate *string
// UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes
// must be 00. Example: 13:00. The default value is 02:00.
MaintenanceStartHour *string
noSmithyDocumentSerde
}
// The settings for a VPC Source.
type VpcInterface struct {
// Immutable and has to be a unique against other VpcInterfaces in this Flow.
//
// This member is required.
Name *string
// IDs of the network interfaces created in customer's account by MediaConnect.
//
// This member is required.
NetworkInterfaceIds []string
// The type of network interface.
//
// This member is required.
NetworkInterfaceType NetworkInterfaceType
// Role Arn MediaConnect can assumes to create ENIs in customer's account
//
// This member is required.
RoleArn *string
// Security Group IDs to be used on ENI.
//
// This member is required.
SecurityGroupIds []string
// Subnet must be in the AZ of the Flow
//
// This member is required.
SubnetId *string
noSmithyDocumentSerde
}
// The settings for attaching a VPC interface to an resource.
type VpcInterfaceAttachment struct {
// The name of the VPC interface to use for this resource.
VpcInterfaceName *string
noSmithyDocumentSerde
}
// Desired VPC Interface for a Flow
type VpcInterfaceRequest struct {
// The name of the VPC Interface. This value must be unique within the current
// flow.
//
// This member is required.
Name *string
// Role Arn MediaConnect can assumes to create ENIs in customer's account
//
// This member is required.
RoleArn *string
// Security Group IDs to be used on ENI.
//
// This member is required.
SecurityGroupIds []string
// Subnet must be in the AZ of the Flow
//
// This member is required.
SubnetId *string
// The type of network interface. If this value is not included in the request,
// MediaConnect uses ENA as the networkInterfaceType.
NetworkInterfaceType NetworkInterfaceType
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|