mediaconnect.d.ts 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186
  1. import {Request} from '../lib/request';
  2. import {Response} from '../lib/response';
  3. import {AWSError} from '../lib/error';
  4. import {Service} from '../lib/service';
  5. import {WaiterConfiguration} from '../lib/service';
  6. import {ServiceConfigurationOptions} from '../lib/service';
  7. import {ConfigBase as Config} from '../lib/config-base';
  8. interface Blob {}
  9. declare class MediaConnect extends Service {
  10. /**
  11. * Constructs a service object. This object has one method for each API operation.
  12. */
  13. constructor(options?: MediaConnect.Types.ClientConfiguration)
  14. config: Config & MediaConnect.Types.ClientConfiguration;
  15. /**
  16. * Adds outputs to an existing bridge.
  17. */
  18. addBridgeOutputs(params: MediaConnect.Types.AddBridgeOutputsRequest, callback?: (err: AWSError, data: MediaConnect.Types.AddBridgeOutputsResponse) => void): Request<MediaConnect.Types.AddBridgeOutputsResponse, AWSError>;
  19. /**
  20. * Adds outputs to an existing bridge.
  21. */
  22. addBridgeOutputs(callback?: (err: AWSError, data: MediaConnect.Types.AddBridgeOutputsResponse) => void): Request<MediaConnect.Types.AddBridgeOutputsResponse, AWSError>;
  23. /**
  24. * Adds sources to an existing bridge.
  25. */
  26. addBridgeSources(params: MediaConnect.Types.AddBridgeSourcesRequest, callback?: (err: AWSError, data: MediaConnect.Types.AddBridgeSourcesResponse) => void): Request<MediaConnect.Types.AddBridgeSourcesResponse, AWSError>;
  27. /**
  28. * Adds sources to an existing bridge.
  29. */
  30. addBridgeSources(callback?: (err: AWSError, data: MediaConnect.Types.AddBridgeSourcesResponse) => void): Request<MediaConnect.Types.AddBridgeSourcesResponse, AWSError>;
  31. /**
  32. * Adds media streams to an existing flow. After you add a media stream to a flow, you can associate it with a source and/or an output that uses the ST 2110 JPEG XS or CDI protocol.
  33. */
  34. addFlowMediaStreams(params: MediaConnect.Types.AddFlowMediaStreamsRequest, callback?: (err: AWSError, data: MediaConnect.Types.AddFlowMediaStreamsResponse) => void): Request<MediaConnect.Types.AddFlowMediaStreamsResponse, AWSError>;
  35. /**
  36. * Adds media streams to an existing flow. After you add a media stream to a flow, you can associate it with a source and/or an output that uses the ST 2110 JPEG XS or CDI protocol.
  37. */
  38. addFlowMediaStreams(callback?: (err: AWSError, data: MediaConnect.Types.AddFlowMediaStreamsResponse) => void): Request<MediaConnect.Types.AddFlowMediaStreamsResponse, AWSError>;
  39. /**
  40. * Adds outputs to an existing flow. You can create up to 50 outputs per flow.
  41. */
  42. addFlowOutputs(params: MediaConnect.Types.AddFlowOutputsRequest, callback?: (err: AWSError, data: MediaConnect.Types.AddFlowOutputsResponse) => void): Request<MediaConnect.Types.AddFlowOutputsResponse, AWSError>;
  43. /**
  44. * Adds outputs to an existing flow. You can create up to 50 outputs per flow.
  45. */
  46. addFlowOutputs(callback?: (err: AWSError, data: MediaConnect.Types.AddFlowOutputsResponse) => void): Request<MediaConnect.Types.AddFlowOutputsResponse, AWSError>;
  47. /**
  48. * Adds Sources to flow
  49. */
  50. addFlowSources(params: MediaConnect.Types.AddFlowSourcesRequest, callback?: (err: AWSError, data: MediaConnect.Types.AddFlowSourcesResponse) => void): Request<MediaConnect.Types.AddFlowSourcesResponse, AWSError>;
  51. /**
  52. * Adds Sources to flow
  53. */
  54. addFlowSources(callback?: (err: AWSError, data: MediaConnect.Types.AddFlowSourcesResponse) => void): Request<MediaConnect.Types.AddFlowSourcesResponse, AWSError>;
  55. /**
  56. * Adds VPC interfaces to flow
  57. */
  58. addFlowVpcInterfaces(params: MediaConnect.Types.AddFlowVpcInterfacesRequest, callback?: (err: AWSError, data: MediaConnect.Types.AddFlowVpcInterfacesResponse) => void): Request<MediaConnect.Types.AddFlowVpcInterfacesResponse, AWSError>;
  59. /**
  60. * Adds VPC interfaces to flow
  61. */
  62. addFlowVpcInterfaces(callback?: (err: AWSError, data: MediaConnect.Types.AddFlowVpcInterfacesResponse) => void): Request<MediaConnect.Types.AddFlowVpcInterfacesResponse, AWSError>;
  63. /**
  64. * Creates a new bridge. The request must include one source.
  65. */
  66. createBridge(params: MediaConnect.Types.CreateBridgeRequest, callback?: (err: AWSError, data: MediaConnect.Types.CreateBridgeResponse) => void): Request<MediaConnect.Types.CreateBridgeResponse, AWSError>;
  67. /**
  68. * Creates a new bridge. The request must include one source.
  69. */
  70. createBridge(callback?: (err: AWSError, data: MediaConnect.Types.CreateBridgeResponse) => void): Request<MediaConnect.Types.CreateBridgeResponse, AWSError>;
  71. /**
  72. * Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
  73. */
  74. createFlow(params: MediaConnect.Types.CreateFlowRequest, callback?: (err: AWSError, data: MediaConnect.Types.CreateFlowResponse) => void): Request<MediaConnect.Types.CreateFlowResponse, AWSError>;
  75. /**
  76. * Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
  77. */
  78. createFlow(callback?: (err: AWSError, data: MediaConnect.Types.CreateFlowResponse) => void): Request<MediaConnect.Types.CreateFlowResponse, AWSError>;
  79. /**
  80. * Creates a new gateway. The request must include at least one network (up to 4).
  81. */
  82. createGateway(params: MediaConnect.Types.CreateGatewayRequest, callback?: (err: AWSError, data: MediaConnect.Types.CreateGatewayResponse) => void): Request<MediaConnect.Types.CreateGatewayResponse, AWSError>;
  83. /**
  84. * Creates a new gateway. The request must include at least one network (up to 4).
  85. */
  86. createGateway(callback?: (err: AWSError, data: MediaConnect.Types.CreateGatewayResponse) => void): Request<MediaConnect.Types.CreateGatewayResponse, AWSError>;
  87. /**
  88. * Deletes a bridge. Before you can delete a bridge, you must stop the bridge.
  89. */
  90. deleteBridge(params: MediaConnect.Types.DeleteBridgeRequest, callback?: (err: AWSError, data: MediaConnect.Types.DeleteBridgeResponse) => void): Request<MediaConnect.Types.DeleteBridgeResponse, AWSError>;
  91. /**
  92. * Deletes a bridge. Before you can delete a bridge, you must stop the bridge.
  93. */
  94. deleteBridge(callback?: (err: AWSError, data: MediaConnect.Types.DeleteBridgeResponse) => void): Request<MediaConnect.Types.DeleteBridgeResponse, AWSError>;
  95. /**
  96. * Deletes a flow. Before you can delete a flow, you must stop the flow.
  97. */
  98. deleteFlow(params: MediaConnect.Types.DeleteFlowRequest, callback?: (err: AWSError, data: MediaConnect.Types.DeleteFlowResponse) => void): Request<MediaConnect.Types.DeleteFlowResponse, AWSError>;
  99. /**
  100. * Deletes a flow. Before you can delete a flow, you must stop the flow.
  101. */
  102. deleteFlow(callback?: (err: AWSError, data: MediaConnect.Types.DeleteFlowResponse) => void): Request<MediaConnect.Types.DeleteFlowResponse, AWSError>;
  103. /**
  104. * Deletes a gateway. Before you can delete a gateway, you must deregister its instances and delete its bridges.
  105. */
  106. deleteGateway(params: MediaConnect.Types.DeleteGatewayRequest, callback?: (err: AWSError, data: MediaConnect.Types.DeleteGatewayResponse) => void): Request<MediaConnect.Types.DeleteGatewayResponse, AWSError>;
  107. /**
  108. * Deletes a gateway. Before you can delete a gateway, you must deregister its instances and delete its bridges.
  109. */
  110. deleteGateway(callback?: (err: AWSError, data: MediaConnect.Types.DeleteGatewayResponse) => void): Request<MediaConnect.Types.DeleteGatewayResponse, AWSError>;
  111. /**
  112. * Deregisters an instance. Before you deregister an instance, all bridges running on the instance must be stopped. If you want to deregister an instance without stopping the bridges, you must use the --force option.
  113. */
  114. deregisterGatewayInstance(params: MediaConnect.Types.DeregisterGatewayInstanceRequest, callback?: (err: AWSError, data: MediaConnect.Types.DeregisterGatewayInstanceResponse) => void): Request<MediaConnect.Types.DeregisterGatewayInstanceResponse, AWSError>;
  115. /**
  116. * Deregisters an instance. Before you deregister an instance, all bridges running on the instance must be stopped. If you want to deregister an instance without stopping the bridges, you must use the --force option.
  117. */
  118. deregisterGatewayInstance(callback?: (err: AWSError, data: MediaConnect.Types.DeregisterGatewayInstanceResponse) => void): Request<MediaConnect.Types.DeregisterGatewayInstanceResponse, AWSError>;
  119. /**
  120. * Displays the details of a bridge.
  121. */
  122. describeBridge(params: MediaConnect.Types.DescribeBridgeRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeBridgeResponse) => void): Request<MediaConnect.Types.DescribeBridgeResponse, AWSError>;
  123. /**
  124. * Displays the details of a bridge.
  125. */
  126. describeBridge(callback?: (err: AWSError, data: MediaConnect.Types.DescribeBridgeResponse) => void): Request<MediaConnect.Types.DescribeBridgeResponse, AWSError>;
  127. /**
  128. * Displays the details of a flow. The response includes the flow ARN, name, and Availability Zone, as well as details about the source, outputs, and entitlements.
  129. */
  130. describeFlow(params: MediaConnect.Types.DescribeFlowRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  131. /**
  132. * Displays the details of a flow. The response includes the flow ARN, name, and Availability Zone, as well as details about the source, outputs, and entitlements.
  133. */
  134. describeFlow(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  135. /**
  136. * Displays details of the flow's source stream. The response contains information about the contents of the stream and its programs.
  137. */
  138. describeFlowSourceMetadata(params: MediaConnect.Types.DescribeFlowSourceMetadataRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceMetadataResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceMetadataResponse, AWSError>;
  139. /**
  140. * Displays details of the flow's source stream. The response contains information about the contents of the stream and its programs.
  141. */
  142. describeFlowSourceMetadata(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceMetadataResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceMetadataResponse, AWSError>;
  143. /**
  144. * Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
  145. */
  146. describeGateway(params: MediaConnect.Types.DescribeGatewayRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeGatewayResponse) => void): Request<MediaConnect.Types.DescribeGatewayResponse, AWSError>;
  147. /**
  148. * Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
  149. */
  150. describeGateway(callback?: (err: AWSError, data: MediaConnect.Types.DescribeGatewayResponse) => void): Request<MediaConnect.Types.DescribeGatewayResponse, AWSError>;
  151. /**
  152. * Displays the details of an instance.
  153. */
  154. describeGatewayInstance(params: MediaConnect.Types.DescribeGatewayInstanceRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeGatewayInstanceResponse) => void): Request<MediaConnect.Types.DescribeGatewayInstanceResponse, AWSError>;
  155. /**
  156. * Displays the details of an instance.
  157. */
  158. describeGatewayInstance(callback?: (err: AWSError, data: MediaConnect.Types.DescribeGatewayInstanceResponse) => void): Request<MediaConnect.Types.DescribeGatewayInstanceResponse, AWSError>;
  159. /**
  160. * Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
  161. */
  162. describeOffering(params: MediaConnect.Types.DescribeOfferingRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeOfferingResponse) => void): Request<MediaConnect.Types.DescribeOfferingResponse, AWSError>;
  163. /**
  164. * Displays the details of an offering. The response includes the offering description, duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
  165. */
  166. describeOffering(callback?: (err: AWSError, data: MediaConnect.Types.DescribeOfferingResponse) => void): Request<MediaConnect.Types.DescribeOfferingResponse, AWSError>;
  167. /**
  168. * Displays the details of a reservation. The response includes the reservation name, state, start date and time, and the details of the offering that make up the rest of the reservation (such as price, duration, and outbound bandwidth).
  169. */
  170. describeReservation(params: MediaConnect.Types.DescribeReservationRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeReservationResponse) => void): Request<MediaConnect.Types.DescribeReservationResponse, AWSError>;
  171. /**
  172. * Displays the details of a reservation. The response includes the reservation name, state, start date and time, and the details of the offering that make up the rest of the reservation (such as price, duration, and outbound bandwidth).
  173. */
  174. describeReservation(callback?: (err: AWSError, data: MediaConnect.Types.DescribeReservationResponse) => void): Request<MediaConnect.Types.DescribeReservationResponse, AWSError>;
  175. /**
  176. * Grants entitlements to an existing flow.
  177. */
  178. grantFlowEntitlements(params: MediaConnect.Types.GrantFlowEntitlementsRequest, callback?: (err: AWSError, data: MediaConnect.Types.GrantFlowEntitlementsResponse) => void): Request<MediaConnect.Types.GrantFlowEntitlementsResponse, AWSError>;
  179. /**
  180. * Grants entitlements to an existing flow.
  181. */
  182. grantFlowEntitlements(callback?: (err: AWSError, data: MediaConnect.Types.GrantFlowEntitlementsResponse) => void): Request<MediaConnect.Types.GrantFlowEntitlementsResponse, AWSError>;
  183. /**
  184. * Displays a list of bridges that are associated with this account and an optionally specified Arn. This request returns a paginated result.
  185. */
  186. listBridges(params: MediaConnect.Types.ListBridgesRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListBridgesResponse) => void): Request<MediaConnect.Types.ListBridgesResponse, AWSError>;
  187. /**
  188. * Displays a list of bridges that are associated with this account and an optionally specified Arn. This request returns a paginated result.
  189. */
  190. listBridges(callback?: (err: AWSError, data: MediaConnect.Types.ListBridgesResponse) => void): Request<MediaConnect.Types.ListBridgesResponse, AWSError>;
  191. /**
  192. * Displays a list of all entitlements that have been granted to this account. This request returns 20 results per page.
  193. */
  194. listEntitlements(params: MediaConnect.Types.ListEntitlementsRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListEntitlementsResponse) => void): Request<MediaConnect.Types.ListEntitlementsResponse, AWSError>;
  195. /**
  196. * Displays a list of all entitlements that have been granted to this account. This request returns 20 results per page.
  197. */
  198. listEntitlements(callback?: (err: AWSError, data: MediaConnect.Types.ListEntitlementsResponse) => void): Request<MediaConnect.Types.ListEntitlementsResponse, AWSError>;
  199. /**
  200. * Displays a list of flows that are associated with this account. This request returns a paginated result.
  201. */
  202. listFlows(params: MediaConnect.Types.ListFlowsRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListFlowsResponse) => void): Request<MediaConnect.Types.ListFlowsResponse, AWSError>;
  203. /**
  204. * Displays a list of flows that are associated with this account. This request returns a paginated result.
  205. */
  206. listFlows(callback?: (err: AWSError, data: MediaConnect.Types.ListFlowsResponse) => void): Request<MediaConnect.Types.ListFlowsResponse, AWSError>;
  207. /**
  208. * Displays a list of instances associated with the AWS account. This request returns a paginated result. You can use the filterArn property to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).
  209. */
  210. listGatewayInstances(params: MediaConnect.Types.ListGatewayInstancesRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListGatewayInstancesResponse) => void): Request<MediaConnect.Types.ListGatewayInstancesResponse, AWSError>;
  211. /**
  212. * Displays a list of instances associated with the AWS account. This request returns a paginated result. You can use the filterArn property to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).
  213. */
  214. listGatewayInstances(callback?: (err: AWSError, data: MediaConnect.Types.ListGatewayInstancesResponse) => void): Request<MediaConnect.Types.ListGatewayInstancesResponse, AWSError>;
  215. /**
  216. * Displays a list of gateways that are associated with this account. This request returns a paginated result.
  217. */
  218. listGateways(params: MediaConnect.Types.ListGatewaysRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListGatewaysResponse) => void): Request<MediaConnect.Types.ListGatewaysResponse, AWSError>;
  219. /**
  220. * Displays a list of gateways that are associated with this account. This request returns a paginated result.
  221. */
  222. listGateways(callback?: (err: AWSError, data: MediaConnect.Types.ListGatewaysResponse) => void): Request<MediaConnect.Types.ListGatewaysResponse, AWSError>;
  223. /**
  224. * Displays a list of all offerings that are available to this account in the current AWS Region. If you have an active reservation (which means you've purchased an offering that has already started and hasn't expired yet), your account isn't eligible for other offerings.
  225. */
  226. listOfferings(params: MediaConnect.Types.ListOfferingsRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListOfferingsResponse) => void): Request<MediaConnect.Types.ListOfferingsResponse, AWSError>;
  227. /**
  228. * Displays a list of all offerings that are available to this account in the current AWS Region. If you have an active reservation (which means you've purchased an offering that has already started and hasn't expired yet), your account isn't eligible for other offerings.
  229. */
  230. listOfferings(callback?: (err: AWSError, data: MediaConnect.Types.ListOfferingsResponse) => void): Request<MediaConnect.Types.ListOfferingsResponse, AWSError>;
  231. /**
  232. * Displays a list of all reservations that have been purchased by this account in the current AWS Region. This list includes all reservations in all states (such as active and expired).
  233. */
  234. listReservations(params: MediaConnect.Types.ListReservationsRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListReservationsResponse) => void): Request<MediaConnect.Types.ListReservationsResponse, AWSError>;
  235. /**
  236. * Displays a list of all reservations that have been purchased by this account in the current AWS Region. This list includes all reservations in all states (such as active and expired).
  237. */
  238. listReservations(callback?: (err: AWSError, data: MediaConnect.Types.ListReservationsResponse) => void): Request<MediaConnect.Types.ListReservationsResponse, AWSError>;
  239. /**
  240. * List all tags on an AWS Elemental MediaConnect resource
  241. */
  242. listTagsForResource(params: MediaConnect.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: MediaConnect.Types.ListTagsForResourceResponse) => void): Request<MediaConnect.Types.ListTagsForResourceResponse, AWSError>;
  243. /**
  244. * List all tags on an AWS Elemental MediaConnect resource
  245. */
  246. listTagsForResource(callback?: (err: AWSError, data: MediaConnect.Types.ListTagsForResourceResponse) => void): Request<MediaConnect.Types.ListTagsForResourceResponse, AWSError>;
  247. /**
  248. * Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering.
  249. */
  250. purchaseOffering(params: MediaConnect.Types.PurchaseOfferingRequest, callback?: (err: AWSError, data: MediaConnect.Types.PurchaseOfferingResponse) => void): Request<MediaConnect.Types.PurchaseOfferingResponse, AWSError>;
  251. /**
  252. * Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering.
  253. */
  254. purchaseOffering(callback?: (err: AWSError, data: MediaConnect.Types.PurchaseOfferingResponse) => void): Request<MediaConnect.Types.PurchaseOfferingResponse, AWSError>;
  255. /**
  256. * Removes an output from a bridge.
  257. */
  258. removeBridgeOutput(params: MediaConnect.Types.RemoveBridgeOutputRequest, callback?: (err: AWSError, data: MediaConnect.Types.RemoveBridgeOutputResponse) => void): Request<MediaConnect.Types.RemoveBridgeOutputResponse, AWSError>;
  259. /**
  260. * Removes an output from a bridge.
  261. */
  262. removeBridgeOutput(callback?: (err: AWSError, data: MediaConnect.Types.RemoveBridgeOutputResponse) => void): Request<MediaConnect.Types.RemoveBridgeOutputResponse, AWSError>;
  263. /**
  264. * Removes a source from a bridge.
  265. */
  266. removeBridgeSource(params: MediaConnect.Types.RemoveBridgeSourceRequest, callback?: (err: AWSError, data: MediaConnect.Types.RemoveBridgeSourceResponse) => void): Request<MediaConnect.Types.RemoveBridgeSourceResponse, AWSError>;
  267. /**
  268. * Removes a source from a bridge.
  269. */
  270. removeBridgeSource(callback?: (err: AWSError, data: MediaConnect.Types.RemoveBridgeSourceResponse) => void): Request<MediaConnect.Types.RemoveBridgeSourceResponse, AWSError>;
  271. /**
  272. * Removes a media stream from a flow. This action is only available if the media stream is not associated with a source or output.
  273. */
  274. removeFlowMediaStream(params: MediaConnect.Types.RemoveFlowMediaStreamRequest, callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowMediaStreamResponse) => void): Request<MediaConnect.Types.RemoveFlowMediaStreamResponse, AWSError>;
  275. /**
  276. * Removes a media stream from a flow. This action is only available if the media stream is not associated with a source or output.
  277. */
  278. removeFlowMediaStream(callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowMediaStreamResponse) => void): Request<MediaConnect.Types.RemoveFlowMediaStreamResponse, AWSError>;
  279. /**
  280. * Removes an output from an existing flow. This request can be made only on an output that does not have an entitlement associated with it. If the output has an entitlement, you must revoke the entitlement instead. When an entitlement is revoked from a flow, the service automatically removes the associated output.
  281. */
  282. removeFlowOutput(params: MediaConnect.Types.RemoveFlowOutputRequest, callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowOutputResponse) => void): Request<MediaConnect.Types.RemoveFlowOutputResponse, AWSError>;
  283. /**
  284. * Removes an output from an existing flow. This request can be made only on an output that does not have an entitlement associated with it. If the output has an entitlement, you must revoke the entitlement instead. When an entitlement is revoked from a flow, the service automatically removes the associated output.
  285. */
  286. removeFlowOutput(callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowOutputResponse) => void): Request<MediaConnect.Types.RemoveFlowOutputResponse, AWSError>;
  287. /**
  288. * Removes a source from an existing flow. This request can be made only if there is more than one source on the flow.
  289. */
  290. removeFlowSource(params: MediaConnect.Types.RemoveFlowSourceRequest, callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowSourceResponse) => void): Request<MediaConnect.Types.RemoveFlowSourceResponse, AWSError>;
  291. /**
  292. * Removes a source from an existing flow. This request can be made only if there is more than one source on the flow.
  293. */
  294. removeFlowSource(callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowSourceResponse) => void): Request<MediaConnect.Types.RemoveFlowSourceResponse, AWSError>;
  295. /**
  296. * Removes a VPC Interface from an existing flow. This request can be made only on a VPC interface that does not have a Source or Output associated with it. If the VPC interface is referenced by a Source or Output, you must first delete or update the Source or Output to no longer reference the VPC interface.
  297. */
  298. removeFlowVpcInterface(params: MediaConnect.Types.RemoveFlowVpcInterfaceRequest, callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowVpcInterfaceResponse) => void): Request<MediaConnect.Types.RemoveFlowVpcInterfaceResponse, AWSError>;
  299. /**
  300. * Removes a VPC Interface from an existing flow. This request can be made only on a VPC interface that does not have a Source or Output associated with it. If the VPC interface is referenced by a Source or Output, you must first delete or update the Source or Output to no longer reference the VPC interface.
  301. */
  302. removeFlowVpcInterface(callback?: (err: AWSError, data: MediaConnect.Types.RemoveFlowVpcInterfaceResponse) => void): Request<MediaConnect.Types.RemoveFlowVpcInterfaceResponse, AWSError>;
  303. /**
  304. * Revokes an entitlement from a flow. Once an entitlement is revoked, the content becomes unavailable to the subscriber and the associated output is removed.
  305. */
  306. revokeFlowEntitlement(params: MediaConnect.Types.RevokeFlowEntitlementRequest, callback?: (err: AWSError, data: MediaConnect.Types.RevokeFlowEntitlementResponse) => void): Request<MediaConnect.Types.RevokeFlowEntitlementResponse, AWSError>;
  307. /**
  308. * Revokes an entitlement from a flow. Once an entitlement is revoked, the content becomes unavailable to the subscriber and the associated output is removed.
  309. */
  310. revokeFlowEntitlement(callback?: (err: AWSError, data: MediaConnect.Types.RevokeFlowEntitlementResponse) => void): Request<MediaConnect.Types.RevokeFlowEntitlementResponse, AWSError>;
  311. /**
  312. * Starts a flow.
  313. */
  314. startFlow(params: MediaConnect.Types.StartFlowRequest, callback?: (err: AWSError, data: MediaConnect.Types.StartFlowResponse) => void): Request<MediaConnect.Types.StartFlowResponse, AWSError>;
  315. /**
  316. * Starts a flow.
  317. */
  318. startFlow(callback?: (err: AWSError, data: MediaConnect.Types.StartFlowResponse) => void): Request<MediaConnect.Types.StartFlowResponse, AWSError>;
  319. /**
  320. * Stops a flow.
  321. */
  322. stopFlow(params: MediaConnect.Types.StopFlowRequest, callback?: (err: AWSError, data: MediaConnect.Types.StopFlowResponse) => void): Request<MediaConnect.Types.StopFlowResponse, AWSError>;
  323. /**
  324. * Stops a flow.
  325. */
  326. stopFlow(callback?: (err: AWSError, data: MediaConnect.Types.StopFlowResponse) => void): Request<MediaConnect.Types.StopFlowResponse, AWSError>;
  327. /**
  328. * Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are deleted as well.
  329. */
  330. tagResource(params: MediaConnect.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  331. /**
  332. * Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are deleted as well.
  333. */
  334. tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  335. /**
  336. * Deletes specified tags from a resource.
  337. */
  338. untagResource(params: MediaConnect.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  339. /**
  340. * Deletes specified tags from a resource.
  341. */
  342. untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  343. /**
  344. * Updates the bridge
  345. */
  346. updateBridge(params: MediaConnect.Types.UpdateBridgeRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeResponse) => void): Request<MediaConnect.Types.UpdateBridgeResponse, AWSError>;
  347. /**
  348. * Updates the bridge
  349. */
  350. updateBridge(callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeResponse) => void): Request<MediaConnect.Types.UpdateBridgeResponse, AWSError>;
  351. /**
  352. * Updates an existing bridge output.
  353. */
  354. updateBridgeOutput(params: MediaConnect.Types.UpdateBridgeOutputRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeOutputResponse) => void): Request<MediaConnect.Types.UpdateBridgeOutputResponse, AWSError>;
  355. /**
  356. * Updates an existing bridge output.
  357. */
  358. updateBridgeOutput(callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeOutputResponse) => void): Request<MediaConnect.Types.UpdateBridgeOutputResponse, AWSError>;
  359. /**
  360. * Updates an existing bridge source.
  361. */
  362. updateBridgeSource(params: MediaConnect.Types.UpdateBridgeSourceRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeSourceResponse) => void): Request<MediaConnect.Types.UpdateBridgeSourceResponse, AWSError>;
  363. /**
  364. * Updates an existing bridge source.
  365. */
  366. updateBridgeSource(callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeSourceResponse) => void): Request<MediaConnect.Types.UpdateBridgeSourceResponse, AWSError>;
  367. /**
  368. * Updates the bridge state
  369. */
  370. updateBridgeState(params: MediaConnect.Types.UpdateBridgeStateRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeStateResponse) => void): Request<MediaConnect.Types.UpdateBridgeStateResponse, AWSError>;
  371. /**
  372. * Updates the bridge state
  373. */
  374. updateBridgeState(callback?: (err: AWSError, data: MediaConnect.Types.UpdateBridgeStateResponse) => void): Request<MediaConnect.Types.UpdateBridgeStateResponse, AWSError>;
  375. /**
  376. * Updates flow
  377. */
  378. updateFlow(params: MediaConnect.Types.UpdateFlowRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowResponse) => void): Request<MediaConnect.Types.UpdateFlowResponse, AWSError>;
  379. /**
  380. * Updates flow
  381. */
  382. updateFlow(callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowResponse) => void): Request<MediaConnect.Types.UpdateFlowResponse, AWSError>;
  383. /**
  384. * You can change an entitlement's description, subscribers, and encryption. If you change the subscribers, the service will remove the outputs that are are used by the subscribers that are removed.
  385. */
  386. updateFlowEntitlement(params: MediaConnect.Types.UpdateFlowEntitlementRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowEntitlementResponse) => void): Request<MediaConnect.Types.UpdateFlowEntitlementResponse, AWSError>;
  387. /**
  388. * You can change an entitlement's description, subscribers, and encryption. If you change the subscribers, the service will remove the outputs that are are used by the subscribers that are removed.
  389. */
  390. updateFlowEntitlement(callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowEntitlementResponse) => void): Request<MediaConnect.Types.UpdateFlowEntitlementResponse, AWSError>;
  391. /**
  392. * Updates an existing media stream.
  393. */
  394. updateFlowMediaStream(params: MediaConnect.Types.UpdateFlowMediaStreamRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowMediaStreamResponse) => void): Request<MediaConnect.Types.UpdateFlowMediaStreamResponse, AWSError>;
  395. /**
  396. * Updates an existing media stream.
  397. */
  398. updateFlowMediaStream(callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowMediaStreamResponse) => void): Request<MediaConnect.Types.UpdateFlowMediaStreamResponse, AWSError>;
  399. /**
  400. * Updates an existing flow output.
  401. */
  402. updateFlowOutput(params: MediaConnect.Types.UpdateFlowOutputRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowOutputResponse) => void): Request<MediaConnect.Types.UpdateFlowOutputResponse, AWSError>;
  403. /**
  404. * Updates an existing flow output.
  405. */
  406. updateFlowOutput(callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowOutputResponse) => void): Request<MediaConnect.Types.UpdateFlowOutputResponse, AWSError>;
  407. /**
  408. * Updates the source of a flow.
  409. */
  410. updateFlowSource(params: MediaConnect.Types.UpdateFlowSourceRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowSourceResponse) => void): Request<MediaConnect.Types.UpdateFlowSourceResponse, AWSError>;
  411. /**
  412. * Updates the source of a flow.
  413. */
  414. updateFlowSource(callback?: (err: AWSError, data: MediaConnect.Types.UpdateFlowSourceResponse) => void): Request<MediaConnect.Types.UpdateFlowSourceResponse, AWSError>;
  415. /**
  416. * Updates the configuration of an existing Gateway Instance.
  417. */
  418. updateGatewayInstance(params: MediaConnect.Types.UpdateGatewayInstanceRequest, callback?: (err: AWSError, data: MediaConnect.Types.UpdateGatewayInstanceResponse) => void): Request<MediaConnect.Types.UpdateGatewayInstanceResponse, AWSError>;
  419. /**
  420. * Updates the configuration of an existing Gateway Instance.
  421. */
  422. updateGatewayInstance(callback?: (err: AWSError, data: MediaConnect.Types.UpdateGatewayInstanceResponse) => void): Request<MediaConnect.Types.UpdateGatewayInstanceResponse, AWSError>;
  423. /**
  424. * Waits for the flowActive state by periodically calling the underlying MediaConnect.describeFlowoperation every 3 seconds (at most 40 times). Wait until a flow is active
  425. */
  426. waitFor(state: "flowActive", params: MediaConnect.Types.DescribeFlowRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  427. /**
  428. * Waits for the flowActive state by periodically calling the underlying MediaConnect.describeFlowoperation every 3 seconds (at most 40 times). Wait until a flow is active
  429. */
  430. waitFor(state: "flowActive", callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  431. /**
  432. * Waits for the flowStandby state by periodically calling the underlying MediaConnect.describeFlowoperation every 3 seconds (at most 40 times). Wait until a flow is in standby mode
  433. */
  434. waitFor(state: "flowStandby", params: MediaConnect.Types.DescribeFlowRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  435. /**
  436. * Waits for the flowStandby state by periodically calling the underlying MediaConnect.describeFlowoperation every 3 seconds (at most 40 times). Wait until a flow is in standby mode
  437. */
  438. waitFor(state: "flowStandby", callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  439. /**
  440. * Waits for the flowDeleted state by periodically calling the underlying MediaConnect.describeFlowoperation every 3 seconds (at most 40 times). Wait until a flow is deleted
  441. */
  442. waitFor(state: "flowDeleted", params: MediaConnect.Types.DescribeFlowRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  443. /**
  444. * Waits for the flowDeleted state by periodically calling the underlying MediaConnect.describeFlowoperation every 3 seconds (at most 40 times). Wait until a flow is deleted
  445. */
  446. waitFor(state: "flowDeleted", callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
  447. }
  448. declare namespace MediaConnect {
  449. export interface AddBridgeFlowSourceRequest {
  450. /**
  451. * The Amazon Resource Number (ARN) of the cloud flow to use as a source of this bridge.
  452. */
  453. FlowArn: __string;
  454. /**
  455. * The name of the VPC interface attachment to use for this source.
  456. */
  457. FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
  458. /**
  459. * The name of the flow source. This name is used to reference the source and must be unique among sources in this bridge.
  460. */
  461. Name: __string;
  462. }
  463. export interface AddBridgeNetworkOutputRequest {
  464. /**
  465. * The network output IP Address.
  466. */
  467. IpAddress: __string;
  468. /**
  469. * The network output name. This name is used to reference the output and must be unique among outputs in this bridge.
  470. */
  471. Name: __string;
  472. /**
  473. * The network output's gateway network name.
  474. */
  475. NetworkName: __string;
  476. /**
  477. * The network output port.
  478. */
  479. Port: __integer;
  480. /**
  481. * The network output protocol.
  482. */
  483. Protocol: Protocol;
  484. /**
  485. * The network output TTL.
  486. */
  487. Ttl: __integer;
  488. }
  489. export interface AddBridgeNetworkSourceRequest {
  490. /**
  491. * The network source multicast IP.
  492. */
  493. MulticastIp: __string;
  494. /**
  495. * The name of the network source. This name is used to reference the source and must be unique among sources in this bridge.
  496. */
  497. Name: __string;
  498. /**
  499. * The network source's gateway network name.
  500. */
  501. NetworkName: __string;
  502. /**
  503. * The network source port.
  504. */
  505. Port: __integer;
  506. /**
  507. * The network source protocol.
  508. */
  509. Protocol: Protocol;
  510. }
  511. export interface AddBridgeOutputRequest {
  512. NetworkOutput?: AddBridgeNetworkOutputRequest;
  513. }
  514. export interface AddBridgeOutputsRequest {
  515. /**
  516. * The ARN of the bridge that you want to update.
  517. */
  518. BridgeArn: __string;
  519. /**
  520. * The outputs that you want to add to this bridge.
  521. */
  522. Outputs: __listOfAddBridgeOutputRequest;
  523. }
  524. export interface AddBridgeOutputsResponse {
  525. /**
  526. * The Amazon Resource Number (ARN) of the bridge.
  527. */
  528. BridgeArn?: __string;
  529. /**
  530. * The outputs that you added to this bridge.
  531. */
  532. Outputs?: __listOfBridgeOutput;
  533. }
  534. export interface AddBridgeSourceRequest {
  535. FlowSource?: AddBridgeFlowSourceRequest;
  536. NetworkSource?: AddBridgeNetworkSourceRequest;
  537. }
  538. export interface AddBridgeSourcesRequest {
  539. /**
  540. * The ARN of the bridge that you want to update.
  541. */
  542. BridgeArn: __string;
  543. /**
  544. * The sources that you want to add to this bridge.
  545. */
  546. Sources: __listOfAddBridgeSourceRequest;
  547. }
  548. export interface AddBridgeSourcesResponse {
  549. /**
  550. * The Amazon Resource Number (ARN) of the bridge.
  551. */
  552. BridgeArn?: __string;
  553. /**
  554. * The sources that you added to this bridge.
  555. */
  556. Sources?: __listOfBridgeSource;
  557. }
  558. export interface AddEgressGatewayBridgeRequest {
  559. /**
  560. * The maximum expected bitrate (in bps).
  561. */
  562. MaxBitrate: __integer;
  563. }
  564. export interface AddFlowMediaStreamsRequest {
  565. /**
  566. * The Amazon Resource Name (ARN) of the flow.
  567. */
  568. FlowArn: __string;
  569. /**
  570. * The media streams that you want to add to the flow.
  571. */
  572. MediaStreams: __listOfAddMediaStreamRequest;
  573. }
  574. export interface AddFlowMediaStreamsResponse {
  575. /**
  576. * The ARN of the flow that you added media streams to.
  577. */
  578. FlowArn?: __string;
  579. /**
  580. * The media streams that you added to the flow.
  581. */
  582. MediaStreams?: __listOfMediaStream;
  583. }
  584. export interface AddFlowOutputsRequest {
  585. /**
  586. * The flow that you want to add outputs to.
  587. */
  588. FlowArn: __string;
  589. /**
  590. * A list of outputs that you want to add.
  591. */
  592. Outputs: __listOfAddOutputRequest;
  593. }
  594. export interface AddFlowOutputsResponse {
  595. /**
  596. * The ARN of the flow that these outputs were added to.
  597. */
  598. FlowArn?: __string;
  599. /**
  600. * The details of the newly added outputs.
  601. */
  602. Outputs?: __listOfOutput;
  603. }
  604. export interface AddFlowSourcesRequest {
  605. /**
  606. * The flow that you want to mutate.
  607. */
  608. FlowArn: __string;
  609. /**
  610. * A list of sources that you want to add.
  611. */
  612. Sources: __listOfSetSourceRequest;
  613. }
  614. export interface AddFlowSourcesResponse {
  615. /**
  616. * The ARN of the flow that these sources were added to.
  617. */
  618. FlowArn?: __string;
  619. /**
  620. * The details of the newly added sources.
  621. */
  622. Sources?: __listOfSource;
  623. }
  624. export interface AddFlowVpcInterfacesRequest {
  625. /**
  626. * The flow that you want to mutate.
  627. */
  628. FlowArn: __string;
  629. /**
  630. * A list of VPC interfaces that you want to add.
  631. */
  632. VpcInterfaces: __listOfVpcInterfaceRequest;
  633. }
  634. export interface AddFlowVpcInterfacesResponse {
  635. /**
  636. * The ARN of the flow that these VPC interfaces were added to.
  637. */
  638. FlowArn?: __string;
  639. /**
  640. * The details of the newly added VPC interfaces.
  641. */
  642. VpcInterfaces?: __listOfVpcInterface;
  643. }
  644. export interface AddIngressGatewayBridgeRequest {
  645. /**
  646. * The maximum expected bitrate (in bps).
  647. */
  648. MaxBitrate: __integer;
  649. /**
  650. * The maximum number of expected outputs.
  651. */
  652. MaxOutputs: __integer;
  653. }
  654. export interface AddMaintenance {
  655. /**
  656. * A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
  657. */
  658. MaintenanceDay: MaintenanceDay;
  659. /**
  660. * 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.
  661. */
  662. MaintenanceStartHour: __string;
  663. }
  664. export interface AddMediaStreamRequest {
  665. /**
  666. * The attributes that you want to assign to the new media stream.
  667. */
  668. Attributes?: MediaStreamAttributesRequest;
  669. /**
  670. * 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.
  671. */
  672. ClockRate?: __integer;
  673. /**
  674. * A description that can help you quickly identify what your media stream is used for.
  675. */
  676. Description?: __string;
  677. /**
  678. * A unique identifier for the media stream.
  679. */
  680. MediaStreamId: __integer;
  681. /**
  682. * A name that helps you distinguish one media stream from another.
  683. */
  684. MediaStreamName: __string;
  685. /**
  686. * The type of media stream.
  687. */
  688. MediaStreamType: MediaStreamType;
  689. /**
  690. * The resolution of the video.
  691. */
  692. VideoFormat?: __string;
  693. }
  694. export interface AddOutputRequest {
  695. /**
  696. * 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.
  697. */
  698. CidrAllowList?: __listOf__string;
  699. /**
  700. * A description of the output. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the end user.
  701. */
  702. Description?: __string;
  703. /**
  704. * The IP address from which video will be sent to output destinations.
  705. */
  706. Destination?: __string;
  707. /**
  708. * 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.
  709. */
  710. Encryption?: Encryption;
  711. /**
  712. * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
  713. */
  714. MaxLatency?: __integer;
  715. /**
  716. * The media streams that are associated with the output, and the parameters for those associations.
  717. */
  718. MediaStreamOutputConfigurations?: __listOfMediaStreamOutputConfigurationRequest;
  719. /**
  720. * 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.
  721. */
  722. MinLatency?: __integer;
  723. /**
  724. * The name of the output. This value must be unique within the current flow.
  725. */
  726. Name?: __string;
  727. /**
  728. * The port to use when content is distributed to this output.
  729. */
  730. Port?: __integer;
  731. /**
  732. * The protocol to use for the output.
  733. */
  734. Protocol: Protocol;
  735. /**
  736. * The remote ID for the Zixi-pull output stream.
  737. */
  738. RemoteId?: __string;
  739. /**
  740. * The port that the flow uses to send outbound requests to initiate connection with the sender.
  741. */
  742. SenderControlPort?: __integer;
  743. /**
  744. * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
  745. */
  746. SmoothingLatency?: __integer;
  747. /**
  748. * The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
  749. */
  750. StreamId?: __string;
  751. /**
  752. * The name of the VPC interface attachment to use for this output.
  753. */
  754. VpcInterfaceAttachment?: VpcInterfaceAttachment;
  755. }
  756. export type Algorithm = "aes128"|"aes192"|"aes256"|string;
  757. export interface Bridge {
  758. /**
  759. * The Amazon Resource Number (ARN) of the bridge.
  760. */
  761. BridgeArn: __string;
  762. BridgeMessages?: __listOfMessageDetail;
  763. BridgeState: BridgeState;
  764. EgressGatewayBridge?: EgressGatewayBridge;
  765. IngressGatewayBridge?: IngressGatewayBridge;
  766. /**
  767. * The name of the bridge.
  768. */
  769. Name: __string;
  770. /**
  771. * The outputs on this bridge.
  772. */
  773. Outputs?: __listOfBridgeOutput;
  774. /**
  775. * The placement Amazon Resource Number (ARN) of the bridge.
  776. */
  777. PlacementArn: __string;
  778. SourceFailoverConfig?: FailoverConfig;
  779. /**
  780. * The sources on this bridge.
  781. */
  782. Sources?: __listOfBridgeSource;
  783. }
  784. export interface BridgeFlowOutput {
  785. /**
  786. * The Amazon Resource Number (ARN) of the cloud flow.
  787. */
  788. FlowArn: __string;
  789. /**
  790. * The Amazon Resource Number (ARN) of the flow source.
  791. */
  792. FlowSourceArn: __string;
  793. /**
  794. * The name of the bridge's output.
  795. */
  796. Name: __string;
  797. }
  798. export interface BridgeFlowSource {
  799. /**
  800. * The ARN of the cloud flow used as a source of this bridge.
  801. */
  802. FlowArn: __string;
  803. /**
  804. * The name of the VPC interface attachment to use for this source.
  805. */
  806. FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
  807. /**
  808. * The name of the flow source.
  809. */
  810. Name: __string;
  811. /**
  812. * The Amazon Resource Number (ARN) of the output.
  813. */
  814. OutputArn?: __string;
  815. }
  816. export interface BridgeNetworkOutput {
  817. /**
  818. * The network output IP Address.
  819. */
  820. IpAddress: __string;
  821. /**
  822. * The network output name.
  823. */
  824. Name: __string;
  825. /**
  826. * The network output's gateway network name.
  827. */
  828. NetworkName: __string;
  829. /**
  830. * The network output port.
  831. */
  832. Port: __integer;
  833. /**
  834. * The network output protocol.
  835. */
  836. Protocol: Protocol;
  837. /**
  838. * The network output TTL.
  839. */
  840. Ttl: __integer;
  841. }
  842. export interface BridgeNetworkSource {
  843. /**
  844. * The network source multicast IP.
  845. */
  846. MulticastIp: __string;
  847. /**
  848. * The name of the network source.
  849. */
  850. Name: __string;
  851. /**
  852. * The network source's gateway network name.
  853. */
  854. NetworkName: __string;
  855. /**
  856. * The network source port.
  857. */
  858. Port: __integer;
  859. /**
  860. * The network source protocol.
  861. */
  862. Protocol: Protocol;
  863. }
  864. export interface BridgeOutput {
  865. FlowOutput?: BridgeFlowOutput;
  866. NetworkOutput?: BridgeNetworkOutput;
  867. }
  868. export type BridgePlacement = "AVAILABLE"|"LOCKED"|string;
  869. export interface BridgeSource {
  870. FlowSource?: BridgeFlowSource;
  871. NetworkSource?: BridgeNetworkSource;
  872. }
  873. export type BridgeState = "CREATING"|"STANDBY"|"STARTING"|"DEPLOYING"|"ACTIVE"|"STOPPING"|"DELETING"|"DELETED"|"START_FAILED"|"START_PENDING"|"STOP_FAILED"|"UPDATING"|string;
  874. export type Colorimetry = "BT601"|"BT709"|"BT2020"|"BT2100"|"ST2065-1"|"ST2065-3"|"XYZ"|string;
  875. export type ConnectionStatus = "CONNECTED"|"DISCONNECTED"|string;
  876. export interface CreateBridgeRequest {
  877. /**
  878. * Create a bridge with the egress bridge type. An egress bridge is a cloud-to-ground bridge. The content comes from an existing MediaConnect flow and is delivered to your premises.
  879. */
  880. EgressGatewayBridge?: AddEgressGatewayBridgeRequest;
  881. /**
  882. * Create a bridge with the ingress bridge type. An ingress bridge is a ground-to-cloud bridge. The content originates at your premises and is delivered to the cloud.
  883. */
  884. IngressGatewayBridge?: AddIngressGatewayBridgeRequest;
  885. /**
  886. * The name of the bridge. This name can not be modified after the bridge is created.
  887. */
  888. Name: __string;
  889. /**
  890. * The outputs that you want to add to this bridge.
  891. */
  892. Outputs?: __listOfAddBridgeOutputRequest;
  893. /**
  894. * The bridge placement Amazon Resource Number (ARN).
  895. */
  896. PlacementArn: __string;
  897. /**
  898. * The settings for source failover.
  899. */
  900. SourceFailoverConfig?: FailoverConfig;
  901. /**
  902. * The sources that you want to add to this bridge.
  903. */
  904. Sources: __listOfAddBridgeSourceRequest;
  905. }
  906. export interface CreateBridgeResponse {
  907. Bridge?: Bridge;
  908. }
  909. export interface CreateFlowRequest {
  910. /**
  911. * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS Region.
  912. */
  913. AvailabilityZone?: __string;
  914. /**
  915. * The entitlements that you want to grant on a flow.
  916. */
  917. Entitlements?: __listOfGrantEntitlementRequest;
  918. /**
  919. * The media streams that you want to add to the flow. You can associate these media streams with sources and outputs on the flow.
  920. */
  921. MediaStreams?: __listOfAddMediaStreamRequest;
  922. /**
  923. * The name of the flow.
  924. */
  925. Name: __string;
  926. /**
  927. * The outputs that you want to add to this flow.
  928. */
  929. Outputs?: __listOfAddOutputRequest;
  930. Source?: SetSourceRequest;
  931. SourceFailoverConfig?: FailoverConfig;
  932. Sources?: __listOfSetSourceRequest;
  933. /**
  934. * The VPC interfaces you want on the flow.
  935. */
  936. VpcInterfaces?: __listOfVpcInterfaceRequest;
  937. Maintenance?: AddMaintenance;
  938. }
  939. export interface CreateFlowResponse {
  940. Flow?: Flow;
  941. }
  942. export interface CreateGatewayRequest {
  943. /**
  944. * The range of IP addresses that are allowed to 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.
  945. */
  946. EgressCidrBlocks: __listOf__string;
  947. /**
  948. * The name of the gateway. This name can not be modified after the gateway is created.
  949. */
  950. Name: __string;
  951. /**
  952. * The list of networks that you want to add.
  953. */
  954. Networks: __listOfGatewayNetwork;
  955. }
  956. export interface CreateGatewayResponse {
  957. Gateway?: Gateway;
  958. }
  959. export interface DeleteBridgeRequest {
  960. /**
  961. * The ARN of the bridge that you want to delete.
  962. */
  963. BridgeArn: __string;
  964. }
  965. export interface DeleteBridgeResponse {
  966. /**
  967. * The Amazon Resource Number (ARN) of the deleted bridge.
  968. */
  969. BridgeArn?: __string;
  970. }
  971. export interface DeleteFlowRequest {
  972. /**
  973. * The ARN of the flow that you want to delete.
  974. */
  975. FlowArn: __string;
  976. }
  977. export interface DeleteFlowResponse {
  978. /**
  979. * The ARN of the flow that was deleted.
  980. */
  981. FlowArn?: __string;
  982. /**
  983. * The status of the flow when the DeleteFlow process begins.
  984. */
  985. Status?: Status;
  986. }
  987. export interface DeleteGatewayRequest {
  988. /**
  989. * The ARN of the gateway that you want to delete.
  990. */
  991. GatewayArn: __string;
  992. }
  993. export interface DeleteGatewayResponse {
  994. /**
  995. * The Amazon Resource Name (ARN) of the gateway that was deleted.
  996. */
  997. GatewayArn?: __string;
  998. }
  999. export interface DeregisterGatewayInstanceRequest {
  1000. /**
  1001. * Force the deregistration of an instance. Force will deregister an instance, even if there are bridges running on it.
  1002. */
  1003. Force?: __boolean;
  1004. /**
  1005. * The Amazon Resource Name (ARN) of the gateway that contains the instance that you want to deregister.
  1006. */
  1007. GatewayInstanceArn: __string;
  1008. }
  1009. export interface DeregisterGatewayInstanceResponse {
  1010. /**
  1011. * The Amazon Resource Name (ARN) of the instance.
  1012. */
  1013. GatewayInstanceArn?: __string;
  1014. /**
  1015. * The status of the instance.
  1016. */
  1017. InstanceState?: InstanceState;
  1018. }
  1019. export interface DescribeBridgeRequest {
  1020. /**
  1021. * The ARN of the bridge that you want to describe.
  1022. */
  1023. BridgeArn: __string;
  1024. }
  1025. export interface DescribeBridgeResponse {
  1026. Bridge?: Bridge;
  1027. }
  1028. export interface DescribeFlowRequest {
  1029. /**
  1030. * The ARN of the flow that you want to describe.
  1031. */
  1032. FlowArn: __string;
  1033. }
  1034. export interface DescribeFlowResponse {
  1035. Flow?: Flow;
  1036. Messages?: Messages;
  1037. }
  1038. export interface DescribeFlowSourceMetadataRequest {
  1039. /**
  1040. * The Amazon Resource Name (ARN) of the flow.
  1041. */
  1042. FlowArn: __string;
  1043. }
  1044. export interface DescribeFlowSourceMetadataResponse {
  1045. /**
  1046. * The ARN of the flow that DescribeFlowSourceMetadata was performed on.
  1047. */
  1048. FlowArn?: __string;
  1049. /**
  1050. * Provides a status code and message regarding issues found with the flow source metadata.
  1051. */
  1052. Messages?: __listOfMessageDetail;
  1053. /**
  1054. * The timestamp of the most recent change in metadata for this flow’s source.
  1055. */
  1056. Timestamp?: __timestampIso8601;
  1057. TransportMediaInfo?: TransportMediaInfo;
  1058. }
  1059. export interface DescribeGatewayInstanceRequest {
  1060. /**
  1061. * The Amazon Resource Name (ARN) of the gateway instance that you want to describe.
  1062. */
  1063. GatewayInstanceArn: __string;
  1064. }
  1065. export interface DescribeGatewayInstanceResponse {
  1066. GatewayInstance?: GatewayInstance;
  1067. }
  1068. export interface DescribeGatewayRequest {
  1069. /**
  1070. * The Amazon Resource Name (ARN) of the gateway that you want to describe.
  1071. */
  1072. GatewayArn: __string;
  1073. }
  1074. export interface DescribeGatewayResponse {
  1075. Gateway?: Gateway;
  1076. }
  1077. export interface DescribeOfferingRequest {
  1078. /**
  1079. * The Amazon Resource Name (ARN) of the offering.
  1080. */
  1081. OfferingArn: __string;
  1082. }
  1083. export interface DescribeOfferingResponse {
  1084. Offering?: Offering;
  1085. }
  1086. export interface DescribeReservationRequest {
  1087. /**
  1088. * The Amazon Resource Name (ARN) of the reservation.
  1089. */
  1090. ReservationArn: __string;
  1091. }
  1092. export interface DescribeReservationResponse {
  1093. Reservation?: Reservation;
  1094. }
  1095. export type DesiredState = "ACTIVE"|"STANDBY"|"DELETED"|string;
  1096. export interface DestinationConfiguration {
  1097. /**
  1098. * The IP address where contents of the media stream will be sent.
  1099. */
  1100. DestinationIp: __string;
  1101. /**
  1102. * The port to use when the content of the media stream is distributed to the output.
  1103. */
  1104. DestinationPort: __integer;
  1105. /**
  1106. * The VPC interface that is used for the media stream associated with the output.
  1107. */
  1108. Interface: Interface;
  1109. /**
  1110. * 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.
  1111. */
  1112. OutboundIp: __string;
  1113. }
  1114. export interface DestinationConfigurationRequest {
  1115. /**
  1116. * The IP address where you want MediaConnect to send contents of the media stream.
  1117. */
  1118. DestinationIp: __string;
  1119. /**
  1120. * The port that you want MediaConnect to use when it distributes the media stream to the output.
  1121. */
  1122. DestinationPort: __integer;
  1123. /**
  1124. * The VPC interface that you want to use for the media stream associated with the output.
  1125. */
  1126. Interface: InterfaceRequest;
  1127. }
  1128. export type DurationUnits = "MONTHS"|string;
  1129. export interface EgressGatewayBridge {
  1130. /**
  1131. * The ID of the instance running this bridge.
  1132. */
  1133. InstanceId?: __string;
  1134. /**
  1135. * The maximum expected bitrate (in bps) of the egress bridge.
  1136. */
  1137. MaxBitrate: __integer;
  1138. }
  1139. export type EncoderProfile = "main"|"high"|string;
  1140. export type EncodingName = "jxsv"|"raw"|"smpte291"|"pcm"|string;
  1141. export interface EncodingParameters {
  1142. /**
  1143. * 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.
  1144. */
  1145. CompressionFactor: __double;
  1146. /**
  1147. * 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.
  1148. */
  1149. EncoderProfile: EncoderProfile;
  1150. }
  1151. export interface EncodingParametersRequest {
  1152. /**
  1153. * 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.
  1154. */
  1155. CompressionFactor: __double;
  1156. /**
  1157. * 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.
  1158. */
  1159. EncoderProfile: EncoderProfile;
  1160. }
  1161. export interface Encryption {
  1162. /**
  1163. * The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
  1164. */
  1165. Algorithm?: Algorithm;
  1166. /**
  1167. * 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.
  1168. */
  1169. ConstantInitializationVector?: __string;
  1170. /**
  1171. * 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.
  1172. */
  1173. DeviceId?: __string;
  1174. /**
  1175. * The type of key that is used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
  1176. */
  1177. KeyType?: KeyType;
  1178. /**
  1179. * 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.
  1180. */
  1181. Region?: __string;
  1182. /**
  1183. * 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.
  1184. */
  1185. ResourceId?: __string;
  1186. /**
  1187. * The ARN of the role that you created during setup (when you set up AWS Elemental MediaConnect as a trusted entity).
  1188. */
  1189. RoleArn: __string;
  1190. /**
  1191. * 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.
  1192. */
  1193. SecretArn?: __string;
  1194. /**
  1195. * 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.
  1196. */
  1197. Url?: __string;
  1198. }
  1199. export interface Entitlement {
  1200. /**
  1201. * Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
  1202. */
  1203. DataTransferSubscriberFeePercent?: __integer;
  1204. /**
  1205. * A description of the entitlement.
  1206. */
  1207. Description?: __string;
  1208. /**
  1209. * The type of encryption that will be used on the output that is associated with this entitlement.
  1210. */
  1211. Encryption?: Encryption;
  1212. /**
  1213. * The ARN of the entitlement.
  1214. */
  1215. EntitlementArn: __string;
  1216. /**
  1217. * An indication of whether the entitlement is enabled.
  1218. */
  1219. EntitlementStatus?: EntitlementStatus;
  1220. /**
  1221. * The name of the entitlement.
  1222. */
  1223. Name: __string;
  1224. /**
  1225. * 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.
  1226. */
  1227. Subscribers: __listOf__string;
  1228. }
  1229. export type EntitlementStatus = "ENABLED"|"DISABLED"|string;
  1230. export interface FailoverConfig {
  1231. /**
  1232. * 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.
  1233. */
  1234. FailoverMode?: FailoverMode;
  1235. /**
  1236. * Search window time to look for dash-7 packets
  1237. */
  1238. RecoveryWindow?: __integer;
  1239. /**
  1240. * The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
  1241. */
  1242. SourcePriority?: SourcePriority;
  1243. State?: State;
  1244. }
  1245. export type FailoverMode = "MERGE"|"FAILOVER"|string;
  1246. export interface Flow {
  1247. /**
  1248. * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.
  1249. */
  1250. AvailabilityZone: __string;
  1251. /**
  1252. * A description of the flow. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
  1253. */
  1254. Description?: __string;
  1255. /**
  1256. * The IP address from which video will be sent to output destinations.
  1257. */
  1258. EgressIp?: __string;
  1259. /**
  1260. * The entitlements in this flow.
  1261. */
  1262. Entitlements: __listOfEntitlement;
  1263. /**
  1264. * The Amazon Resource Name (ARN) of the flow.
  1265. */
  1266. FlowArn: __string;
  1267. /**
  1268. * 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.
  1269. */
  1270. MediaStreams?: __listOfMediaStream;
  1271. /**
  1272. * The name of the flow.
  1273. */
  1274. Name: __string;
  1275. /**
  1276. * The outputs in this flow.
  1277. */
  1278. Outputs: __listOfOutput;
  1279. Source: Source;
  1280. SourceFailoverConfig?: FailoverConfig;
  1281. Sources?: __listOfSource;
  1282. /**
  1283. * The current status of the flow.
  1284. */
  1285. Status: Status;
  1286. /**
  1287. * The VPC Interfaces for this flow.
  1288. */
  1289. VpcInterfaces?: __listOfVpcInterface;
  1290. Maintenance?: Maintenance;
  1291. }
  1292. export interface Fmtp {
  1293. /**
  1294. * The format of the audio channel.
  1295. */
  1296. ChannelOrder?: __string;
  1297. /**
  1298. * The format that is used for the representation of color.
  1299. */
  1300. Colorimetry?: Colorimetry;
  1301. /**
  1302. * 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.
  1303. */
  1304. ExactFramerate?: __string;
  1305. /**
  1306. * The pixel aspect ratio (PAR) of the video.
  1307. */
  1308. Par?: __string;
  1309. /**
  1310. * The encoding range of the video.
  1311. */
  1312. Range?: Range;
  1313. /**
  1314. * The type of compression that was used to smooth the video’s appearance
  1315. */
  1316. ScanMode?: ScanMode;
  1317. /**
  1318. * The transfer characteristic system (TCS) that is used in the video.
  1319. */
  1320. Tcs?: Tcs;
  1321. }
  1322. export interface FmtpRequest {
  1323. /**
  1324. * The format of the audio channel.
  1325. */
  1326. ChannelOrder?: __string;
  1327. /**
  1328. * The format that is used for the representation of color.
  1329. */
  1330. Colorimetry?: Colorimetry;
  1331. /**
  1332. * 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.
  1333. */
  1334. ExactFramerate?: __string;
  1335. /**
  1336. * The pixel aspect ratio (PAR) of the video.
  1337. */
  1338. Par?: __string;
  1339. /**
  1340. * The encoding range of the video.
  1341. */
  1342. Range?: Range;
  1343. /**
  1344. * The type of compression that was used to smooth the video’s appearance.
  1345. */
  1346. ScanMode?: ScanMode;
  1347. /**
  1348. * The transfer characteristic system (TCS) that is used in the video.
  1349. */
  1350. Tcs?: Tcs;
  1351. }
  1352. export interface FrameResolution {
  1353. /**
  1354. * The number of pixels in the height of the video frame.
  1355. */
  1356. FrameHeight: __integer;
  1357. /**
  1358. * The number of pixels in the width of the video frame.
  1359. */
  1360. FrameWidth: __integer;
  1361. }
  1362. export interface Gateway {
  1363. /**
  1364. * 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.
  1365. */
  1366. EgressCidrBlocks: __listOf__string;
  1367. /**
  1368. * The Amazon Resource Name (ARN) of the gateway.
  1369. */
  1370. GatewayArn: __string;
  1371. GatewayMessages?: __listOfMessageDetail;
  1372. /**
  1373. * The current status of the gateway.
  1374. */
  1375. GatewayState?: GatewayState;
  1376. /**
  1377. * The name of the gateway. This name can not be modified after the gateway is created.
  1378. */
  1379. Name: __string;
  1380. /**
  1381. * The list of networks in the gateway.
  1382. */
  1383. Networks: __listOfGatewayNetwork;
  1384. }
  1385. export interface GatewayBridgeSource {
  1386. /**
  1387. * The ARN of the bridge feeding this flow.
  1388. */
  1389. BridgeArn: __string;
  1390. /**
  1391. * The name of the VPC interface attachment to use for this bridge source.
  1392. */
  1393. VpcInterfaceAttachment?: VpcInterfaceAttachment;
  1394. }
  1395. export interface GatewayInstance {
  1396. /**
  1397. * 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.
  1398. */
  1399. BridgePlacement: BridgePlacement;
  1400. /**
  1401. * The connection state of the instance.
  1402. */
  1403. ConnectionStatus: ConnectionStatus;
  1404. /**
  1405. * The Amazon Resource Name (ARN) of the instance.
  1406. */
  1407. GatewayArn: __string;
  1408. /**
  1409. * The Amazon Resource Name (ARN) of the gateway.
  1410. */
  1411. GatewayInstanceArn: __string;
  1412. /**
  1413. * The managed instance ID generated by the SSM install. This will begin with "mi-".
  1414. */
  1415. InstanceId: __string;
  1416. InstanceMessages?: __listOfMessageDetail;
  1417. /**
  1418. * The status of the instance.
  1419. */
  1420. InstanceState: InstanceState;
  1421. /**
  1422. * The running bridge count.
  1423. */
  1424. RunningBridgeCount: __integer;
  1425. }
  1426. export interface GatewayNetwork {
  1427. /**
  1428. * 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.
  1429. */
  1430. CidrBlock: __string;
  1431. /**
  1432. * The name of the network. This name is used to reference the network and must be unique among networks in this gateway.
  1433. */
  1434. Name: __string;
  1435. }
  1436. export type GatewayState = "CREATING"|"ACTIVE"|"UPDATING"|"ERROR"|"DELETING"|"DELETED"|string;
  1437. export interface GrantEntitlementRequest {
  1438. /**
  1439. * Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
  1440. */
  1441. DataTransferSubscriberFeePercent?: __integer;
  1442. /**
  1443. * 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.
  1444. */
  1445. Description?: __string;
  1446. /**
  1447. * The type of encryption that will be used on the output that is associated with this entitlement. Allowable encryption types: static-key, speke.
  1448. */
  1449. Encryption?: Encryption;
  1450. /**
  1451. * 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.
  1452. */
  1453. EntitlementStatus?: EntitlementStatus;
  1454. /**
  1455. * The name of the entitlement. This value must be unique within the current flow.
  1456. */
  1457. Name?: __string;
  1458. /**
  1459. * 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.
  1460. */
  1461. Subscribers: __listOf__string;
  1462. }
  1463. export interface GrantFlowEntitlementsRequest {
  1464. /**
  1465. * The list of entitlements that you want to grant.
  1466. */
  1467. Entitlements: __listOfGrantEntitlementRequest;
  1468. /**
  1469. * The flow that you want to grant entitlements on.
  1470. */
  1471. FlowArn: __string;
  1472. }
  1473. export interface GrantFlowEntitlementsResponse {
  1474. /**
  1475. * The entitlements that were just granted.
  1476. */
  1477. Entitlements?: __listOfEntitlement;
  1478. /**
  1479. * The ARN of the flow that these entitlements were granted to.
  1480. */
  1481. FlowArn?: __string;
  1482. }
  1483. export interface IngressGatewayBridge {
  1484. /**
  1485. * The ID of the instance running this bridge.
  1486. */
  1487. InstanceId?: __string;
  1488. /**
  1489. * The maximum expected bitrate (in bps) of the ingress bridge.
  1490. */
  1491. MaxBitrate: __integer;
  1492. /**
  1493. * The maximum number of outputs on the ingress bridge.
  1494. */
  1495. MaxOutputs: __integer;
  1496. }
  1497. export interface InputConfiguration {
  1498. /**
  1499. * The IP address that the flow listens on for incoming content for a media stream.
  1500. */
  1501. InputIp: __string;
  1502. /**
  1503. * The port that the flow listens on for an incoming media stream.
  1504. */
  1505. InputPort: __integer;
  1506. /**
  1507. * The VPC interface where the media stream comes in from.
  1508. */
  1509. Interface: Interface;
  1510. }
  1511. export interface InputConfigurationRequest {
  1512. /**
  1513. * The port that you want the flow to listen on for an incoming media stream.
  1514. */
  1515. InputPort: __integer;
  1516. /**
  1517. * The VPC interface that you want to use for the incoming media stream.
  1518. */
  1519. Interface: InterfaceRequest;
  1520. }
  1521. export type InstanceState = "REGISTERING"|"ACTIVE"|"DEREGISTERING"|"DEREGISTERED"|"REGISTRATION_ERROR"|"DEREGISTRATION_ERROR"|string;
  1522. export interface Interface {
  1523. /**
  1524. * The name of the VPC interface.
  1525. */
  1526. Name: __string;
  1527. }
  1528. export interface InterfaceRequest {
  1529. /**
  1530. * The name of the VPC interface.
  1531. */
  1532. Name: __string;
  1533. }
  1534. export type KeyType = "speke"|"static-key"|"srt-password"|string;
  1535. export interface ListBridgesRequest {
  1536. /**
  1537. * Filter the list results to display only the bridges associated with the selected Amazon Resource Name (ARN).
  1538. */
  1539. FilterArn?: __string;
  1540. /**
  1541. * The maximum number of results to return per API request. For example, you submit a ListBridges request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
  1542. */
  1543. MaxResults?: MaxResults;
  1544. /**
  1545. * The token that identifies which batch of results that you want to see. For example, you submit a ListBridges request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListBridges request a second time and specify the NextToken value.
  1546. */
  1547. NextToken?: __string;
  1548. }
  1549. export interface ListBridgesResponse {
  1550. /**
  1551. * A list of bridge summaries.
  1552. */
  1553. Bridges?: __listOfListedBridge;
  1554. /**
  1555. * The token that identifies which batch of results that you want to see. For example, you submit a ListBridges request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListBridges request a second time and specify the NextToken value.
  1556. */
  1557. NextToken?: __string;
  1558. }
  1559. export interface ListEntitlementsRequest {
  1560. /**
  1561. * The maximum number of results to return per API request. For example, you submit a ListEntitlements request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 20 results per page.
  1562. */
  1563. MaxResults?: MaxResults;
  1564. /**
  1565. * The token that identifies which batch of results that you want to see. For example, you submit a ListEntitlements request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListEntitlements request a second time and specify the NextToken value.
  1566. */
  1567. NextToken?: __string;
  1568. }
  1569. export interface ListEntitlementsResponse {
  1570. /**
  1571. * A list of entitlements that have been granted to you from other AWS accounts.
  1572. */
  1573. Entitlements?: __listOfListedEntitlement;
  1574. /**
  1575. * The token that identifies which batch of results that you want to see. For example, you submit a ListEntitlements request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListEntitlements request a second time and specify the NextToken value.
  1576. */
  1577. NextToken?: __string;
  1578. }
  1579. export interface ListFlowsRequest {
  1580. /**
  1581. * The maximum number of results to return per API request. For example, you submit a ListFlows request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
  1582. */
  1583. MaxResults?: MaxResults;
  1584. /**
  1585. * The token that identifies which batch of results that you want to see. For example, you submit a ListFlows request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListFlows request a second time and specify the NextToken value.
  1586. */
  1587. NextToken?: __string;
  1588. }
  1589. export interface ListFlowsResponse {
  1590. /**
  1591. * A list of flow summaries.
  1592. */
  1593. Flows?: __listOfListedFlow;
  1594. /**
  1595. * The token that identifies which batch of results that you want to see. For example, you submit a ListFlows request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListFlows request a second time and specify the NextToken value.
  1596. */
  1597. NextToken?: __string;
  1598. }
  1599. export interface ListGatewayInstancesRequest {
  1600. /**
  1601. * Filter the list results to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).
  1602. */
  1603. FilterArn?: __string;
  1604. /**
  1605. * The maximum number of results to return per API request. For example, you submit a ListInstances request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
  1606. */
  1607. MaxResults?: MaxResults;
  1608. /**
  1609. * The token that identifies which batch of results that you want to see. For example, you submit a ListInstances request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListInstances request a second time and specify the NextToken value.
  1610. */
  1611. NextToken?: __string;
  1612. }
  1613. export interface ListGatewayInstancesResponse {
  1614. /**
  1615. * A list of instance summaries.
  1616. */
  1617. Instances?: __listOfListedGatewayInstance;
  1618. /**
  1619. * The token that identifies which batch of results that you want to see. For example, you submit a ListInstances request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListInstances request a second time and specify the NextToken value.
  1620. */
  1621. NextToken?: __string;
  1622. }
  1623. export interface ListGatewaysRequest {
  1624. /**
  1625. * The maximum number of results to return per API request. For example, you submit a ListGateways request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
  1626. */
  1627. MaxResults?: MaxResults;
  1628. /**
  1629. * The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
  1630. */
  1631. NextToken?: __string;
  1632. }
  1633. export interface ListGatewaysResponse {
  1634. /**
  1635. * A list of gateway summaries.
  1636. */
  1637. Gateways?: __listOfListedGateway;
  1638. /**
  1639. * The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
  1640. */
  1641. NextToken?: __string;
  1642. }
  1643. export interface ListOfferingsRequest {
  1644. /**
  1645. * The maximum number of results to return per API request. For example, you submit a ListOfferings request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
  1646. */
  1647. MaxResults?: MaxResults;
  1648. /**
  1649. * The token that identifies which batch of results that you want to see. For example, you submit a ListOfferings request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListOfferings request a second time and specify the NextToken value.
  1650. */
  1651. NextToken?: __string;
  1652. }
  1653. export interface ListOfferingsResponse {
  1654. /**
  1655. * The token that identifies which batch of results that you want to see. For example, you submit a ListOfferings request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListOfferings request a second time and specify the NextToken value.
  1656. */
  1657. NextToken?: __string;
  1658. /**
  1659. * A list of offerings that are available to this account in the current AWS Region.
  1660. */
  1661. Offerings?: __listOfOffering;
  1662. }
  1663. export interface ListReservationsRequest {
  1664. /**
  1665. * The maximum number of results to return per API request. For example, you submit a ListReservations request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
  1666. */
  1667. MaxResults?: MaxResults;
  1668. /**
  1669. * The token that identifies which batch of results that you want to see. For example, you submit a ListReservations request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListOfferings request a second time and specify the NextToken value.
  1670. */
  1671. NextToken?: __string;
  1672. }
  1673. export interface ListReservationsResponse {
  1674. /**
  1675. * The token that identifies which batch of results that you want to see. For example, you submit a ListReservations request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListReservations request a second time and specify the NextToken value.
  1676. */
  1677. NextToken?: __string;
  1678. /**
  1679. * A list of all reservations that have been purchased by this account in the current AWS Region.
  1680. */
  1681. Reservations?: __listOfReservation;
  1682. }
  1683. export interface ListTagsForResourceRequest {
  1684. /**
  1685. * The Amazon Resource Name (ARN) that identifies the AWS Elemental MediaConnect resource for which to list the tags.
  1686. */
  1687. ResourceArn: __string;
  1688. }
  1689. export interface ListTagsForResourceResponse {
  1690. /**
  1691. * A map from tag keys to values. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
  1692. */
  1693. Tags?: __mapOf__string;
  1694. }
  1695. export interface ListedBridge {
  1696. /**
  1697. * The ARN of the bridge.
  1698. */
  1699. BridgeArn: __string;
  1700. BridgeState: BridgeState;
  1701. /**
  1702. * The type of the bridge.
  1703. */
  1704. BridgeType: __string;
  1705. /**
  1706. * The name of the bridge.
  1707. */
  1708. Name: __string;
  1709. /**
  1710. * The ARN of the gateway associated with the bridge.
  1711. */
  1712. PlacementArn: __string;
  1713. }
  1714. export interface ListedEntitlement {
  1715. /**
  1716. * Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
  1717. */
  1718. DataTransferSubscriberFeePercent?: __integer;
  1719. /**
  1720. * The ARN of the entitlement.
  1721. */
  1722. EntitlementArn: __string;
  1723. /**
  1724. * The name of the entitlement.
  1725. */
  1726. EntitlementName: __string;
  1727. }
  1728. export interface ListedFlow {
  1729. /**
  1730. * The Availability Zone that the flow was created in.
  1731. */
  1732. AvailabilityZone: __string;
  1733. /**
  1734. * A description of the flow.
  1735. */
  1736. Description: __string;
  1737. /**
  1738. * The ARN of the flow.
  1739. */
  1740. FlowArn: __string;
  1741. /**
  1742. * The name of the flow.
  1743. */
  1744. Name: __string;
  1745. /**
  1746. * 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).
  1747. */
  1748. SourceType: SourceType;
  1749. /**
  1750. * The current status of the flow.
  1751. */
  1752. Status: Status;
  1753. Maintenance?: Maintenance;
  1754. }
  1755. export interface ListedGateway {
  1756. /**
  1757. * The Amazon Resource Name (ARN) of the gateway.
  1758. */
  1759. GatewayArn: __string;
  1760. GatewayState: GatewayState;
  1761. /**
  1762. * The name of the gateway.
  1763. */
  1764. Name: __string;
  1765. }
  1766. export interface ListedGatewayInstance {
  1767. /**
  1768. * The Amazon Resource Name (ARN) of the gateway.
  1769. */
  1770. GatewayArn: __string;
  1771. /**
  1772. * The Amazon Resource Name (ARN) of the instance.
  1773. */
  1774. GatewayInstanceArn: __string;
  1775. /**
  1776. * The managed instance ID generated by the SSM install. This will begin with "mi-".
  1777. */
  1778. InstanceId: __string;
  1779. /**
  1780. * The status of the instance.
  1781. */
  1782. InstanceState?: InstanceState;
  1783. }
  1784. export interface Maintenance {
  1785. /**
  1786. * A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
  1787. */
  1788. MaintenanceDay?: MaintenanceDay;
  1789. /**
  1790. * The Maintenance has to be performed before this deadline in ISO UTC format. Example: 2021-01-30T08:30:00Z.
  1791. */
  1792. MaintenanceDeadline?: __string;
  1793. /**
  1794. * A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.
  1795. */
  1796. MaintenanceScheduledDate?: __string;
  1797. /**
  1798. * 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.
  1799. */
  1800. MaintenanceStartHour?: __string;
  1801. }
  1802. export type MaintenanceDay = "Monday"|"Tuesday"|"Wednesday"|"Thursday"|"Friday"|"Saturday"|"Sunday"|string;
  1803. export type MaxResults = number;
  1804. export interface MediaStream {
  1805. /**
  1806. * Attributes that are related to the media stream.
  1807. */
  1808. Attributes?: MediaStreamAttributes;
  1809. /**
  1810. * The sample rate for the stream. This value is measured in Hz.
  1811. */
  1812. ClockRate?: __integer;
  1813. /**
  1814. * A description that can help you quickly identify what your media stream is used for.
  1815. */
  1816. Description?: __string;
  1817. /**
  1818. * 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.
  1819. */
  1820. Fmt: __integer;
  1821. /**
  1822. * A unique identifier for the media stream.
  1823. */
  1824. MediaStreamId: __integer;
  1825. /**
  1826. * A name that helps you distinguish one media stream from another.
  1827. */
  1828. MediaStreamName: __string;
  1829. /**
  1830. * The type of media stream.
  1831. */
  1832. MediaStreamType: MediaStreamType;
  1833. /**
  1834. * The resolution of the video.
  1835. */
  1836. VideoFormat?: __string;
  1837. }
  1838. export interface MediaStreamAttributes {
  1839. /**
  1840. * A set of parameters that define the media stream.
  1841. */
  1842. Fmtp: Fmtp;
  1843. /**
  1844. * The audio language, in a format that is recognized by the receiver.
  1845. */
  1846. Lang?: __string;
  1847. }
  1848. export interface MediaStreamAttributesRequest {
  1849. /**
  1850. * The settings that you want to use to define the media stream.
  1851. */
  1852. Fmtp?: FmtpRequest;
  1853. /**
  1854. * The audio language, in a format that is recognized by the receiver.
  1855. */
  1856. Lang?: __string;
  1857. }
  1858. export interface MediaStreamOutputConfiguration {
  1859. /**
  1860. * The transport parameters that are associated with each outbound media stream.
  1861. */
  1862. DestinationConfigurations?: __listOfDestinationConfiguration;
  1863. /**
  1864. * 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.
  1865. */
  1866. EncodingName: EncodingName;
  1867. /**
  1868. * Encoding parameters
  1869. */
  1870. EncodingParameters?: EncodingParameters;
  1871. /**
  1872. * The name of the media stream.
  1873. */
  1874. MediaStreamName: __string;
  1875. }
  1876. export interface MediaStreamOutputConfigurationRequest {
  1877. /**
  1878. * The transport parameters that you want to associate with the media stream.
  1879. */
  1880. DestinationConfigurations?: __listOfDestinationConfigurationRequest;
  1881. /**
  1882. * 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.
  1883. */
  1884. EncodingName: EncodingName;
  1885. /**
  1886. * 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.
  1887. */
  1888. EncodingParameters?: EncodingParametersRequest;
  1889. /**
  1890. * The name of the media stream that is associated with the output.
  1891. */
  1892. MediaStreamName: __string;
  1893. }
  1894. export interface MediaStreamSourceConfiguration {
  1895. /**
  1896. * 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.
  1897. */
  1898. EncodingName: EncodingName;
  1899. /**
  1900. * The transport parameters that are associated with an incoming media stream.
  1901. */
  1902. InputConfigurations?: __listOfInputConfiguration;
  1903. /**
  1904. * The name of the media stream.
  1905. */
  1906. MediaStreamName: __string;
  1907. }
  1908. export interface MediaStreamSourceConfigurationRequest {
  1909. /**
  1910. * 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.
  1911. */
  1912. EncodingName: EncodingName;
  1913. /**
  1914. * The transport parameters that you want to associate with the media stream.
  1915. */
  1916. InputConfigurations?: __listOfInputConfigurationRequest;
  1917. /**
  1918. * The name of the media stream.
  1919. */
  1920. MediaStreamName: __string;
  1921. }
  1922. export type MediaStreamType = "video"|"audio"|"ancillary-data"|string;
  1923. export interface MessageDetail {
  1924. /**
  1925. * The error code.
  1926. */
  1927. Code: __string;
  1928. /**
  1929. * The specific error message that MediaConnect returns to help you understand the reason that the request did not succeed.
  1930. */
  1931. Message: __string;
  1932. /**
  1933. * The name of the resource.
  1934. */
  1935. ResourceName?: __string;
  1936. }
  1937. export interface Messages {
  1938. /**
  1939. * A list of errors that might have been generated from processes on this flow.
  1940. */
  1941. Errors: __listOf__string;
  1942. }
  1943. export type NetworkInterfaceType = "ena"|"efa"|string;
  1944. export interface Offering {
  1945. /**
  1946. * The type of currency that is used for billing. The currencyCode used for all reservations is US dollars.
  1947. */
  1948. CurrencyCode: __string;
  1949. /**
  1950. * The length of time that your reservation would be active.
  1951. */
  1952. Duration: __integer;
  1953. /**
  1954. * The unit of measurement for the duration of the offering.
  1955. */
  1956. DurationUnits: DurationUnits;
  1957. /**
  1958. * The Amazon Resource Name (ARN) that MediaConnect assigns to the offering.
  1959. */
  1960. OfferingArn: __string;
  1961. /**
  1962. * A description of the offering.
  1963. */
  1964. OfferingDescription: __string;
  1965. /**
  1966. * The cost of a single unit. This value, in combination with priceUnits, makes up the rate.
  1967. */
  1968. PricePerUnit: __string;
  1969. /**
  1970. * The unit of measurement that is used for billing. This value, in combination with pricePerUnit, makes up the rate.
  1971. */
  1972. PriceUnits: PriceUnits;
  1973. /**
  1974. * A definition of the amount of outbound bandwidth that you would be reserving if you purchase the offering.
  1975. */
  1976. ResourceSpecification: ResourceSpecification;
  1977. }
  1978. export interface Output {
  1979. /**
  1980. * Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
  1981. */
  1982. DataTransferSubscriberFeePercent?: __integer;
  1983. /**
  1984. * A description of the output.
  1985. */
  1986. Description?: __string;
  1987. /**
  1988. * The address where you want to send the output.
  1989. */
  1990. Destination?: __string;
  1991. /**
  1992. * The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
  1993. */
  1994. Encryption?: Encryption;
  1995. /**
  1996. * The ARN of the entitlement on the originator''s flow. This value is relevant only on entitled flows.
  1997. */
  1998. EntitlementArn?: __string;
  1999. /**
  2000. * 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.
  2001. */
  2002. ListenerAddress?: __string;
  2003. /**
  2004. * The input ARN of the AWS Elemental MediaLive channel. This parameter is relevant only for outputs that were added by creating a MediaLive input.
  2005. */
  2006. MediaLiveInputArn?: __string;
  2007. /**
  2008. * The configuration for each media stream that is associated with the output.
  2009. */
  2010. MediaStreamOutputConfigurations?: __listOfMediaStreamOutputConfiguration;
  2011. /**
  2012. * The name of the output. This value must be unique within the current flow.
  2013. */
  2014. Name: __string;
  2015. /**
  2016. * The ARN of the output.
  2017. */
  2018. OutputArn: __string;
  2019. /**
  2020. * The port to use when content is distributed to this output.
  2021. */
  2022. Port?: __integer;
  2023. /**
  2024. * Attributes related to the transport stream that are used in the output.
  2025. */
  2026. Transport?: Transport;
  2027. /**
  2028. * The name of the VPC interface attachment to use for this output.
  2029. */
  2030. VpcInterfaceAttachment?: VpcInterfaceAttachment;
  2031. /**
  2032. * The ARN of the bridge that added this output.
  2033. */
  2034. BridgeArn?: __string;
  2035. /**
  2036. * The bridge output ports currently in use.
  2037. */
  2038. BridgePorts?: __listOf__integer;
  2039. }
  2040. export type PriceUnits = "HOURLY"|string;
  2041. export type Protocol = "zixi-push"|"rtp-fec"|"rtp"|"zixi-pull"|"rist"|"st2110-jpegxs"|"cdi"|"srt-listener"|"srt-caller"|"fujitsu-qos"|"udp"|string;
  2042. export interface PurchaseOfferingRequest {
  2043. /**
  2044. * The Amazon Resource Name (ARN) of the offering.
  2045. */
  2046. OfferingArn: __string;
  2047. /**
  2048. * The name that you want to use for the reservation.
  2049. */
  2050. ReservationName: __string;
  2051. /**
  2052. * The date and time that you want the reservation to begin, in Coordinated Universal Time (UTC). You can specify any date and time between 12:00am on the first day of the current month to the current time on today's date, inclusive. Specify the start in a 24-hour notation. Use the following format: YYYY-MM-DDTHH:mm:SSZ, where T and Z are literal characters. For example, to specify 11:30pm on March 5, 2020, enter 2020-03-05T23:30:00Z.
  2053. */
  2054. Start: __string;
  2055. }
  2056. export interface PurchaseOfferingResponse {
  2057. Reservation?: Reservation;
  2058. }
  2059. export type Range = "NARROW"|"FULL"|"FULLPROTECT"|string;
  2060. export interface RemoveBridgeOutputRequest {
  2061. /**
  2062. * The ARN of the bridge that you want to update.
  2063. */
  2064. BridgeArn: __string;
  2065. /**
  2066. * The name of the bridge output that you want to remove.
  2067. */
  2068. OutputName: __string;
  2069. }
  2070. export interface RemoveBridgeOutputResponse {
  2071. BridgeArn?: __string;
  2072. OutputName?: __string;
  2073. }
  2074. export interface RemoveBridgeSourceRequest {
  2075. /**
  2076. * The ARN of the bridge that you want to update.
  2077. */
  2078. BridgeArn: __string;
  2079. /**
  2080. * The name of the bridge source that you want to remove.
  2081. */
  2082. SourceName: __string;
  2083. }
  2084. export interface RemoveBridgeSourceResponse {
  2085. BridgeArn?: __string;
  2086. SourceName?: __string;
  2087. }
  2088. export interface RemoveFlowMediaStreamRequest {
  2089. /**
  2090. * The Amazon Resource Name (ARN) of the flow.
  2091. */
  2092. FlowArn: __string;
  2093. /**
  2094. * The name of the media stream that you want to remove.
  2095. */
  2096. MediaStreamName: __string;
  2097. }
  2098. export interface RemoveFlowMediaStreamResponse {
  2099. /**
  2100. * The Amazon Resource Name (ARN) of the flow.
  2101. */
  2102. FlowArn?: __string;
  2103. /**
  2104. * The name of the media stream that was removed.
  2105. */
  2106. MediaStreamName?: __string;
  2107. }
  2108. export interface RemoveFlowOutputRequest {
  2109. /**
  2110. * The flow that you want to remove an output from.
  2111. */
  2112. FlowArn: __string;
  2113. /**
  2114. * The ARN of the output that you want to remove.
  2115. */
  2116. OutputArn: __string;
  2117. }
  2118. export interface RemoveFlowOutputResponse {
  2119. /**
  2120. * The ARN of the flow that is associated with the output you removed.
  2121. */
  2122. FlowArn?: __string;
  2123. /**
  2124. * The ARN of the output that was removed.
  2125. */
  2126. OutputArn?: __string;
  2127. }
  2128. export interface RemoveFlowSourceRequest {
  2129. /**
  2130. * The flow that you want to remove a source from.
  2131. */
  2132. FlowArn: __string;
  2133. /**
  2134. * The ARN of the source that you want to remove.
  2135. */
  2136. SourceArn: __string;
  2137. }
  2138. export interface RemoveFlowSourceResponse {
  2139. /**
  2140. * The ARN of the flow that is associated with the source you removed.
  2141. */
  2142. FlowArn?: __string;
  2143. /**
  2144. * The ARN of the source that was removed.
  2145. */
  2146. SourceArn?: __string;
  2147. }
  2148. export interface RemoveFlowVpcInterfaceRequest {
  2149. /**
  2150. * The flow that you want to remove a VPC interface from.
  2151. */
  2152. FlowArn: __string;
  2153. /**
  2154. * The name of the VPC interface that you want to remove.
  2155. */
  2156. VpcInterfaceName: __string;
  2157. }
  2158. export interface RemoveFlowVpcInterfaceResponse {
  2159. /**
  2160. * The ARN of the flow that is associated with the VPC interface you removed.
  2161. */
  2162. FlowArn?: __string;
  2163. /**
  2164. * IDs of network interfaces associated with the removed VPC interface that Media Connect was unable to remove.
  2165. */
  2166. NonDeletedNetworkInterfaceIds?: __listOf__string;
  2167. /**
  2168. * The name of the VPC interface that was removed.
  2169. */
  2170. VpcInterfaceName?: __string;
  2171. }
  2172. export interface Reservation {
  2173. /**
  2174. * The type of currency that is used for billing. The currencyCode used for your reservation is US dollars.
  2175. */
  2176. CurrencyCode: __string;
  2177. /**
  2178. * The length of time that this reservation is active. MediaConnect defines this value in the offering.
  2179. */
  2180. Duration: __integer;
  2181. /**
  2182. * The unit of measurement for the duration of the reservation. MediaConnect defines this value in the offering.
  2183. */
  2184. DurationUnits: DurationUnits;
  2185. /**
  2186. * 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.
  2187. */
  2188. End: __string;
  2189. /**
  2190. * The Amazon Resource Name (ARN) that MediaConnect assigns to the offering.
  2191. */
  2192. OfferingArn: __string;
  2193. /**
  2194. * A description of the offering. MediaConnect defines this value in the offering.
  2195. */
  2196. OfferingDescription: __string;
  2197. /**
  2198. * The cost of a single unit. This value, in combination with priceUnits, makes up the rate. MediaConnect defines this value in the offering.
  2199. */
  2200. PricePerUnit: __string;
  2201. /**
  2202. * 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.
  2203. */
  2204. PriceUnits: PriceUnits;
  2205. /**
  2206. * The Amazon Resource Name (ARN) that MediaConnect assigns to the reservation when you purchase an offering.
  2207. */
  2208. ReservationArn: __string;
  2209. /**
  2210. * The name that you assigned to the reservation when you purchased the offering.
  2211. */
  2212. ReservationName: __string;
  2213. /**
  2214. * The status of your reservation.
  2215. */
  2216. ReservationState: ReservationState;
  2217. /**
  2218. * 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.
  2219. */
  2220. ResourceSpecification: ResourceSpecification;
  2221. /**
  2222. * The day and time that the reservation becomes active. You set this value when you purchase the offering.
  2223. */
  2224. Start: __string;
  2225. }
  2226. export type ReservationState = "ACTIVE"|"EXPIRED"|"PROCESSING"|"CANCELED"|string;
  2227. export interface ResourceSpecification {
  2228. /**
  2229. * The amount of outbound bandwidth that is discounted in the offering.
  2230. */
  2231. ReservedBitrate?: __integer;
  2232. /**
  2233. * The type of resource and the unit that is being billed for.
  2234. */
  2235. ResourceType: ResourceType;
  2236. }
  2237. export type ResourceType = "Mbps_Outbound_Bandwidth"|string;
  2238. export interface RevokeFlowEntitlementRequest {
  2239. /**
  2240. * The ARN of the entitlement that you want to revoke.
  2241. */
  2242. EntitlementArn: __string;
  2243. /**
  2244. * The flow that you want to revoke an entitlement from.
  2245. */
  2246. FlowArn: __string;
  2247. }
  2248. export interface RevokeFlowEntitlementResponse {
  2249. /**
  2250. * The ARN of the entitlement that was revoked.
  2251. */
  2252. EntitlementArn?: __string;
  2253. /**
  2254. * The ARN of the flow that the entitlement was revoked from.
  2255. */
  2256. FlowArn?: __string;
  2257. }
  2258. export type ScanMode = "progressive"|"interlace"|"progressive-segmented-frame"|string;
  2259. export interface SetGatewayBridgeSourceRequest {
  2260. /**
  2261. * The ARN of the bridge feeding this flow.
  2262. */
  2263. BridgeArn: __string;
  2264. /**
  2265. * The name of the VPC interface attachment to use for this bridge source.
  2266. */
  2267. VpcInterfaceAttachment?: VpcInterfaceAttachment;
  2268. }
  2269. export interface SetSourceRequest {
  2270. /**
  2271. * The type of encryption that is used on the content ingested from this source. Allowable encryption types: static-key.
  2272. */
  2273. Decryption?: Encryption;
  2274. /**
  2275. * A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
  2276. */
  2277. Description?: __string;
  2278. /**
  2279. * 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.
  2280. */
  2281. EntitlementArn?: __string;
  2282. /**
  2283. * The port that the flow will be listening on for incoming content.
  2284. */
  2285. IngestPort?: __integer;
  2286. /**
  2287. * The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
  2288. */
  2289. MaxBitrate?: __integer;
  2290. /**
  2291. * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
  2292. */
  2293. MaxLatency?: __integer;
  2294. /**
  2295. * The size of the buffer (in milliseconds) to use to sync incoming source data.
  2296. */
  2297. MaxSyncBuffer?: __integer;
  2298. /**
  2299. * The media streams that are associated with the source, and the parameters for those associations.
  2300. */
  2301. MediaStreamSourceConfigurations?: __listOfMediaStreamSourceConfigurationRequest;
  2302. /**
  2303. * 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.
  2304. */
  2305. MinLatency?: __integer;
  2306. /**
  2307. * The name of the source.
  2308. */
  2309. Name?: __string;
  2310. /**
  2311. * The protocol that is used by the source.
  2312. */
  2313. Protocol?: Protocol;
  2314. /**
  2315. * The port that the flow uses to send outbound requests to initiate connection with the sender.
  2316. */
  2317. SenderControlPort?: __integer;
  2318. /**
  2319. * The IP address that the flow communicates with to initiate connection with the sender.
  2320. */
  2321. SenderIpAddress?: __string;
  2322. /**
  2323. * Source IP or domain name for SRT-caller protocol.
  2324. */
  2325. SourceListenerAddress?: __string;
  2326. /**
  2327. * Source port for SRT-caller protocol.
  2328. */
  2329. SourceListenerPort?: __integer;
  2330. /**
  2331. * The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
  2332. */
  2333. StreamId?: __string;
  2334. /**
  2335. * The name of the VPC interface to use for this source.
  2336. */
  2337. VpcInterfaceName?: __string;
  2338. /**
  2339. * 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.
  2340. */
  2341. WhitelistCidr?: __string;
  2342. /**
  2343. * The source configuration for cloud flows receiving a stream from a bridge.
  2344. */
  2345. GatewayBridgeSource?: SetGatewayBridgeSourceRequest;
  2346. }
  2347. export interface Source {
  2348. /**
  2349. * Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
  2350. */
  2351. DataTransferSubscriberFeePercent?: __integer;
  2352. /**
  2353. * The type of encryption that is used on the content ingested from this source.
  2354. */
  2355. Decryption?: Encryption;
  2356. /**
  2357. * A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
  2358. */
  2359. Description?: __string;
  2360. /**
  2361. * 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.
  2362. */
  2363. EntitlementArn?: __string;
  2364. /**
  2365. * The IP address that the flow will be listening on for incoming content.
  2366. */
  2367. IngestIp?: __string;
  2368. /**
  2369. * The port that the flow will be listening on for incoming content.
  2370. */
  2371. IngestPort?: __integer;
  2372. /**
  2373. * The media streams that are associated with the source, and the parameters for those associations.
  2374. */
  2375. MediaStreamSourceConfigurations?: __listOfMediaStreamSourceConfiguration;
  2376. /**
  2377. * The name of the source.
  2378. */
  2379. Name: __string;
  2380. /**
  2381. * The port that the flow uses to send outbound requests to initiate connection with the sender.
  2382. */
  2383. SenderControlPort?: __integer;
  2384. /**
  2385. * The IP address that the flow communicates with to initiate connection with the sender.
  2386. */
  2387. SenderIpAddress?: __string;
  2388. /**
  2389. * The ARN of the source.
  2390. */
  2391. SourceArn: __string;
  2392. /**
  2393. * Attributes related to the transport stream that are used in the source.
  2394. */
  2395. Transport?: Transport;
  2396. /**
  2397. * The name of the VPC interface that is used for this source.
  2398. */
  2399. VpcInterfaceName?: __string;
  2400. /**
  2401. * 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.
  2402. */
  2403. WhitelistCidr?: __string;
  2404. /**
  2405. * The source configuration for cloud flows receiving a stream from a bridge.
  2406. */
  2407. GatewayBridgeSource?: GatewayBridgeSource;
  2408. }
  2409. export interface SourcePriority {
  2410. /**
  2411. * The name of the source you choose as the primary source for this flow.
  2412. */
  2413. PrimarySource?: __string;
  2414. }
  2415. export type SourceType = "OWNED"|"ENTITLED"|string;
  2416. export interface StartFlowRequest {
  2417. /**
  2418. * The ARN of the flow that you want to start.
  2419. */
  2420. FlowArn: __string;
  2421. }
  2422. export interface StartFlowResponse {
  2423. /**
  2424. * The ARN of the flow that you started.
  2425. */
  2426. FlowArn?: __string;
  2427. /**
  2428. * The status of the flow when the StartFlow process begins.
  2429. */
  2430. Status?: Status;
  2431. }
  2432. export type State = "ENABLED"|"DISABLED"|string;
  2433. export type Status = "STANDBY"|"ACTIVE"|"UPDATING"|"DELETING"|"STARTING"|"STOPPING"|"ERROR"|string;
  2434. export interface StopFlowRequest {
  2435. /**
  2436. * The ARN of the flow that you want to stop.
  2437. */
  2438. FlowArn: __string;
  2439. }
  2440. export interface StopFlowResponse {
  2441. /**
  2442. * The ARN of the flow that you stopped.
  2443. */
  2444. FlowArn?: __string;
  2445. /**
  2446. * The status of the flow when the StopFlow process begins.
  2447. */
  2448. Status?: Status;
  2449. }
  2450. export interface TagResourceRequest {
  2451. /**
  2452. * The Amazon Resource Name (ARN) that identifies the AWS Elemental MediaConnect resource to which to add tags.
  2453. */
  2454. ResourceArn: __string;
  2455. /**
  2456. * A map from tag keys to values. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
  2457. */
  2458. Tags: __mapOf__string;
  2459. }
  2460. export type Tcs = "SDR"|"PQ"|"HLG"|"LINEAR"|"BT2100LINPQ"|"BT2100LINHLG"|"ST2065-1"|"ST428-1"|"DENSITY"|string;
  2461. export interface Transport {
  2462. /**
  2463. * 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.
  2464. */
  2465. CidrAllowList?: __listOf__string;
  2466. /**
  2467. * The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
  2468. */
  2469. MaxBitrate?: __integer;
  2470. /**
  2471. * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
  2472. */
  2473. MaxLatency?: __integer;
  2474. /**
  2475. * The size of the buffer (in milliseconds) to use to sync incoming source data.
  2476. */
  2477. MaxSyncBuffer?: __integer;
  2478. /**
  2479. * 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.
  2480. */
  2481. MinLatency?: __integer;
  2482. /**
  2483. * The protocol that is used by the source or output.
  2484. */
  2485. Protocol: Protocol;
  2486. /**
  2487. * The remote ID for the Zixi-pull stream.
  2488. */
  2489. RemoteId?: __string;
  2490. /**
  2491. * The port that the flow uses to send outbound requests to initiate connection with the sender.
  2492. */
  2493. SenderControlPort?: __integer;
  2494. /**
  2495. * The IP address that the flow communicates with to initiate connection with the sender.
  2496. */
  2497. SenderIpAddress?: __string;
  2498. /**
  2499. * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
  2500. */
  2501. SmoothingLatency?: __integer;
  2502. /**
  2503. * Source IP or domain name for SRT-caller protocol.
  2504. */
  2505. SourceListenerAddress?: __string;
  2506. /**
  2507. * Source port for SRT-caller protocol.
  2508. */
  2509. SourceListenerPort?: __integer;
  2510. /**
  2511. * The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
  2512. */
  2513. StreamId?: __string;
  2514. }
  2515. export interface TransportMediaInfo {
  2516. /**
  2517. * The list of transport stream programs in the current flow's source.
  2518. */
  2519. Programs: __listOfTransportStreamProgram;
  2520. }
  2521. export interface TransportStream {
  2522. /**
  2523. * The number of channels in the audio stream.
  2524. */
  2525. Channels?: __integer;
  2526. /**
  2527. * The codec used by the stream.
  2528. */
  2529. Codec?: __string;
  2530. /**
  2531. * The frame rate used by the video stream.
  2532. */
  2533. FrameRate?: __string;
  2534. FrameResolution?: FrameResolution;
  2535. /**
  2536. * The Packet ID (PID) as it is reported in the Program Map Table.
  2537. */
  2538. Pid: __integer;
  2539. /**
  2540. * The sample rate used by the audio stream.
  2541. */
  2542. SampleRate?: __integer;
  2543. /**
  2544. * The sample bit size used by the audio stream.
  2545. */
  2546. SampleSize?: __integer;
  2547. /**
  2548. * The Stream Type as it is reported in the Program Map Table.
  2549. */
  2550. StreamType: __string;
  2551. }
  2552. export interface TransportStreamProgram {
  2553. /**
  2554. * The Program Clock Reference (PCR) Packet ID (PID) as it is reported in the Program Association Table.
  2555. */
  2556. PcrPid: __integer;
  2557. /**
  2558. * The program name as it is reported in the Program Association Table.
  2559. */
  2560. ProgramName?: __string;
  2561. /**
  2562. * The program number as it is reported in the Program Association Table.
  2563. */
  2564. ProgramNumber: __integer;
  2565. /**
  2566. * The program Packet ID (PID) as it is reported in the Program Association Table.
  2567. */
  2568. ProgramPid: __integer;
  2569. /**
  2570. * The list of elementary transport streams in the program. The list includes video, audio, and data streams.
  2571. */
  2572. Streams: __listOfTransportStream;
  2573. }
  2574. export interface UntagResourceRequest {
  2575. /**
  2576. * The Amazon Resource Name (ARN) that identifies the AWS Elemental MediaConnect resource from which to delete tags.
  2577. */
  2578. ResourceArn: __string;
  2579. /**
  2580. * The keys of the tags to be removed.
  2581. */
  2582. TagKeys: __listOf__string;
  2583. }
  2584. export interface UpdateBridgeFlowSourceRequest {
  2585. /**
  2586. * The ARN of the cloud flow to use as a source of this bridge.
  2587. */
  2588. FlowArn?: __string;
  2589. /**
  2590. * The name of the VPC interface attachment to use for this source.
  2591. */
  2592. FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
  2593. }
  2594. export interface UpdateBridgeNetworkOutputRequest {
  2595. /**
  2596. * The network output IP Address.
  2597. */
  2598. IpAddress?: __string;
  2599. /**
  2600. * The network output's gateway network name.
  2601. */
  2602. NetworkName?: __string;
  2603. /**
  2604. * The network output port.
  2605. */
  2606. Port?: __integer;
  2607. /**
  2608. * The network output protocol.
  2609. */
  2610. Protocol?: Protocol;
  2611. /**
  2612. * The network output TTL.
  2613. */
  2614. Ttl?: __integer;
  2615. }
  2616. export interface UpdateBridgeNetworkSourceRequest {
  2617. /**
  2618. * The network source multicast IP.
  2619. */
  2620. MulticastIp?: __string;
  2621. /**
  2622. * The network source's gateway network name.
  2623. */
  2624. NetworkName?: __string;
  2625. /**
  2626. * The network source port.
  2627. */
  2628. Port?: __integer;
  2629. /**
  2630. * The network source protocol.
  2631. */
  2632. Protocol?: Protocol;
  2633. }
  2634. export interface UpdateBridgeOutputRequest {
  2635. /**
  2636. * The ARN of the bridge that you want to update.
  2637. */
  2638. BridgeArn: __string;
  2639. NetworkOutput?: UpdateBridgeNetworkOutputRequest;
  2640. /**
  2641. * The name of the bridge output that you want to update.
  2642. */
  2643. OutputName: __string;
  2644. }
  2645. export interface UpdateBridgeOutputResponse {
  2646. /**
  2647. * The Amazon Resource Number (ARN) of the bridge.
  2648. */
  2649. BridgeArn?: __string;
  2650. /**
  2651. * The output that you updated.
  2652. */
  2653. Output?: BridgeOutput;
  2654. }
  2655. export interface UpdateBridgeRequest {
  2656. /**
  2657. * The Amazon Resource Number (ARN) of the bridge that you want to update.
  2658. */
  2659. BridgeArn: __string;
  2660. EgressGatewayBridge?: UpdateEgressGatewayBridgeRequest;
  2661. IngressGatewayBridge?: UpdateIngressGatewayBridgeRequest;
  2662. SourceFailoverConfig?: UpdateFailoverConfig;
  2663. }
  2664. export interface UpdateBridgeResponse {
  2665. Bridge?: Bridge;
  2666. }
  2667. export interface UpdateBridgeSourceRequest {
  2668. /**
  2669. * The ARN of the bridge that you want to update.
  2670. */
  2671. BridgeArn: __string;
  2672. FlowSource?: UpdateBridgeFlowSourceRequest;
  2673. NetworkSource?: UpdateBridgeNetworkSourceRequest;
  2674. /**
  2675. * The name of the source that you want to update.
  2676. */
  2677. SourceName: __string;
  2678. }
  2679. export interface UpdateBridgeSourceResponse {
  2680. /**
  2681. * The Amazon Resource Number (ARN) of the bridge.
  2682. */
  2683. BridgeArn?: __string;
  2684. Source?: BridgeSource;
  2685. }
  2686. export interface UpdateBridgeStateRequest {
  2687. /**
  2688. * The ARN of the bridge that you want to update.
  2689. */
  2690. BridgeArn: __string;
  2691. DesiredState: DesiredState;
  2692. }
  2693. export interface UpdateBridgeStateResponse {
  2694. /**
  2695. * The Amazon Resource Number (ARN) of the bridge.
  2696. */
  2697. BridgeArn?: __string;
  2698. /**
  2699. * The state of the bridge. ACTIVE or STANDBY.
  2700. */
  2701. DesiredState?: DesiredState;
  2702. }
  2703. export interface UpdateEgressGatewayBridgeRequest {
  2704. /**
  2705. * Update an existing egress-type bridge.
  2706. */
  2707. MaxBitrate?: __integer;
  2708. }
  2709. export interface UpdateEncryption {
  2710. /**
  2711. * The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
  2712. */
  2713. Algorithm?: Algorithm;
  2714. /**
  2715. * 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.
  2716. */
  2717. ConstantInitializationVector?: __string;
  2718. /**
  2719. * 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.
  2720. */
  2721. DeviceId?: __string;
  2722. /**
  2723. * The type of key that is used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
  2724. */
  2725. KeyType?: KeyType;
  2726. /**
  2727. * 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.
  2728. */
  2729. Region?: __string;
  2730. /**
  2731. * 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.
  2732. */
  2733. ResourceId?: __string;
  2734. /**
  2735. * The ARN of the role that you created during setup (when you set up AWS Elemental MediaConnect as a trusted entity).
  2736. */
  2737. RoleArn?: __string;
  2738. /**
  2739. * 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.
  2740. */
  2741. SecretArn?: __string;
  2742. /**
  2743. * 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.
  2744. */
  2745. Url?: __string;
  2746. }
  2747. export interface UpdateFailoverConfig {
  2748. /**
  2749. * 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.
  2750. */
  2751. FailoverMode?: FailoverMode;
  2752. /**
  2753. * Recovery window time to look for dash-7 packets
  2754. */
  2755. RecoveryWindow?: __integer;
  2756. /**
  2757. * The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
  2758. */
  2759. SourcePriority?: SourcePriority;
  2760. State?: State;
  2761. }
  2762. export interface UpdateFlowEntitlementRequest {
  2763. /**
  2764. * 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.
  2765. */
  2766. Description?: __string;
  2767. /**
  2768. * The type of encryption that will be used on the output associated with this entitlement. Allowable encryption types: static-key, speke.
  2769. */
  2770. Encryption?: UpdateEncryption;
  2771. /**
  2772. * The ARN of the entitlement that you want to update.
  2773. */
  2774. EntitlementArn: __string;
  2775. /**
  2776. * An indication of whether you want to enable the entitlement to allow access, or disable it to stop streaming content to the subscriber’s flow temporarily. If you don’t specify the entitlementStatus field in your request, MediaConnect leaves the value unchanged.
  2777. */
  2778. EntitlementStatus?: EntitlementStatus;
  2779. /**
  2780. * The flow that is associated with the entitlement that you want to update.
  2781. */
  2782. FlowArn: __string;
  2783. /**
  2784. * 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.
  2785. */
  2786. Subscribers?: __listOf__string;
  2787. }
  2788. export interface UpdateFlowEntitlementResponse {
  2789. /**
  2790. * The new configuration of the entitlement that you updated.
  2791. */
  2792. Entitlement?: Entitlement;
  2793. /**
  2794. * The ARN of the flow that this entitlement was granted on.
  2795. */
  2796. FlowArn?: __string;
  2797. }
  2798. export interface UpdateFlowMediaStreamRequest {
  2799. /**
  2800. * The attributes that you want to assign to the media stream.
  2801. */
  2802. Attributes?: MediaStreamAttributesRequest;
  2803. /**
  2804. * 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.
  2805. */
  2806. ClockRate?: __integer;
  2807. /**
  2808. * Description
  2809. */
  2810. Description?: __string;
  2811. /**
  2812. * The Amazon Resource Name (ARN) of the flow.
  2813. */
  2814. FlowArn: __string;
  2815. /**
  2816. * The name of the media stream that you want to update.
  2817. */
  2818. MediaStreamName: __string;
  2819. /**
  2820. * The type of media stream.
  2821. */
  2822. MediaStreamType?: MediaStreamType;
  2823. /**
  2824. * The resolution of the video.
  2825. */
  2826. VideoFormat?: __string;
  2827. }
  2828. export interface UpdateFlowMediaStreamResponse {
  2829. /**
  2830. * The ARN of the flow that is associated with the media stream that you updated.
  2831. */
  2832. FlowArn?: __string;
  2833. /**
  2834. * The media stream that you updated.
  2835. */
  2836. MediaStream?: MediaStream;
  2837. }
  2838. export interface UpdateFlowOutputRequest {
  2839. /**
  2840. * 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.
  2841. */
  2842. CidrAllowList?: __listOf__string;
  2843. /**
  2844. * A description of the output. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the end user.
  2845. */
  2846. Description?: __string;
  2847. /**
  2848. * The IP address where you want to send the output.
  2849. */
  2850. Destination?: __string;
  2851. /**
  2852. * 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.
  2853. */
  2854. Encryption?: UpdateEncryption;
  2855. /**
  2856. * The flow that is associated with the output that you want to update.
  2857. */
  2858. FlowArn: __string;
  2859. /**
  2860. * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
  2861. */
  2862. MaxLatency?: __integer;
  2863. /**
  2864. * The media streams that are associated with the output, and the parameters for those associations.
  2865. */
  2866. MediaStreamOutputConfigurations?: __listOfMediaStreamOutputConfigurationRequest;
  2867. /**
  2868. * 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.
  2869. */
  2870. MinLatency?: __integer;
  2871. /**
  2872. * The ARN of the output that you want to update.
  2873. */
  2874. OutputArn: __string;
  2875. /**
  2876. * The port to use when content is distributed to this output.
  2877. */
  2878. Port?: __integer;
  2879. /**
  2880. * The protocol to use for the output.
  2881. */
  2882. Protocol?: Protocol;
  2883. /**
  2884. * The remote ID for the Zixi-pull stream.
  2885. */
  2886. RemoteId?: __string;
  2887. /**
  2888. * The port that the flow uses to send outbound requests to initiate connection with the sender.
  2889. */
  2890. SenderControlPort?: __integer;
  2891. /**
  2892. * The IP address that the flow communicates with to initiate connection with the sender.
  2893. */
  2894. SenderIpAddress?: __string;
  2895. /**
  2896. * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
  2897. */
  2898. SmoothingLatency?: __integer;
  2899. /**
  2900. * The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
  2901. */
  2902. StreamId?: __string;
  2903. /**
  2904. * The name of the VPC interface attachment to use for this output.
  2905. */
  2906. VpcInterfaceAttachment?: VpcInterfaceAttachment;
  2907. }
  2908. export interface UpdateFlowOutputResponse {
  2909. /**
  2910. * The ARN of the flow that is associated with the updated output.
  2911. */
  2912. FlowArn?: __string;
  2913. /**
  2914. * The new settings of the output that you updated.
  2915. */
  2916. Output?: Output;
  2917. }
  2918. export interface UpdateFlowRequest {
  2919. /**
  2920. * The flow that you want to update.
  2921. */
  2922. FlowArn: __string;
  2923. SourceFailoverConfig?: UpdateFailoverConfig;
  2924. Maintenance?: UpdateMaintenance;
  2925. }
  2926. export interface UpdateFlowResponse {
  2927. Flow?: Flow;
  2928. }
  2929. export interface UpdateFlowSourceRequest {
  2930. /**
  2931. * The type of encryption used on the content ingested from this source. Allowable encryption types: static-key.
  2932. */
  2933. Decryption?: UpdateEncryption;
  2934. /**
  2935. * A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
  2936. */
  2937. Description?: __string;
  2938. /**
  2939. * 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.
  2940. */
  2941. EntitlementArn?: __string;
  2942. /**
  2943. * The flow that is associated with the source that you want to update.
  2944. */
  2945. FlowArn: __string;
  2946. /**
  2947. * The port that the flow will be listening on for incoming content.
  2948. */
  2949. IngestPort?: __integer;
  2950. /**
  2951. * The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
  2952. */
  2953. MaxBitrate?: __integer;
  2954. /**
  2955. * The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
  2956. */
  2957. MaxLatency?: __integer;
  2958. /**
  2959. * The size of the buffer (in milliseconds) to use to sync incoming source data.
  2960. */
  2961. MaxSyncBuffer?: __integer;
  2962. /**
  2963. * The media streams that are associated with the source, and the parameters for those associations.
  2964. */
  2965. MediaStreamSourceConfigurations?: __listOfMediaStreamSourceConfigurationRequest;
  2966. /**
  2967. * 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.
  2968. */
  2969. MinLatency?: __integer;
  2970. /**
  2971. * The protocol that is used by the source.
  2972. */
  2973. Protocol?: Protocol;
  2974. /**
  2975. * The port that the flow uses to send outbound requests to initiate connection with the sender.
  2976. */
  2977. SenderControlPort?: __integer;
  2978. /**
  2979. * The IP address that the flow communicates with to initiate connection with the sender.
  2980. */
  2981. SenderIpAddress?: __string;
  2982. /**
  2983. * The ARN of the source that you want to update.
  2984. */
  2985. SourceArn: __string;
  2986. /**
  2987. * Source IP or domain name for SRT-caller protocol.
  2988. */
  2989. SourceListenerAddress?: __string;
  2990. /**
  2991. * Source port for SRT-caller protocol.
  2992. */
  2993. SourceListenerPort?: __integer;
  2994. /**
  2995. * The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
  2996. */
  2997. StreamId?: __string;
  2998. /**
  2999. * The name of the VPC interface to use for this source.
  3000. */
  3001. VpcInterfaceName?: __string;
  3002. /**
  3003. * 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.
  3004. */
  3005. WhitelistCidr?: __string;
  3006. /**
  3007. * The source configuration for cloud flows receiving a stream from a bridge.
  3008. */
  3009. GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest;
  3010. }
  3011. export interface UpdateFlowSourceResponse {
  3012. /**
  3013. * The ARN of the flow that you want to update.
  3014. */
  3015. FlowArn?: __string;
  3016. /**
  3017. * The settings for the source of the flow.
  3018. */
  3019. Source?: Source;
  3020. }
  3021. export interface UpdateGatewayBridgeSourceRequest {
  3022. /**
  3023. * The ARN of the bridge feeding this flow.
  3024. */
  3025. BridgeArn?: __string;
  3026. /**
  3027. * The name of the VPC interface attachment to use for this bridge source.
  3028. */
  3029. VpcInterfaceAttachment?: VpcInterfaceAttachment;
  3030. }
  3031. export interface UpdateGatewayInstanceRequest {
  3032. /**
  3033. * 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.
  3034. */
  3035. BridgePlacement?: BridgePlacement;
  3036. /**
  3037. * The Amazon Resource Name (ARN) of the instance that you want to update.
  3038. */
  3039. GatewayInstanceArn: __string;
  3040. }
  3041. export interface UpdateGatewayInstanceResponse {
  3042. /**
  3043. * 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.
  3044. */
  3045. BridgePlacement?: BridgePlacement;
  3046. /**
  3047. * The Amazon Resource Name (ARN) of the instance.
  3048. */
  3049. GatewayInstanceArn?: __string;
  3050. }
  3051. export interface UpdateIngressGatewayBridgeRequest {
  3052. /**
  3053. * The maximum expected bitrate (in bps).
  3054. */
  3055. MaxBitrate?: __integer;
  3056. /**
  3057. * The maximum number of expected outputs.
  3058. */
  3059. MaxOutputs?: __integer;
  3060. }
  3061. export interface UpdateMaintenance {
  3062. /**
  3063. * A day of a week when the maintenance will happen. use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
  3064. */
  3065. MaintenanceDay?: MaintenanceDay;
  3066. /**
  3067. * A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.
  3068. */
  3069. MaintenanceScheduledDate?: __string;
  3070. /**
  3071. * 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.
  3072. */
  3073. MaintenanceStartHour?: __string;
  3074. }
  3075. export interface VpcInterface {
  3076. /**
  3077. * Immutable and has to be a unique against other VpcInterfaces in this Flow.
  3078. */
  3079. Name: __string;
  3080. /**
  3081. * IDs of the network interfaces created in customer's account by MediaConnect.
  3082. */
  3083. NetworkInterfaceIds: __listOf__string;
  3084. /**
  3085. * The type of network interface.
  3086. */
  3087. NetworkInterfaceType: NetworkInterfaceType;
  3088. /**
  3089. * Role Arn MediaConnect can assumes to create ENIs in customer's account
  3090. */
  3091. RoleArn: __string;
  3092. /**
  3093. * Security Group IDs to be used on ENI.
  3094. */
  3095. SecurityGroupIds: __listOf__string;
  3096. /**
  3097. * Subnet must be in the AZ of the Flow
  3098. */
  3099. SubnetId: __string;
  3100. }
  3101. export interface VpcInterfaceAttachment {
  3102. /**
  3103. * The name of the VPC interface to use for this resource.
  3104. */
  3105. VpcInterfaceName?: __string;
  3106. }
  3107. export interface VpcInterfaceRequest {
  3108. /**
  3109. * The name of the VPC Interface. This value must be unique within the current flow.
  3110. */
  3111. Name: __string;
  3112. /**
  3113. * The type of network interface. If this value is not included in the request, MediaConnect uses ENA as the networkInterfaceType.
  3114. */
  3115. NetworkInterfaceType?: NetworkInterfaceType;
  3116. /**
  3117. * Role Arn MediaConnect can assumes to create ENIs in customer's account
  3118. */
  3119. RoleArn: __string;
  3120. /**
  3121. * Security Group IDs to be used on ENI.
  3122. */
  3123. SecurityGroupIds: __listOf__string;
  3124. /**
  3125. * Subnet must be in the AZ of the Flow
  3126. */
  3127. SubnetId: __string;
  3128. }
  3129. export type __boolean = boolean;
  3130. export type __double = number;
  3131. export type __integer = number;
  3132. export type __listOfAddBridgeOutputRequest = AddBridgeOutputRequest[];
  3133. export type __listOfAddBridgeSourceRequest = AddBridgeSourceRequest[];
  3134. export type __listOfAddMediaStreamRequest = AddMediaStreamRequest[];
  3135. export type __listOfAddOutputRequest = AddOutputRequest[];
  3136. export type __listOfBridgeOutput = BridgeOutput[];
  3137. export type __listOfBridgeSource = BridgeSource[];
  3138. export type __listOfDestinationConfiguration = DestinationConfiguration[];
  3139. export type __listOfDestinationConfigurationRequest = DestinationConfigurationRequest[];
  3140. export type __listOfEntitlement = Entitlement[];
  3141. export type __listOfGatewayNetwork = GatewayNetwork[];
  3142. export type __listOfGrantEntitlementRequest = GrantEntitlementRequest[];
  3143. export type __listOfInputConfiguration = InputConfiguration[];
  3144. export type __listOfInputConfigurationRequest = InputConfigurationRequest[];
  3145. export type __listOfListedBridge = ListedBridge[];
  3146. export type __listOfListedEntitlement = ListedEntitlement[];
  3147. export type __listOfListedFlow = ListedFlow[];
  3148. export type __listOfListedGateway = ListedGateway[];
  3149. export type __listOfListedGatewayInstance = ListedGatewayInstance[];
  3150. export type __listOfMediaStream = MediaStream[];
  3151. export type __listOfMediaStreamOutputConfiguration = MediaStreamOutputConfiguration[];
  3152. export type __listOfMediaStreamOutputConfigurationRequest = MediaStreamOutputConfigurationRequest[];
  3153. export type __listOfMediaStreamSourceConfiguration = MediaStreamSourceConfiguration[];
  3154. export type __listOfMediaStreamSourceConfigurationRequest = MediaStreamSourceConfigurationRequest[];
  3155. export type __listOfMessageDetail = MessageDetail[];
  3156. export type __listOfOffering = Offering[];
  3157. export type __listOfOutput = Output[];
  3158. export type __listOfReservation = Reservation[];
  3159. export type __listOfSetSourceRequest = SetSourceRequest[];
  3160. export type __listOfSource = Source[];
  3161. export type __listOfTransportStream = TransportStream[];
  3162. export type __listOfTransportStreamProgram = TransportStreamProgram[];
  3163. export type __listOfVpcInterface = VpcInterface[];
  3164. export type __listOfVpcInterfaceRequest = VpcInterfaceRequest[];
  3165. export type __listOf__integer = __integer[];
  3166. export type __listOf__string = __string[];
  3167. export type __mapOf__string = {[key: string]: __string};
  3168. export type __string = string;
  3169. export type __timestampIso8601 = Date;
  3170. /**
  3171. * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
  3172. */
  3173. export type apiVersion = "2018-11-14"|"latest"|string;
  3174. export interface ClientApiVersions {
  3175. /**
  3176. * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
  3177. */
  3178. apiVersion?: apiVersion;
  3179. }
  3180. export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
  3181. /**
  3182. * Contains interfaces for use with the MediaConnect client.
  3183. */
  3184. export import Types = MediaConnect;
  3185. }
  3186. export = MediaConnect;