PasswordSignIn.scriptcanvas 221 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 22550844404534
  9. },
  10. "Name": "PasswordSignIn",
  11. "Components": {
  12. "Component_[6385465305444622263]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 6385465305444622263,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 4,
  26. "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
  27. },
  28. "isNullPointer": false,
  29. "$type": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C} AZStd::vector",
  30. "value": [
  31. "AWSCognitoIDP"
  32. ],
  33. "label": "Array<String>"
  34. },
  35. "VariableId": {
  36. "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}"
  37. },
  38. "VariableName": "AuthenticationProviders"
  39. }
  40. }
  41. ]
  42. }
  43. },
  44. "Component_[8710839917828649136]": {
  45. "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph",
  46. "Id": 8710839917828649136,
  47. "m_graphData": {
  48. "m_nodes": [
  49. {
  50. "Id": {
  51. "id": 22606678979382
  52. },
  53. "Name": "SC-Node(Print)",
  54. "Components": {
  55. "Component_[10817928006900121599]": {
  56. "$type": "Print",
  57. "Id": 10817928006900121599,
  58. "Slots": [
  59. {
  60. "id": {
  61. "m_id": "{269D4FDC-1137-45A3-8442-2A2DF98D6F6E}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. }
  67. ],
  68. "slotName": "In",
  69. "toolTip": "Input signal",
  70. "Descriptor": {
  71. "ConnectionType": 1,
  72. "SlotType": 1
  73. }
  74. },
  75. {
  76. "id": {
  77. "m_id": "{F5EE89C0-AB89-4D06-BD4C-72CA40AB075B}"
  78. },
  79. "contracts": [
  80. {
  81. "$type": "SlotTypeContract"
  82. }
  83. ],
  84. "slotName": "Out",
  85. "Descriptor": {
  86. "ConnectionType": 2,
  87. "SlotType": 1
  88. }
  89. }
  90. ],
  91. "m_format": "SignIn Success",
  92. "m_unresolvedString": [
  93. "SignIn Success"
  94. ]
  95. }
  96. }
  97. },
  98. {
  99. "Id": {
  100. "id": 22610973946678
  101. },
  102. "Name": "SC-Node(Initialize)",
  103. "Components": {
  104. "Component_[1153097947988754865]": {
  105. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  106. "Id": 1153097947988754865,
  107. "Slots": [
  108. {
  109. "id": {
  110. "m_id": "{8C6FB06A-4A06-41E5-94E5-9D78671977C8}"
  111. },
  112. "contracts": [
  113. {
  114. "$type": "SlotTypeContract"
  115. }
  116. ],
  117. "slotName": "Array<String>: 0",
  118. "Descriptor": {
  119. "ConnectionType": 1,
  120. "SlotType": 2
  121. },
  122. "DataType": 1,
  123. "IsReference": true,
  124. "VariableReference": {
  125. "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}"
  126. }
  127. },
  128. {
  129. "id": {
  130. "m_id": "{F4ED50C1-0694-4E9F-A4E6-83565E517C1E}"
  131. },
  132. "contracts": [
  133. {
  134. "$type": "SlotTypeContract"
  135. }
  136. ],
  137. "slotName": "In",
  138. "Descriptor": {
  139. "ConnectionType": 1,
  140. "SlotType": 1
  141. }
  142. },
  143. {
  144. "id": {
  145. "m_id": "{4BB45954-74C5-4023-AFBE-C82638076FDD}"
  146. },
  147. "contracts": [
  148. {
  149. "$type": "SlotTypeContract"
  150. }
  151. ],
  152. "slotName": "Out",
  153. "Descriptor": {
  154. "ConnectionType": 2,
  155. "SlotType": 1
  156. }
  157. },
  158. {
  159. "id": {
  160. "m_id": "{F6930458-3515-45B6-BB6D-1217547A7401}"
  161. },
  162. "contracts": [
  163. {
  164. "$type": "SlotTypeContract"
  165. }
  166. ],
  167. "slotName": "Result: Boolean",
  168. "DisplayDataType": {
  169. "m_type": 0
  170. },
  171. "Descriptor": {
  172. "ConnectionType": 2,
  173. "SlotType": 2
  174. },
  175. "DataType": 1
  176. }
  177. ],
  178. "Datums": [
  179. {
  180. "isOverloadedStorage": false,
  181. "scriptCanvasType": {
  182. "m_type": 4,
  183. "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
  184. },
  185. "isNullPointer": true,
  186. "label": "Array<String>: 0"
  187. }
  188. ],
  189. "methodType": 0,
  190. "methodName": "Initialize",
  191. "className": "AuthenticationProviderRequestBus",
  192. "resultSlotIDs": [
  193. {}
  194. ],
  195. "prettyClassName": "AuthenticationProviderRequestBus"
  196. }
  197. }
  198. },
  199. {
  200. "Id": {
  201. "id": 22559434339126
  202. },
  203. "Name": "EBusEventHandler",
  204. "Components": {
  205. "Component_[15120484156765471501]": {
  206. "$type": "EBusEventHandler",
  207. "Id": 15120484156765471501,
  208. "Slots": [
  209. {
  210. "id": {
  211. "m_id": "{55723136-4724-4749-8A1E-A0829EC4CB54}"
  212. },
  213. "contracts": [
  214. {
  215. "$type": "SlotTypeContract"
  216. }
  217. ],
  218. "slotName": "Connect",
  219. "toolTip": "Connect this event handler to the specified entity.",
  220. "Descriptor": {
  221. "ConnectionType": 1,
  222. "SlotType": 1
  223. }
  224. },
  225. {
  226. "id": {
  227. "m_id": "{01F5AE9F-BF74-41B1-A1F9-7782B707C013}"
  228. },
  229. "contracts": [
  230. {
  231. "$type": "SlotTypeContract"
  232. }
  233. ],
  234. "slotName": "Disconnect",
  235. "toolTip": "Disconnect this event handler.",
  236. "Descriptor": {
  237. "ConnectionType": 1,
  238. "SlotType": 1
  239. }
  240. },
  241. {
  242. "id": {
  243. "m_id": "{2D449731-3E45-489D-B7EA-586D3E87738C}"
  244. },
  245. "contracts": [
  246. {
  247. "$type": "SlotTypeContract"
  248. }
  249. ],
  250. "slotName": "OnConnected",
  251. "toolTip": "Signaled when a connection has taken place.",
  252. "Descriptor": {
  253. "ConnectionType": 2,
  254. "SlotType": 1
  255. }
  256. },
  257. {
  258. "id": {
  259. "m_id": "{7FE6C340-B7A9-4ABD-B30E-FB78707A8042}"
  260. },
  261. "contracts": [
  262. {
  263. "$type": "SlotTypeContract"
  264. }
  265. ],
  266. "slotName": "OnDisconnected",
  267. "toolTip": "Signaled when this event handler is disconnected.",
  268. "Descriptor": {
  269. "ConnectionType": 2,
  270. "SlotType": 1
  271. }
  272. },
  273. {
  274. "id": {
  275. "m_id": "{174FBA70-D39B-4FAD-8595-52A63CE855F4}"
  276. },
  277. "contracts": [
  278. {
  279. "$type": "SlotTypeContract"
  280. }
  281. ],
  282. "slotName": "OnFailure",
  283. "toolTip": "Signaled when it is not possible to connect this handler.",
  284. "Descriptor": {
  285. "ConnectionType": 2,
  286. "SlotType": 1
  287. }
  288. },
  289. {
  290. "id": {
  291. "m_id": "{B4E8FA2A-6833-43A2-BF8D-E021B7F24C6C}"
  292. },
  293. "contracts": [
  294. {
  295. "$type": "SlotTypeContract"
  296. }
  297. ],
  298. "slotName": "Source",
  299. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  300. "Descriptor": {
  301. "ConnectionType": 1,
  302. "SlotType": 2
  303. },
  304. "DataType": 1
  305. },
  306. {
  307. "id": {
  308. "m_id": "{808F793B-E283-4872-B0C9-3BDE44FB0372}"
  309. },
  310. "contracts": [
  311. {
  312. "$type": "SlotTypeContract"
  313. }
  314. ],
  315. "slotName": "EntityID",
  316. "DisplayDataType": {
  317. "m_type": 1
  318. },
  319. "Descriptor": {
  320. "ConnectionType": 2,
  321. "SlotType": 2
  322. },
  323. "DataType": 1
  324. },
  325. {
  326. "id": {
  327. "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}"
  328. },
  329. "contracts": [
  330. {
  331. "$type": "SlotTypeContract"
  332. }
  333. ],
  334. "slotName": "ExecutionSlot:OnEntityActivated",
  335. "Descriptor": {
  336. "ConnectionType": 2,
  337. "SlotType": 1
  338. },
  339. "IsLatent": true
  340. },
  341. {
  342. "id": {
  343. "m_id": "{7977990A-4416-494A-94F1-F2670A6E920B}"
  344. },
  345. "contracts": [
  346. {
  347. "$type": "SlotTypeContract"
  348. }
  349. ],
  350. "slotName": "EntityID",
  351. "DisplayDataType": {
  352. "m_type": 1
  353. },
  354. "Descriptor": {
  355. "ConnectionType": 2,
  356. "SlotType": 2
  357. },
  358. "DataType": 1
  359. },
  360. {
  361. "id": {
  362. "m_id": "{AB5A3F2D-D553-49A8-98A5-F99375431668}"
  363. },
  364. "contracts": [
  365. {
  366. "$type": "SlotTypeContract"
  367. }
  368. ],
  369. "slotName": "ExecutionSlot:OnEntityDeactivated",
  370. "Descriptor": {
  371. "ConnectionType": 2,
  372. "SlotType": 1
  373. },
  374. "IsLatent": true
  375. }
  376. ],
  377. "Datums": [
  378. {
  379. "isOverloadedStorage": false,
  380. "scriptCanvasType": {
  381. "m_type": 1
  382. },
  383. "isNullPointer": false,
  384. "$type": "EntityId",
  385. "value": {
  386. "id": 2901262558
  387. },
  388. "label": "Source"
  389. }
  390. ],
  391. "m_eventMap": [
  392. {
  393. "Key": {
  394. "Value": 245425936
  395. },
  396. "Value": {
  397. "m_eventName": "OnEntityActivated",
  398. "m_eventId": {
  399. "Value": 245425936
  400. },
  401. "m_eventSlotId": {
  402. "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}"
  403. },
  404. "m_parameterSlotIds": [
  405. {
  406. "m_id": "{808F793B-E283-4872-B0C9-3BDE44FB0372}"
  407. }
  408. ],
  409. "m_numExpectedArguments": 1
  410. }
  411. },
  412. {
  413. "Key": {
  414. "Value": 4273369222
  415. },
  416. "Value": {
  417. "m_eventName": "OnEntityDeactivated",
  418. "m_eventId": {
  419. "Value": 4273369222
  420. },
  421. "m_eventSlotId": {
  422. "m_id": "{AB5A3F2D-D553-49A8-98A5-F99375431668}"
  423. },
  424. "m_parameterSlotIds": [
  425. {
  426. "m_id": "{7977990A-4416-494A-94F1-F2670A6E920B}"
  427. }
  428. ],
  429. "m_numExpectedArguments": 1
  430. }
  431. }
  432. ],
  433. "m_ebusName": "EntityBus",
  434. "m_busId": {
  435. "Value": 3358774020
  436. }
  437. }
  438. }
  439. },
  440. {
  441. "Id": {
  442. "id": 22580909175606
  443. },
  444. "Name": "EBusEventHandler",
  445. "Components": {
  446. "Component_[16042865177069512848]": {
  447. "$type": "EBusEventHandler",
  448. "Id": 16042865177069512848,
  449. "Slots": [
  450. {
  451. "id": {
  452. "m_id": "{8503C0C0-DFA8-43AF-AE40-E2A48C9F77C5}"
  453. },
  454. "contracts": [
  455. {
  456. "$type": "SlotTypeContract"
  457. }
  458. ],
  459. "slotName": "Connect",
  460. "toolTip": "Connect this event handler to the specified entity.",
  461. "Descriptor": {
  462. "ConnectionType": 1,
  463. "SlotType": 1
  464. }
  465. },
  466. {
  467. "id": {
  468. "m_id": "{EE5F8D3F-CC56-400F-91F6-835A2A843D3E}"
  469. },
  470. "contracts": [
  471. {
  472. "$type": "SlotTypeContract"
  473. }
  474. ],
  475. "slotName": "Disconnect",
  476. "toolTip": "Disconnect this event handler.",
  477. "Descriptor": {
  478. "ConnectionType": 1,
  479. "SlotType": 1
  480. }
  481. },
  482. {
  483. "id": {
  484. "m_id": "{35490A45-17F4-444E-B4EB-443B4AC61D07}"
  485. },
  486. "contracts": [
  487. {
  488. "$type": "SlotTypeContract"
  489. }
  490. ],
  491. "slotName": "OnConnected",
  492. "toolTip": "Signaled when a connection has taken place.",
  493. "Descriptor": {
  494. "ConnectionType": 2,
  495. "SlotType": 1
  496. }
  497. },
  498. {
  499. "id": {
  500. "m_id": "{FCCA77C5-AB2A-4BE7-BC46-99B74FDBEC7B}"
  501. },
  502. "contracts": [
  503. {
  504. "$type": "SlotTypeContract"
  505. }
  506. ],
  507. "slotName": "OnDisconnected",
  508. "toolTip": "Signaled when this event handler is disconnected.",
  509. "Descriptor": {
  510. "ConnectionType": 2,
  511. "SlotType": 1
  512. }
  513. },
  514. {
  515. "id": {
  516. "m_id": "{F52BDF60-64FD-488B-8D5D-D996B9400986}"
  517. },
  518. "contracts": [
  519. {
  520. "$type": "SlotTypeContract"
  521. }
  522. ],
  523. "slotName": "OnFailure",
  524. "toolTip": "Signaled when it is not possible to connect this handler.",
  525. "Descriptor": {
  526. "ConnectionType": 2,
  527. "SlotType": 1
  528. }
  529. },
  530. {
  531. "id": {
  532. "m_id": "{8C19381E-B495-4B42-880C-86399A055392}"
  533. },
  534. "contracts": [
  535. {
  536. "$type": "SlotTypeContract"
  537. }
  538. ],
  539. "slotName": "ClientAuthAWSCredentials",
  540. "DisplayDataType": {
  541. "m_type": 4,
  542. "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}"
  543. },
  544. "Descriptor": {
  545. "ConnectionType": 2,
  546. "SlotType": 2
  547. },
  548. "DataType": 1
  549. },
  550. {
  551. "id": {
  552. "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}"
  553. },
  554. "contracts": [
  555. {
  556. "$type": "SlotTypeContract"
  557. }
  558. ],
  559. "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess",
  560. "Descriptor": {
  561. "ConnectionType": 2,
  562. "SlotType": 1
  563. },
  564. "IsLatent": true
  565. },
  566. {
  567. "id": {
  568. "m_id": "{2EEBA254-1346-4866-80CA-3608BAF5B767}"
  569. },
  570. "contracts": [
  571. {
  572. "$type": "SlotTypeContract"
  573. }
  574. ],
  575. "slotName": "String",
  576. "DisplayDataType": {
  577. "m_type": 5
  578. },
  579. "Descriptor": {
  580. "ConnectionType": 2,
  581. "SlotType": 2
  582. },
  583. "DataType": 1
  584. },
  585. {
  586. "id": {
  587. "m_id": "{BB27DD72-E82E-4C67-8493-E3DF0AFCC093}"
  588. },
  589. "contracts": [
  590. {
  591. "$type": "SlotTypeContract"
  592. }
  593. ],
  594. "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail",
  595. "Descriptor": {
  596. "ConnectionType": 2,
  597. "SlotType": 1
  598. },
  599. "IsLatent": true
  600. }
  601. ],
  602. "m_eventMap": [
  603. {
  604. "Key": {
  605. "Value": 3736070646
  606. },
  607. "Value": {
  608. "m_eventName": "OnRequestAWSCredentialsSuccess",
  609. "m_eventId": {
  610. "Value": 3736070646
  611. },
  612. "m_eventSlotId": {
  613. "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}"
  614. },
  615. "m_parameterSlotIds": [
  616. {
  617. "m_id": "{8C19381E-B495-4B42-880C-86399A055392}"
  618. }
  619. ],
  620. "m_numExpectedArguments": 1
  621. }
  622. },
  623. {
  624. "Key": {
  625. "Value": 4193877825
  626. },
  627. "Value": {
  628. "m_eventName": "OnRequestAWSCredentialsFail",
  629. "m_eventId": {
  630. "Value": 4193877825
  631. },
  632. "m_eventSlotId": {
  633. "m_id": "{BB27DD72-E82E-4C67-8493-E3DF0AFCC093}"
  634. },
  635. "m_parameterSlotIds": [
  636. {
  637. "m_id": "{2EEBA254-1346-4866-80CA-3608BAF5B767}"
  638. }
  639. ],
  640. "m_numExpectedArguments": 1
  641. }
  642. }
  643. ],
  644. "m_ebusName": "AWSCognitoAuthorizationNotificationBus",
  645. "m_busId": {
  646. "Value": 1100345364
  647. }
  648. }
  649. }
  650. },
  651. {
  652. "Id": {
  653. "id": 22585204142902
  654. },
  655. "Name": "EBusEventHandler",
  656. "Components": {
  657. "Component_[16607172582241819113]": {
  658. "$type": "EBusEventHandler",
  659. "Id": 16607172582241819113,
  660. "Slots": [
  661. {
  662. "id": {
  663. "m_id": "{E55A09C6-5B87-4F4F-9EC4-7F602A5C02AC}"
  664. },
  665. "contracts": [
  666. {
  667. "$type": "SlotTypeContract"
  668. }
  669. ],
  670. "slotName": "Connect",
  671. "toolTip": "Connect this event handler to the specified entity.",
  672. "Descriptor": {
  673. "ConnectionType": 1,
  674. "SlotType": 1
  675. }
  676. },
  677. {
  678. "id": {
  679. "m_id": "{AC007706-2035-4888-AD7C-3C9AF6650FEC}"
  680. },
  681. "contracts": [
  682. {
  683. "$type": "SlotTypeContract"
  684. }
  685. ],
  686. "slotName": "Disconnect",
  687. "toolTip": "Disconnect this event handler.",
  688. "Descriptor": {
  689. "ConnectionType": 1,
  690. "SlotType": 1
  691. }
  692. },
  693. {
  694. "id": {
  695. "m_id": "{809A2C05-FB97-4C59-B1D8-C29A22F69097}"
  696. },
  697. "contracts": [
  698. {
  699. "$type": "SlotTypeContract"
  700. }
  701. ],
  702. "slotName": "OnConnected",
  703. "toolTip": "Signaled when a connection has taken place.",
  704. "Descriptor": {
  705. "ConnectionType": 2,
  706. "SlotType": 1
  707. }
  708. },
  709. {
  710. "id": {
  711. "m_id": "{E3E053B8-37B7-4094-8974-BF0E13919943}"
  712. },
  713. "contracts": [
  714. {
  715. "$type": "SlotTypeContract"
  716. }
  717. ],
  718. "slotName": "OnDisconnected",
  719. "toolTip": "Signaled when this event handler is disconnected.",
  720. "Descriptor": {
  721. "ConnectionType": 2,
  722. "SlotType": 1
  723. }
  724. },
  725. {
  726. "id": {
  727. "m_id": "{5BB6420D-1016-49B8-AC48-3C5C1EE647F5}"
  728. },
  729. "contracts": [
  730. {
  731. "$type": "SlotTypeContract"
  732. }
  733. ],
  734. "slotName": "OnFailure",
  735. "toolTip": "Signaled when it is not possible to connect this handler.",
  736. "Descriptor": {
  737. "ConnectionType": 2,
  738. "SlotType": 1
  739. }
  740. },
  741. {
  742. "id": {
  743. "m_id": "{D79F252C-3D2A-4CC1-9A51-18B7827EB4CA}"
  744. },
  745. "contracts": [
  746. {
  747. "$type": "SlotTypeContract"
  748. }
  749. ],
  750. "slotName": "AuthenticationTokens",
  751. "DisplayDataType": {
  752. "m_type": 4,
  753. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  754. },
  755. "Descriptor": {
  756. "ConnectionType": 2,
  757. "SlotType": 2
  758. },
  759. "DataType": 1
  760. },
  761. {
  762. "id": {
  763. "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}"
  764. },
  765. "contracts": [
  766. {
  767. "$type": "SlotTypeContract"
  768. }
  769. ],
  770. "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess",
  771. "Descriptor": {
  772. "ConnectionType": 2,
  773. "SlotType": 1
  774. },
  775. "IsLatent": true
  776. },
  777. {
  778. "id": {
  779. "m_id": "{5B6638B9-4F55-4CCB-A368-C83FED5C43F8}"
  780. },
  781. "contracts": [
  782. {
  783. "$type": "SlotTypeContract"
  784. }
  785. ],
  786. "slotName": "String",
  787. "DisplayDataType": {
  788. "m_type": 5
  789. },
  790. "Descriptor": {
  791. "ConnectionType": 2,
  792. "SlotType": 2
  793. },
  794. "DataType": 1
  795. },
  796. {
  797. "id": {
  798. "m_id": "{282E0463-9A13-4681-B69C-B6B30CA7CD01}"
  799. },
  800. "contracts": [
  801. {
  802. "$type": "SlotTypeContract"
  803. }
  804. ],
  805. "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInFail",
  806. "Descriptor": {
  807. "ConnectionType": 2,
  808. "SlotType": 1
  809. },
  810. "IsLatent": true
  811. },
  812. {
  813. "id": {
  814. "m_id": "{B088E163-C71A-417E-8D35-F0A29273F5D9}"
  815. },
  816. "contracts": [
  817. {
  818. "$type": "SlotTypeContract"
  819. }
  820. ],
  821. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInSuccess",
  822. "Descriptor": {
  823. "ConnectionType": 2,
  824. "SlotType": 1
  825. },
  826. "IsLatent": true
  827. },
  828. {
  829. "id": {
  830. "m_id": "{C2EBAEB4-5ECA-441C-8202-0D2A80F1A776}"
  831. },
  832. "contracts": [
  833. {
  834. "$type": "SlotTypeContract"
  835. }
  836. ],
  837. "slotName": "String",
  838. "DisplayDataType": {
  839. "m_type": 5
  840. },
  841. "Descriptor": {
  842. "ConnectionType": 2,
  843. "SlotType": 2
  844. },
  845. "DataType": 1
  846. },
  847. {
  848. "id": {
  849. "m_id": "{79F39D7A-BFC2-4749-9631-575A6C63714D}"
  850. },
  851. "contracts": [
  852. {
  853. "$type": "SlotTypeContract"
  854. }
  855. ],
  856. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInFail",
  857. "Descriptor": {
  858. "ConnectionType": 2,
  859. "SlotType": 1
  860. },
  861. "IsLatent": true
  862. },
  863. {
  864. "id": {
  865. "m_id": "{0CC24B35-F3D6-4E7B-B9D1-98CEB36059AE}"
  866. },
  867. "contracts": [
  868. {
  869. "$type": "SlotTypeContract"
  870. }
  871. ],
  872. "slotName": "AuthenticationTokens",
  873. "DisplayDataType": {
  874. "m_type": 4,
  875. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  876. },
  877. "Descriptor": {
  878. "ConnectionType": 2,
  879. "SlotType": 2
  880. },
  881. "DataType": 1
  882. },
  883. {
  884. "id": {
  885. "m_id": "{3C544F9A-0137-4735-8484-0458246E4D52}"
  886. },
  887. "contracts": [
  888. {
  889. "$type": "SlotTypeContract"
  890. }
  891. ],
  892. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInSuccess",
  893. "Descriptor": {
  894. "ConnectionType": 2,
  895. "SlotType": 1
  896. },
  897. "IsLatent": true
  898. },
  899. {
  900. "id": {
  901. "m_id": "{BEBDDB95-FBBA-4AE1-BA89-C3DAE042E9E1}"
  902. },
  903. "contracts": [
  904. {
  905. "$type": "SlotTypeContract"
  906. }
  907. ],
  908. "slotName": "String",
  909. "DisplayDataType": {
  910. "m_type": 5
  911. },
  912. "Descriptor": {
  913. "ConnectionType": 2,
  914. "SlotType": 2
  915. },
  916. "DataType": 1
  917. },
  918. {
  919. "id": {
  920. "m_id": "{FA8FE256-A70A-475E-A724-0E70C1099213}"
  921. },
  922. "contracts": [
  923. {
  924. "$type": "SlotTypeContract"
  925. }
  926. ],
  927. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInFail",
  928. "Descriptor": {
  929. "ConnectionType": 2,
  930. "SlotType": 1
  931. },
  932. "IsLatent": true
  933. },
  934. {
  935. "id": {
  936. "m_id": "{919E73F9-6A2B-437B-867D-6723FFF8D29E}"
  937. },
  938. "contracts": [
  939. {
  940. "$type": "SlotTypeContract"
  941. }
  942. ],
  943. "slotName": "String",
  944. "DisplayDataType": {
  945. "m_type": 5
  946. },
  947. "Descriptor": {
  948. "ConnectionType": 2,
  949. "SlotType": 2
  950. },
  951. "DataType": 1
  952. },
  953. {
  954. "id": {
  955. "m_id": "{B494FB65-9082-4826-84B4-E2E6DB1803D1}"
  956. },
  957. "contracts": [
  958. {
  959. "$type": "SlotTypeContract"
  960. }
  961. ],
  962. "slotName": "String",
  963. "DisplayDataType": {
  964. "m_type": 5
  965. },
  966. "Descriptor": {
  967. "ConnectionType": 2,
  968. "SlotType": 2
  969. },
  970. "DataType": 1
  971. },
  972. {
  973. "id": {
  974. "m_id": "{7F2FE508-FCDB-45E5-BBEB-8A25E9D09C41}"
  975. },
  976. "contracts": [
  977. {
  978. "$type": "SlotTypeContract"
  979. }
  980. ],
  981. "slotName": "Number",
  982. "DisplayDataType": {
  983. "m_type": 3
  984. },
  985. "Descriptor": {
  986. "ConnectionType": 2,
  987. "SlotType": 2
  988. },
  989. "DataType": 1
  990. },
  991. {
  992. "id": {
  993. "m_id": "{E8BA420E-FF66-4B13-94B9-2D96448542B0}"
  994. },
  995. "contracts": [
  996. {
  997. "$type": "SlotTypeContract"
  998. }
  999. ],
  1000. "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInSuccess",
  1001. "Descriptor": {
  1002. "ConnectionType": 2,
  1003. "SlotType": 1
  1004. },
  1005. "IsLatent": true
  1006. },
  1007. {
  1008. "id": {
  1009. "m_id": "{4694A0AC-A400-47D0-A050-8B6AEDF65748}"
  1010. },
  1011. "contracts": [
  1012. {
  1013. "$type": "SlotTypeContract"
  1014. }
  1015. ],
  1016. "slotName": "String",
  1017. "DisplayDataType": {
  1018. "m_type": 5
  1019. },
  1020. "Descriptor": {
  1021. "ConnectionType": 2,
  1022. "SlotType": 2
  1023. },
  1024. "DataType": 1
  1025. },
  1026. {
  1027. "id": {
  1028. "m_id": "{E03D10FB-C618-4260-870D-FA2B2B13FE0D}"
  1029. },
  1030. "contracts": [
  1031. {
  1032. "$type": "SlotTypeContract"
  1033. }
  1034. ],
  1035. "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInFail",
  1036. "Descriptor": {
  1037. "ConnectionType": 2,
  1038. "SlotType": 1
  1039. },
  1040. "IsLatent": true
  1041. },
  1042. {
  1043. "id": {
  1044. "m_id": "{031D9648-B03B-42E3-8E6B-BF5F6FEF1937}"
  1045. },
  1046. "contracts": [
  1047. {
  1048. "$type": "SlotTypeContract"
  1049. }
  1050. ],
  1051. "slotName": "AuthenticationTokens",
  1052. "DisplayDataType": {
  1053. "m_type": 4,
  1054. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  1055. },
  1056. "Descriptor": {
  1057. "ConnectionType": 2,
  1058. "SlotType": 2
  1059. },
  1060. "DataType": 1
  1061. },
  1062. {
  1063. "id": {
  1064. "m_id": "{98B96DAE-EC45-4F36-B39A-F4C91C56FF95}"
  1065. },
  1066. "contracts": [
  1067. {
  1068. "$type": "SlotTypeContract"
  1069. }
  1070. ],
  1071. "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInSuccess",
  1072. "Descriptor": {
  1073. "ConnectionType": 2,
  1074. "SlotType": 1
  1075. },
  1076. "IsLatent": true
  1077. },
  1078. {
  1079. "id": {
  1080. "m_id": "{6958B465-4D41-4325-8A66-011E5BA281F2}"
  1081. },
  1082. "contracts": [
  1083. {
  1084. "$type": "SlotTypeContract"
  1085. }
  1086. ],
  1087. "slotName": "String",
  1088. "DisplayDataType": {
  1089. "m_type": 5
  1090. },
  1091. "Descriptor": {
  1092. "ConnectionType": 2,
  1093. "SlotType": 2
  1094. },
  1095. "DataType": 1
  1096. },
  1097. {
  1098. "id": {
  1099. "m_id": "{526EE051-CABD-415C-99D1-D55ED0032E5E}"
  1100. },
  1101. "contracts": [
  1102. {
  1103. "$type": "SlotTypeContract"
  1104. }
  1105. ],
  1106. "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInFail",
  1107. "Descriptor": {
  1108. "ConnectionType": 2,
  1109. "SlotType": 1
  1110. },
  1111. "IsLatent": true
  1112. },
  1113. {
  1114. "id": {
  1115. "m_id": "{A921FE09-C86A-4DE3-9976-0BCC3359CAF3}"
  1116. },
  1117. "contracts": [
  1118. {
  1119. "$type": "SlotTypeContract"
  1120. }
  1121. ],
  1122. "slotName": "AuthenticationTokens",
  1123. "DisplayDataType": {
  1124. "m_type": 4,
  1125. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  1126. },
  1127. "Descriptor": {
  1128. "ConnectionType": 2,
  1129. "SlotType": 2
  1130. },
  1131. "DataType": 1
  1132. },
  1133. {
  1134. "id": {
  1135. "m_id": "{981C81CF-AED4-4535-A226-4BC19C718D73}"
  1136. },
  1137. "contracts": [
  1138. {
  1139. "$type": "SlotTypeContract"
  1140. }
  1141. ],
  1142. "slotName": "ExecutionSlot:OnRefreshTokensSuccess",
  1143. "Descriptor": {
  1144. "ConnectionType": 2,
  1145. "SlotType": 1
  1146. },
  1147. "IsLatent": true
  1148. },
  1149. {
  1150. "id": {
  1151. "m_id": "{1C060C05-4FE2-455A-BABA-4B86CE19F934}"
  1152. },
  1153. "contracts": [
  1154. {
  1155. "$type": "SlotTypeContract"
  1156. }
  1157. ],
  1158. "slotName": "String",
  1159. "DisplayDataType": {
  1160. "m_type": 5
  1161. },
  1162. "Descriptor": {
  1163. "ConnectionType": 2,
  1164. "SlotType": 2
  1165. },
  1166. "DataType": 1
  1167. },
  1168. {
  1169. "id": {
  1170. "m_id": "{F20A8880-B22D-4FAA-8779-F51DE7DB2D21}"
  1171. },
  1172. "contracts": [
  1173. {
  1174. "$type": "SlotTypeContract"
  1175. }
  1176. ],
  1177. "slotName": "ExecutionSlot:OnRefreshTokensFail",
  1178. "Descriptor": {
  1179. "ConnectionType": 2,
  1180. "SlotType": 1
  1181. },
  1182. "IsLatent": true
  1183. }
  1184. ],
  1185. "m_eventMap": [
  1186. {
  1187. "Key": {
  1188. "Value": 962116424
  1189. },
  1190. "Value": {
  1191. "m_eventName": "OnDeviceCodeGrantSignInSuccess",
  1192. "m_eventId": {
  1193. "Value": 962116424
  1194. },
  1195. "m_eventSlotId": {
  1196. "m_id": "{E8BA420E-FF66-4B13-94B9-2D96448542B0}"
  1197. },
  1198. "m_parameterSlotIds": [
  1199. {
  1200. "m_id": "{919E73F9-6A2B-437B-867D-6723FFF8D29E}"
  1201. },
  1202. {
  1203. "m_id": "{B494FB65-9082-4826-84B4-E2E6DB1803D1}"
  1204. },
  1205. {
  1206. "m_id": "{7F2FE508-FCDB-45E5-BBEB-8A25E9D09C41}"
  1207. }
  1208. ],
  1209. "m_numExpectedArguments": 3
  1210. }
  1211. },
  1212. {
  1213. "Key": {
  1214. "Value": 1026494196
  1215. },
  1216. "Value": {
  1217. "m_eventName": "OnRefreshTokensFail",
  1218. "m_eventId": {
  1219. "Value": 1026494196
  1220. },
  1221. "m_eventSlotId": {
  1222. "m_id": "{F20A8880-B22D-4FAA-8779-F51DE7DB2D21}"
  1223. },
  1224. "m_parameterSlotIds": [
  1225. {
  1226. "m_id": "{1C060C05-4FE2-455A-BABA-4B86CE19F934}"
  1227. }
  1228. ],
  1229. "m_numExpectedArguments": 1
  1230. }
  1231. },
  1232. {
  1233. "Key": {
  1234. "Value": 1152314015
  1235. },
  1236. "Value": {
  1237. "m_eventName": "OnRefreshTokensSuccess",
  1238. "m_eventId": {
  1239. "Value": 1152314015
  1240. },
  1241. "m_eventSlotId": {
  1242. "m_id": "{981C81CF-AED4-4535-A226-4BC19C718D73}"
  1243. },
  1244. "m_parameterSlotIds": [
  1245. {
  1246. "m_id": "{A921FE09-C86A-4DE3-9976-0BCC3359CAF3}"
  1247. }
  1248. ],
  1249. "m_numExpectedArguments": 1
  1250. }
  1251. },
  1252. {
  1253. "Key": {
  1254. "Value": 1203288733
  1255. },
  1256. "Value": {
  1257. "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInSuccess",
  1258. "m_eventId": {
  1259. "Value": 1203288733
  1260. },
  1261. "m_eventSlotId": {
  1262. "m_id": "{3C544F9A-0137-4735-8484-0458246E4D52}"
  1263. },
  1264. "m_parameterSlotIds": [
  1265. {
  1266. "m_id": "{0CC24B35-F3D6-4E7B-B9D1-98CEB36059AE}"
  1267. }
  1268. ],
  1269. "m_numExpectedArguments": 1
  1270. }
  1271. },
  1272. {
  1273. "Key": {
  1274. "Value": 1293959492
  1275. },
  1276. "Value": {
  1277. "m_eventName": "OnPasswordGrantSingleFactorSignInFail",
  1278. "m_eventId": {
  1279. "Value": 1293959492
  1280. },
  1281. "m_eventSlotId": {
  1282. "m_id": "{282E0463-9A13-4681-B69C-B6B30CA7CD01}"
  1283. },
  1284. "m_parameterSlotIds": [
  1285. {
  1286. "m_id": "{5B6638B9-4F55-4CCB-A368-C83FED5C43F8}"
  1287. }
  1288. ],
  1289. "m_numExpectedArguments": 1
  1290. }
  1291. },
  1292. {
  1293. "Key": {
  1294. "Value": 1722702500
  1295. },
  1296. "Value": {
  1297. "m_eventName": "OnPasswordGrantSingleFactorSignInSuccess",
  1298. "m_eventId": {
  1299. "Value": 1722702500
  1300. },
  1301. "m_eventSlotId": {
  1302. "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}"
  1303. },
  1304. "m_parameterSlotIds": [
  1305. {
  1306. "m_id": "{D79F252C-3D2A-4CC1-9A51-18B7827EB4CA}"
  1307. }
  1308. ],
  1309. "m_numExpectedArguments": 1
  1310. }
  1311. },
  1312. {
  1313. "Key": {
  1314. "Value": 1819337155
  1315. },
  1316. "Value": {
  1317. "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInFail",
  1318. "m_eventId": {
  1319. "Value": 1819337155
  1320. },
  1321. "m_eventSlotId": {
  1322. "m_id": "{FA8FE256-A70A-475E-A724-0E70C1099213}"
  1323. },
  1324. "m_parameterSlotIds": [
  1325. {
  1326. "m_id": "{BEBDDB95-FBBA-4AE1-BA89-C3DAE042E9E1}"
  1327. }
  1328. ],
  1329. "m_numExpectedArguments": 1
  1330. }
  1331. },
  1332. {
  1333. "Key": {
  1334. "Value": 1908852787
  1335. },
  1336. "Value": {
  1337. "m_eventName": "OnPasswordGrantMultiFactorSignInFail",
  1338. "m_eventId": {
  1339. "Value": 1908852787
  1340. },
  1341. "m_eventSlotId": {
  1342. "m_id": "{79F39D7A-BFC2-4749-9631-575A6C63714D}"
  1343. },
  1344. "m_parameterSlotIds": [
  1345. {
  1346. "m_id": "{C2EBAEB4-5ECA-441C-8202-0D2A80F1A776}"
  1347. }
  1348. ],
  1349. "m_numExpectedArguments": 1
  1350. }
  1351. },
  1352. {
  1353. "Key": {
  1354. "Value": 2486714370
  1355. },
  1356. "Value": {
  1357. "m_eventName": "OnPasswordGrantMultiFactorSignInSuccess",
  1358. "m_eventId": {
  1359. "Value": 2486714370
  1360. },
  1361. "m_eventSlotId": {
  1362. "m_id": "{B088E163-C71A-417E-8D35-F0A29273F5D9}"
  1363. }
  1364. }
  1365. },
  1366. {
  1367. "Key": {
  1368. "Value": 3091702945
  1369. },
  1370. "Value": {
  1371. "m_eventName": "OnDeviceCodeGrantSignInFail",
  1372. "m_eventId": {
  1373. "Value": 3091702945
  1374. },
  1375. "m_eventSlotId": {
  1376. "m_id": "{E03D10FB-C618-4260-870D-FA2B2B13FE0D}"
  1377. },
  1378. "m_parameterSlotIds": [
  1379. {
  1380. "m_id": "{4694A0AC-A400-47D0-A050-8B6AEDF65748}"
  1381. }
  1382. ],
  1383. "m_numExpectedArguments": 1
  1384. }
  1385. },
  1386. {
  1387. "Key": {
  1388. "Value": 3973214553
  1389. },
  1390. "Value": {
  1391. "m_eventName": "OnDeviceCodeGrantConfirmSignInFail",
  1392. "m_eventId": {
  1393. "Value": 3973214553
  1394. },
  1395. "m_eventSlotId": {
  1396. "m_id": "{526EE051-CABD-415C-99D1-D55ED0032E5E}"
  1397. },
  1398. "m_parameterSlotIds": [
  1399. {
  1400. "m_id": "{6958B465-4D41-4325-8A66-011E5BA281F2}"
  1401. }
  1402. ],
  1403. "m_numExpectedArguments": 1
  1404. }
  1405. },
  1406. {
  1407. "Key": {
  1408. "Value": 4272279525
  1409. },
  1410. "Value": {
  1411. "m_eventName": "OnDeviceCodeGrantConfirmSignInSuccess",
  1412. "m_eventId": {
  1413. "Value": 4272279525
  1414. },
  1415. "m_eventSlotId": {
  1416. "m_id": "{98B96DAE-EC45-4F36-B39A-F4C91C56FF95}"
  1417. },
  1418. "m_parameterSlotIds": [
  1419. {
  1420. "m_id": "{031D9648-B03B-42E3-8E6B-BF5F6FEF1937}"
  1421. }
  1422. ],
  1423. "m_numExpectedArguments": 1
  1424. }
  1425. }
  1426. ],
  1427. "m_ebusName": "AuthenticationProviderNotificationBus",
  1428. "m_busId": {
  1429. "Value": 3734230664
  1430. }
  1431. }
  1432. }
  1433. },
  1434. {
  1435. "Id": {
  1436. "id": 22602384012086
  1437. },
  1438. "Name": "SC-Node(Print)",
  1439. "Components": {
  1440. "Component_[17989474089224348440]": {
  1441. "$type": "Print",
  1442. "Id": 17989474089224348440,
  1443. "Slots": [
  1444. {
  1445. "id": {
  1446. "m_id": "{C0E7856E-AE8E-4151-9109-2E3B2A810054}"
  1447. },
  1448. "contracts": [
  1449. {
  1450. "$type": "SlotTypeContract"
  1451. }
  1452. ],
  1453. "slotName": "In",
  1454. "toolTip": "Input signal",
  1455. "Descriptor": {
  1456. "ConnectionType": 1,
  1457. "SlotType": 1
  1458. }
  1459. },
  1460. {
  1461. "id": {
  1462. "m_id": "{36A6967B-AD9E-41C2-9BCC-2AF62F62C774}"
  1463. },
  1464. "contracts": [
  1465. {
  1466. "$type": "SlotTypeContract"
  1467. }
  1468. ],
  1469. "slotName": "Out",
  1470. "Descriptor": {
  1471. "ConnectionType": 2,
  1472. "SlotType": 1
  1473. }
  1474. }
  1475. ],
  1476. "m_format": "Fail credentials",
  1477. "m_unresolvedString": [
  1478. "Fail credentials"
  1479. ]
  1480. }
  1481. }
  1482. },
  1483. {
  1484. "Id": {
  1485. "id": 22593794077494
  1486. },
  1487. "Name": "SC-Node(RequestAWSCredentialsAsync)",
  1488. "Components": {
  1489. "Component_[3213338170673989286]": {
  1490. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1491. "Id": 3213338170673989286,
  1492. "Slots": [
  1493. {
  1494. "id": {
  1495. "m_id": "{EB37FB3D-48EB-4766-AD8C-7F03D100C7FA}"
  1496. },
  1497. "contracts": [
  1498. {
  1499. "$type": "SlotTypeContract"
  1500. }
  1501. ],
  1502. "slotName": "In",
  1503. "Descriptor": {
  1504. "ConnectionType": 1,
  1505. "SlotType": 1
  1506. }
  1507. },
  1508. {
  1509. "id": {
  1510. "m_id": "{E1160157-4FDD-4720-9EF1-995D0380C53D}"
  1511. },
  1512. "contracts": [
  1513. {
  1514. "$type": "SlotTypeContract"
  1515. }
  1516. ],
  1517. "slotName": "Out",
  1518. "Descriptor": {
  1519. "ConnectionType": 2,
  1520. "SlotType": 1
  1521. }
  1522. }
  1523. ],
  1524. "methodType": 0,
  1525. "methodName": "RequestAWSCredentialsAsync",
  1526. "className": "AWSCognitoAuthorizationRequestBus",
  1527. "resultSlotIDs": [
  1528. {}
  1529. ],
  1530. "prettyClassName": "AWSCognitoAuthorizationRequestBus"
  1531. }
  1532. }
  1533. },
  1534. {
  1535. "Id": {
  1536. "id": 22563729306422
  1537. },
  1538. "Name": "EBusEventHandler",
  1539. "Components": {
  1540. "Component_[3639374038291845020]": {
  1541. "$type": "EBusEventHandler",
  1542. "Id": 3639374038291845020,
  1543. "Slots": [
  1544. {
  1545. "id": {
  1546. "m_id": "{2A8157B6-1A5A-464C-B1A1-CC5067AC8872}"
  1547. },
  1548. "contracts": [
  1549. {
  1550. "$type": "SlotTypeContract"
  1551. }
  1552. ],
  1553. "slotName": "Connect",
  1554. "toolTip": "Connect this event handler to the specified entity.",
  1555. "Descriptor": {
  1556. "ConnectionType": 1,
  1557. "SlotType": 1
  1558. }
  1559. },
  1560. {
  1561. "id": {
  1562. "m_id": "{8DBCEE08-2A7F-4D3E-BF59-7FB3A34AD3B7}"
  1563. },
  1564. "contracts": [
  1565. {
  1566. "$type": "SlotTypeContract"
  1567. }
  1568. ],
  1569. "slotName": "Disconnect",
  1570. "toolTip": "Disconnect this event handler.",
  1571. "Descriptor": {
  1572. "ConnectionType": 1,
  1573. "SlotType": 1
  1574. }
  1575. },
  1576. {
  1577. "id": {
  1578. "m_id": "{D8FCBC44-E46B-4699-B1A2-AE2BFE61A132}"
  1579. },
  1580. "contracts": [
  1581. {
  1582. "$type": "SlotTypeContract"
  1583. }
  1584. ],
  1585. "slotName": "OnConnected",
  1586. "toolTip": "Signaled when a connection has taken place.",
  1587. "Descriptor": {
  1588. "ConnectionType": 2,
  1589. "SlotType": 1
  1590. }
  1591. },
  1592. {
  1593. "id": {
  1594. "m_id": "{9E6AE222-55CE-48F1-A844-7DB53C07AB50}"
  1595. },
  1596. "contracts": [
  1597. {
  1598. "$type": "SlotTypeContract"
  1599. }
  1600. ],
  1601. "slotName": "OnDisconnected",
  1602. "toolTip": "Signaled when this event handler is disconnected.",
  1603. "Descriptor": {
  1604. "ConnectionType": 2,
  1605. "SlotType": 1
  1606. }
  1607. },
  1608. {
  1609. "id": {
  1610. "m_id": "{0507AD01-1320-4210-9786-5F87063D301F}"
  1611. },
  1612. "contracts": [
  1613. {
  1614. "$type": "SlotTypeContract"
  1615. }
  1616. ],
  1617. "slotName": "OnFailure",
  1618. "toolTip": "Signaled when it is not possible to connect this handler.",
  1619. "Descriptor": {
  1620. "ConnectionType": 2,
  1621. "SlotType": 1
  1622. }
  1623. },
  1624. {
  1625. "id": {
  1626. "m_id": "{6772D7F9-08BE-4D59-B410-7E6EC0FFEF2B}"
  1627. },
  1628. "contracts": [
  1629. {
  1630. "$type": "SlotTypeContract"
  1631. }
  1632. ],
  1633. "slotName": "AuthenticationTokens",
  1634. "DisplayDataType": {
  1635. "m_type": 4,
  1636. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  1637. },
  1638. "Descriptor": {
  1639. "ConnectionType": 2,
  1640. "SlotType": 2
  1641. },
  1642. "DataType": 1
  1643. },
  1644. {
  1645. "id": {
  1646. "m_id": "{ED8A0C7D-9D75-45A7-BAE1-FD8B980DADE2}"
  1647. },
  1648. "contracts": [
  1649. {
  1650. "$type": "SlotTypeContract"
  1651. }
  1652. ],
  1653. "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess",
  1654. "Descriptor": {
  1655. "ConnectionType": 2,
  1656. "SlotType": 1
  1657. },
  1658. "IsLatent": true
  1659. },
  1660. {
  1661. "id": {
  1662. "m_id": "{64484918-D357-4B41-830D-CC9EEB6EC963}"
  1663. },
  1664. "contracts": [
  1665. {
  1666. "$type": "SlotTypeContract"
  1667. }
  1668. ],
  1669. "slotName": "String",
  1670. "DisplayDataType": {
  1671. "m_type": 5
  1672. },
  1673. "Descriptor": {
  1674. "ConnectionType": 2,
  1675. "SlotType": 2
  1676. },
  1677. "DataType": 1
  1678. },
  1679. {
  1680. "id": {
  1681. "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}"
  1682. },
  1683. "contracts": [
  1684. {
  1685. "$type": "SlotTypeContract"
  1686. }
  1687. ],
  1688. "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInFail",
  1689. "Descriptor": {
  1690. "ConnectionType": 2,
  1691. "SlotType": 1
  1692. },
  1693. "IsLatent": true
  1694. },
  1695. {
  1696. "id": {
  1697. "m_id": "{FBBC04A8-2368-4B67-A48F-D7D33EDBC71F}"
  1698. },
  1699. "contracts": [
  1700. {
  1701. "$type": "SlotTypeContract"
  1702. }
  1703. ],
  1704. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInSuccess",
  1705. "Descriptor": {
  1706. "ConnectionType": 2,
  1707. "SlotType": 1
  1708. },
  1709. "IsLatent": true
  1710. },
  1711. {
  1712. "id": {
  1713. "m_id": "{5873E80A-4E48-4B52-AB91-ACE8DC42EC86}"
  1714. },
  1715. "contracts": [
  1716. {
  1717. "$type": "SlotTypeContract"
  1718. }
  1719. ],
  1720. "slotName": "String",
  1721. "DisplayDataType": {
  1722. "m_type": 5
  1723. },
  1724. "Descriptor": {
  1725. "ConnectionType": 2,
  1726. "SlotType": 2
  1727. },
  1728. "DataType": 1
  1729. },
  1730. {
  1731. "id": {
  1732. "m_id": "{DC0B9782-C4BB-49C0-8DE3-06933347FA20}"
  1733. },
  1734. "contracts": [
  1735. {
  1736. "$type": "SlotTypeContract"
  1737. }
  1738. ],
  1739. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInFail",
  1740. "Descriptor": {
  1741. "ConnectionType": 2,
  1742. "SlotType": 1
  1743. },
  1744. "IsLatent": true
  1745. },
  1746. {
  1747. "id": {
  1748. "m_id": "{4EB602D7-C5D7-427C-B7D3-838CC4FFBA0D}"
  1749. },
  1750. "contracts": [
  1751. {
  1752. "$type": "SlotTypeContract"
  1753. }
  1754. ],
  1755. "slotName": "AuthenticationTokens",
  1756. "DisplayDataType": {
  1757. "m_type": 4,
  1758. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  1759. },
  1760. "Descriptor": {
  1761. "ConnectionType": 2,
  1762. "SlotType": 2
  1763. },
  1764. "DataType": 1
  1765. },
  1766. {
  1767. "id": {
  1768. "m_id": "{B0F0A8E6-251E-4009-ADE7-8FA70422B1A3}"
  1769. },
  1770. "contracts": [
  1771. {
  1772. "$type": "SlotTypeContract"
  1773. }
  1774. ],
  1775. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInSuccess",
  1776. "Descriptor": {
  1777. "ConnectionType": 2,
  1778. "SlotType": 1
  1779. },
  1780. "IsLatent": true
  1781. },
  1782. {
  1783. "id": {
  1784. "m_id": "{0E5E0F30-D4A3-4361-99DC-DFB03CDA26ED}"
  1785. },
  1786. "contracts": [
  1787. {
  1788. "$type": "SlotTypeContract"
  1789. }
  1790. ],
  1791. "slotName": "String",
  1792. "DisplayDataType": {
  1793. "m_type": 5
  1794. },
  1795. "Descriptor": {
  1796. "ConnectionType": 2,
  1797. "SlotType": 2
  1798. },
  1799. "DataType": 1
  1800. },
  1801. {
  1802. "id": {
  1803. "m_id": "{DF4A4D97-D2A3-42C2-9F85-B79D0743B1DD}"
  1804. },
  1805. "contracts": [
  1806. {
  1807. "$type": "SlotTypeContract"
  1808. }
  1809. ],
  1810. "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInFail",
  1811. "Descriptor": {
  1812. "ConnectionType": 2,
  1813. "SlotType": 1
  1814. },
  1815. "IsLatent": true
  1816. },
  1817. {
  1818. "id": {
  1819. "m_id": "{58B429CF-B818-4CCB-8E31-84B04B65B704}"
  1820. },
  1821. "contracts": [
  1822. {
  1823. "$type": "SlotTypeContract"
  1824. }
  1825. ],
  1826. "slotName": "String",
  1827. "DisplayDataType": {
  1828. "m_type": 5
  1829. },
  1830. "Descriptor": {
  1831. "ConnectionType": 2,
  1832. "SlotType": 2
  1833. },
  1834. "DataType": 1
  1835. },
  1836. {
  1837. "id": {
  1838. "m_id": "{4564C0EF-B526-4AB6-9564-0AE22B473EE5}"
  1839. },
  1840. "contracts": [
  1841. {
  1842. "$type": "SlotTypeContract"
  1843. }
  1844. ],
  1845. "slotName": "String",
  1846. "DisplayDataType": {
  1847. "m_type": 5
  1848. },
  1849. "Descriptor": {
  1850. "ConnectionType": 2,
  1851. "SlotType": 2
  1852. },
  1853. "DataType": 1
  1854. },
  1855. {
  1856. "id": {
  1857. "m_id": "{6CD7C063-7118-4E55-AA6D-9EDF5B72F7E7}"
  1858. },
  1859. "contracts": [
  1860. {
  1861. "$type": "SlotTypeContract"
  1862. }
  1863. ],
  1864. "slotName": "Number",
  1865. "DisplayDataType": {
  1866. "m_type": 3
  1867. },
  1868. "Descriptor": {
  1869. "ConnectionType": 2,
  1870. "SlotType": 2
  1871. },
  1872. "DataType": 1
  1873. },
  1874. {
  1875. "id": {
  1876. "m_id": "{3F5A128D-5F74-4D09-9C12-425DCDDD8A71}"
  1877. },
  1878. "contracts": [
  1879. {
  1880. "$type": "SlotTypeContract"
  1881. }
  1882. ],
  1883. "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInSuccess",
  1884. "Descriptor": {
  1885. "ConnectionType": 2,
  1886. "SlotType": 1
  1887. },
  1888. "IsLatent": true
  1889. },
  1890. {
  1891. "id": {
  1892. "m_id": "{D49C27E1-B1F7-4A70-8872-B4E6337F0334}"
  1893. },
  1894. "contracts": [
  1895. {
  1896. "$type": "SlotTypeContract"
  1897. }
  1898. ],
  1899. "slotName": "String",
  1900. "DisplayDataType": {
  1901. "m_type": 5
  1902. },
  1903. "Descriptor": {
  1904. "ConnectionType": 2,
  1905. "SlotType": 2
  1906. },
  1907. "DataType": 1
  1908. },
  1909. {
  1910. "id": {
  1911. "m_id": "{E6EFD9E4-7CC8-4FBF-88DE-2FAAC4099AE2}"
  1912. },
  1913. "contracts": [
  1914. {
  1915. "$type": "SlotTypeContract"
  1916. }
  1917. ],
  1918. "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInFail",
  1919. "Descriptor": {
  1920. "ConnectionType": 2,
  1921. "SlotType": 1
  1922. },
  1923. "IsLatent": true
  1924. },
  1925. {
  1926. "id": {
  1927. "m_id": "{92E26492-6278-4B46-8CD4-0B271B1BB21B}"
  1928. },
  1929. "contracts": [
  1930. {
  1931. "$type": "SlotTypeContract"
  1932. }
  1933. ],
  1934. "slotName": "AuthenticationTokens",
  1935. "DisplayDataType": {
  1936. "m_type": 4,
  1937. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  1938. },
  1939. "Descriptor": {
  1940. "ConnectionType": 2,
  1941. "SlotType": 2
  1942. },
  1943. "DataType": 1
  1944. },
  1945. {
  1946. "id": {
  1947. "m_id": "{D39D72BA-6EC1-445C-93B7-CAD87B1ADC7D}"
  1948. },
  1949. "contracts": [
  1950. {
  1951. "$type": "SlotTypeContract"
  1952. }
  1953. ],
  1954. "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInSuccess",
  1955. "Descriptor": {
  1956. "ConnectionType": 2,
  1957. "SlotType": 1
  1958. },
  1959. "IsLatent": true
  1960. },
  1961. {
  1962. "id": {
  1963. "m_id": "{7D66C081-777B-451E-B626-0DAEB39ECA5A}"
  1964. },
  1965. "contracts": [
  1966. {
  1967. "$type": "SlotTypeContract"
  1968. }
  1969. ],
  1970. "slotName": "String",
  1971. "DisplayDataType": {
  1972. "m_type": 5
  1973. },
  1974. "Descriptor": {
  1975. "ConnectionType": 2,
  1976. "SlotType": 2
  1977. },
  1978. "DataType": 1
  1979. },
  1980. {
  1981. "id": {
  1982. "m_id": "{AE4AC27C-0EF0-4AFE-B8D2-80D6F1B35FAB}"
  1983. },
  1984. "contracts": [
  1985. {
  1986. "$type": "SlotTypeContract"
  1987. }
  1988. ],
  1989. "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInFail",
  1990. "Descriptor": {
  1991. "ConnectionType": 2,
  1992. "SlotType": 1
  1993. },
  1994. "IsLatent": true
  1995. },
  1996. {
  1997. "id": {
  1998. "m_id": "{A2BFBF6C-4E19-4294-BDB8-5A191048C9DB}"
  1999. },
  2000. "contracts": [
  2001. {
  2002. "$type": "SlotTypeContract"
  2003. }
  2004. ],
  2005. "slotName": "AuthenticationTokens",
  2006. "DisplayDataType": {
  2007. "m_type": 4,
  2008. "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
  2009. },
  2010. "Descriptor": {
  2011. "ConnectionType": 2,
  2012. "SlotType": 2
  2013. },
  2014. "DataType": 1
  2015. },
  2016. {
  2017. "id": {
  2018. "m_id": "{C2C30AB7-DACE-49FA-B7B3-04B9FFA5763F}"
  2019. },
  2020. "contracts": [
  2021. {
  2022. "$type": "SlotTypeContract"
  2023. }
  2024. ],
  2025. "slotName": "ExecutionSlot:OnRefreshTokensSuccess",
  2026. "Descriptor": {
  2027. "ConnectionType": 2,
  2028. "SlotType": 1
  2029. },
  2030. "IsLatent": true
  2031. },
  2032. {
  2033. "id": {
  2034. "m_id": "{9BD290CA-B00E-491D-855C-7BD084A0FF43}"
  2035. },
  2036. "contracts": [
  2037. {
  2038. "$type": "SlotTypeContract"
  2039. }
  2040. ],
  2041. "slotName": "String",
  2042. "DisplayDataType": {
  2043. "m_type": 5
  2044. },
  2045. "Descriptor": {
  2046. "ConnectionType": 2,
  2047. "SlotType": 2
  2048. },
  2049. "DataType": 1
  2050. },
  2051. {
  2052. "id": {
  2053. "m_id": "{6660546E-CC9B-4951-AE9F-C1D45E6098DD}"
  2054. },
  2055. "contracts": [
  2056. {
  2057. "$type": "SlotTypeContract"
  2058. }
  2059. ],
  2060. "slotName": "ExecutionSlot:OnRefreshTokensFail",
  2061. "Descriptor": {
  2062. "ConnectionType": 2,
  2063. "SlotType": 1
  2064. },
  2065. "IsLatent": true
  2066. }
  2067. ],
  2068. "m_eventMap": [
  2069. {
  2070. "Key": {
  2071. "Value": 962116424
  2072. },
  2073. "Value": {
  2074. "m_eventName": "OnDeviceCodeGrantSignInSuccess",
  2075. "m_eventId": {
  2076. "Value": 962116424
  2077. },
  2078. "m_eventSlotId": {
  2079. "m_id": "{3F5A128D-5F74-4D09-9C12-425DCDDD8A71}"
  2080. },
  2081. "m_parameterSlotIds": [
  2082. {
  2083. "m_id": "{58B429CF-B818-4CCB-8E31-84B04B65B704}"
  2084. },
  2085. {
  2086. "m_id": "{4564C0EF-B526-4AB6-9564-0AE22B473EE5}"
  2087. },
  2088. {
  2089. "m_id": "{6CD7C063-7118-4E55-AA6D-9EDF5B72F7E7}"
  2090. }
  2091. ],
  2092. "m_numExpectedArguments": 3
  2093. }
  2094. },
  2095. {
  2096. "Key": {
  2097. "Value": 1026494196
  2098. },
  2099. "Value": {
  2100. "m_eventName": "OnRefreshTokensFail",
  2101. "m_eventId": {
  2102. "Value": 1026494196
  2103. },
  2104. "m_eventSlotId": {
  2105. "m_id": "{6660546E-CC9B-4951-AE9F-C1D45E6098DD}"
  2106. },
  2107. "m_parameterSlotIds": [
  2108. {
  2109. "m_id": "{9BD290CA-B00E-491D-855C-7BD084A0FF43}"
  2110. }
  2111. ],
  2112. "m_numExpectedArguments": 1
  2113. }
  2114. },
  2115. {
  2116. "Key": {
  2117. "Value": 1152314015
  2118. },
  2119. "Value": {
  2120. "m_eventName": "OnRefreshTokensSuccess",
  2121. "m_eventId": {
  2122. "Value": 1152314015
  2123. },
  2124. "m_eventSlotId": {
  2125. "m_id": "{C2C30AB7-DACE-49FA-B7B3-04B9FFA5763F}"
  2126. },
  2127. "m_parameterSlotIds": [
  2128. {
  2129. "m_id": "{A2BFBF6C-4E19-4294-BDB8-5A191048C9DB}"
  2130. }
  2131. ],
  2132. "m_numExpectedArguments": 1
  2133. }
  2134. },
  2135. {
  2136. "Key": {
  2137. "Value": 1203288733
  2138. },
  2139. "Value": {
  2140. "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInSuccess",
  2141. "m_eventId": {
  2142. "Value": 1203288733
  2143. },
  2144. "m_eventSlotId": {
  2145. "m_id": "{B0F0A8E6-251E-4009-ADE7-8FA70422B1A3}"
  2146. },
  2147. "m_parameterSlotIds": [
  2148. {
  2149. "m_id": "{4EB602D7-C5D7-427C-B7D3-838CC4FFBA0D}"
  2150. }
  2151. ],
  2152. "m_numExpectedArguments": 1
  2153. }
  2154. },
  2155. {
  2156. "Key": {
  2157. "Value": 1293959492
  2158. },
  2159. "Value": {
  2160. "m_eventName": "OnPasswordGrantSingleFactorSignInFail",
  2161. "m_eventId": {
  2162. "Value": 1293959492
  2163. },
  2164. "m_eventSlotId": {
  2165. "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}"
  2166. },
  2167. "m_parameterSlotIds": [
  2168. {
  2169. "m_id": "{64484918-D357-4B41-830D-CC9EEB6EC963}"
  2170. }
  2171. ],
  2172. "m_numExpectedArguments": 1
  2173. }
  2174. },
  2175. {
  2176. "Key": {
  2177. "Value": 1722702500
  2178. },
  2179. "Value": {
  2180. "m_eventName": "OnPasswordGrantSingleFactorSignInSuccess",
  2181. "m_eventId": {
  2182. "Value": 1722702500
  2183. },
  2184. "m_eventSlotId": {
  2185. "m_id": "{ED8A0C7D-9D75-45A7-BAE1-FD8B980DADE2}"
  2186. },
  2187. "m_parameterSlotIds": [
  2188. {
  2189. "m_id": "{6772D7F9-08BE-4D59-B410-7E6EC0FFEF2B}"
  2190. }
  2191. ],
  2192. "m_numExpectedArguments": 1
  2193. }
  2194. },
  2195. {
  2196. "Key": {
  2197. "Value": 1819337155
  2198. },
  2199. "Value": {
  2200. "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInFail",
  2201. "m_eventId": {
  2202. "Value": 1819337155
  2203. },
  2204. "m_eventSlotId": {
  2205. "m_id": "{DF4A4D97-D2A3-42C2-9F85-B79D0743B1DD}"
  2206. },
  2207. "m_parameterSlotIds": [
  2208. {
  2209. "m_id": "{0E5E0F30-D4A3-4361-99DC-DFB03CDA26ED}"
  2210. }
  2211. ],
  2212. "m_numExpectedArguments": 1
  2213. }
  2214. },
  2215. {
  2216. "Key": {
  2217. "Value": 1908852787
  2218. },
  2219. "Value": {
  2220. "m_eventName": "OnPasswordGrantMultiFactorSignInFail",
  2221. "m_eventId": {
  2222. "Value": 1908852787
  2223. },
  2224. "m_eventSlotId": {
  2225. "m_id": "{DC0B9782-C4BB-49C0-8DE3-06933347FA20}"
  2226. },
  2227. "m_parameterSlotIds": [
  2228. {
  2229. "m_id": "{5873E80A-4E48-4B52-AB91-ACE8DC42EC86}"
  2230. }
  2231. ],
  2232. "m_numExpectedArguments": 1
  2233. }
  2234. },
  2235. {
  2236. "Key": {
  2237. "Value": 2486714370
  2238. },
  2239. "Value": {
  2240. "m_eventName": "OnPasswordGrantMultiFactorSignInSuccess",
  2241. "m_eventId": {
  2242. "Value": 2486714370
  2243. },
  2244. "m_eventSlotId": {
  2245. "m_id": "{FBBC04A8-2368-4B67-A48F-D7D33EDBC71F}"
  2246. }
  2247. }
  2248. },
  2249. {
  2250. "Key": {
  2251. "Value": 3091702945
  2252. },
  2253. "Value": {
  2254. "m_eventName": "OnDeviceCodeGrantSignInFail",
  2255. "m_eventId": {
  2256. "Value": 3091702945
  2257. },
  2258. "m_eventSlotId": {
  2259. "m_id": "{E6EFD9E4-7CC8-4FBF-88DE-2FAAC4099AE2}"
  2260. },
  2261. "m_parameterSlotIds": [
  2262. {
  2263. "m_id": "{D49C27E1-B1F7-4A70-8872-B4E6337F0334}"
  2264. }
  2265. ],
  2266. "m_numExpectedArguments": 1
  2267. }
  2268. },
  2269. {
  2270. "Key": {
  2271. "Value": 3973214553
  2272. },
  2273. "Value": {
  2274. "m_eventName": "OnDeviceCodeGrantConfirmSignInFail",
  2275. "m_eventId": {
  2276. "Value": 3973214553
  2277. },
  2278. "m_eventSlotId": {
  2279. "m_id": "{AE4AC27C-0EF0-4AFE-B8D2-80D6F1B35FAB}"
  2280. },
  2281. "m_parameterSlotIds": [
  2282. {
  2283. "m_id": "{7D66C081-777B-451E-B626-0DAEB39ECA5A}"
  2284. }
  2285. ],
  2286. "m_numExpectedArguments": 1
  2287. }
  2288. },
  2289. {
  2290. "Key": {
  2291. "Value": 4272279525
  2292. },
  2293. "Value": {
  2294. "m_eventName": "OnDeviceCodeGrantConfirmSignInSuccess",
  2295. "m_eventId": {
  2296. "Value": 4272279525
  2297. },
  2298. "m_eventSlotId": {
  2299. "m_id": "{D39D72BA-6EC1-445C-93B7-CAD87B1ADC7D}"
  2300. },
  2301. "m_parameterSlotIds": [
  2302. {
  2303. "m_id": "{92E26492-6278-4B46-8CD4-0B271B1BB21B}"
  2304. }
  2305. ],
  2306. "m_numExpectedArguments": 1
  2307. }
  2308. }
  2309. ],
  2310. "m_ebusName": "AuthenticationProviderNotificationBus",
  2311. "m_busId": {
  2312. "Value": 3734230664
  2313. }
  2314. }
  2315. }
  2316. },
  2317. {
  2318. "Id": {
  2319. "id": 22572319241014
  2320. },
  2321. "Name": "SC-Node(Initialize)",
  2322. "Components": {
  2323. "Component_[7405312649373835200]": {
  2324. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2325. "Id": 7405312649373835200,
  2326. "Slots": [
  2327. {
  2328. "id": {
  2329. "m_id": "{FAF2B1D0-815D-476E-BE0A-3C5B0A7181E2}"
  2330. },
  2331. "contracts": [
  2332. {
  2333. "$type": "SlotTypeContract"
  2334. }
  2335. ],
  2336. "slotName": "In",
  2337. "Descriptor": {
  2338. "ConnectionType": 1,
  2339. "SlotType": 1
  2340. }
  2341. },
  2342. {
  2343. "id": {
  2344. "m_id": "{354BF6A8-150D-4A9A-A19F-1B92ADC44A43}"
  2345. },
  2346. "contracts": [
  2347. {
  2348. "$type": "SlotTypeContract"
  2349. }
  2350. ],
  2351. "slotName": "Out",
  2352. "Descriptor": {
  2353. "ConnectionType": 2,
  2354. "SlotType": 1
  2355. }
  2356. },
  2357. {
  2358. "id": {
  2359. "m_id": "{1F13C9EB-941B-4AF1-B8DF-7549F7D6304E}"
  2360. },
  2361. "contracts": [
  2362. {
  2363. "$type": "SlotTypeContract"
  2364. }
  2365. ],
  2366. "slotName": "Result: Boolean",
  2367. "DisplayDataType": {
  2368. "m_type": 0
  2369. },
  2370. "Descriptor": {
  2371. "ConnectionType": 2,
  2372. "SlotType": 2
  2373. },
  2374. "DataType": 1
  2375. }
  2376. ],
  2377. "methodType": 0,
  2378. "methodName": "Initialize",
  2379. "className": "AWSCognitoAuthorizationRequestBus",
  2380. "resultSlotIDs": [
  2381. {}
  2382. ],
  2383. "prettyClassName": "AWSCognitoAuthorizationRequestBus"
  2384. }
  2385. }
  2386. },
  2387. {
  2388. "Id": {
  2389. "id": 22589499110198
  2390. },
  2391. "Name": "SC-Node(PasswordGrantSingleFactorSignInAsync)",
  2392. "Components": {
  2393. "Component_[7750292952156679363]": {
  2394. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2395. "Id": 7750292952156679363,
  2396. "Slots": [
  2397. {
  2398. "id": {
  2399. "m_id": "{A5E60763-81A7-4A8A-B8DB-AF4F3DD7D044}"
  2400. },
  2401. "contracts": [
  2402. {
  2403. "$type": "SlotTypeContract"
  2404. }
  2405. ],
  2406. "slotName": "String: 0",
  2407. "Descriptor": {
  2408. "ConnectionType": 1,
  2409. "SlotType": 2
  2410. },
  2411. "DataType": 1
  2412. },
  2413. {
  2414. "id": {
  2415. "m_id": "{CC3B7A6A-ABFF-4417-AB09-E010E9193CE0}"
  2416. },
  2417. "contracts": [
  2418. {
  2419. "$type": "SlotTypeContract"
  2420. }
  2421. ],
  2422. "slotName": "String: 1",
  2423. "Descriptor": {
  2424. "ConnectionType": 1,
  2425. "SlotType": 2
  2426. },
  2427. "DataType": 1
  2428. },
  2429. {
  2430. "id": {
  2431. "m_id": "{ABB9039F-307D-4A8B-A4DC-2BAFADDF238B}"
  2432. },
  2433. "contracts": [
  2434. {
  2435. "$type": "SlotTypeContract"
  2436. }
  2437. ],
  2438. "slotName": "String: 2",
  2439. "Descriptor": {
  2440. "ConnectionType": 1,
  2441. "SlotType": 2
  2442. },
  2443. "DataType": 1
  2444. },
  2445. {
  2446. "id": {
  2447. "m_id": "{F24D94B3-CD7D-4719-AEAB-58B6AA087480}"
  2448. },
  2449. "contracts": [
  2450. {
  2451. "$type": "SlotTypeContract"
  2452. }
  2453. ],
  2454. "slotName": "In",
  2455. "Descriptor": {
  2456. "ConnectionType": 1,
  2457. "SlotType": 1
  2458. }
  2459. },
  2460. {
  2461. "id": {
  2462. "m_id": "{E8DC5B43-1CB4-489C-AD04-D67C59BD9719}"
  2463. },
  2464. "contracts": [
  2465. {
  2466. "$type": "SlotTypeContract"
  2467. }
  2468. ],
  2469. "slotName": "Out",
  2470. "Descriptor": {
  2471. "ConnectionType": 2,
  2472. "SlotType": 1
  2473. }
  2474. }
  2475. ],
  2476. "Datums": [
  2477. {
  2478. "isOverloadedStorage": false,
  2479. "scriptCanvasType": {
  2480. "m_type": 5
  2481. },
  2482. "isNullPointer": false,
  2483. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2484. "value": "AWSCognitoIDP",
  2485. "label": "String: 0"
  2486. },
  2487. {
  2488. "isOverloadedStorage": false,
  2489. "scriptCanvasType": {
  2490. "m_type": 5
  2491. },
  2492. "isNullPointer": false,
  2493. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2494. "value": "test1",
  2495. "label": "String: 1"
  2496. },
  2497. {
  2498. "isOverloadedStorage": false,
  2499. "scriptCanvasType": {
  2500. "m_type": 5
  2501. },
  2502. "isNullPointer": false,
  2503. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2504. "value": "Test1test1!",
  2505. "label": "String: 2"
  2506. }
  2507. ],
  2508. "methodType": 0,
  2509. "methodName": "PasswordGrantSingleFactorSignInAsync",
  2510. "className": "AuthenticationProviderRequestBus",
  2511. "resultSlotIDs": [
  2512. {}
  2513. ],
  2514. "prettyClassName": "AuthenticationProviderRequestBus"
  2515. }
  2516. }
  2517. },
  2518. {
  2519. "Id": {
  2520. "id": 22598089044790
  2521. },
  2522. "Name": "SC-Node(Print)",
  2523. "Components": {
  2524. "Component_[8044817584554102751]": {
  2525. "$type": "Print",
  2526. "Id": 8044817584554102751,
  2527. "Slots": [
  2528. {
  2529. "id": {
  2530. "m_id": "{D3247169-ACA4-42FF-9CD9-7FC5D2888197}"
  2531. },
  2532. "contracts": [
  2533. {
  2534. "$type": "SlotTypeContract"
  2535. }
  2536. ],
  2537. "slotName": "In",
  2538. "toolTip": "Input signal",
  2539. "Descriptor": {
  2540. "ConnectionType": 1,
  2541. "SlotType": 1
  2542. }
  2543. },
  2544. {
  2545. "id": {
  2546. "m_id": "{F520F3E3-70BF-43EE-B133-65093AA8CCA8}"
  2547. },
  2548. "contracts": [
  2549. {
  2550. "$type": "SlotTypeContract"
  2551. }
  2552. ],
  2553. "slotName": "Out",
  2554. "Descriptor": {
  2555. "ConnectionType": 2,
  2556. "SlotType": 1
  2557. }
  2558. }
  2559. ],
  2560. "m_format": "Success credentials",
  2561. "m_unresolvedString": [
  2562. "Success credentials"
  2563. ]
  2564. }
  2565. }
  2566. },
  2567. {
  2568. "Id": {
  2569. "id": 22576614208310
  2570. },
  2571. "Name": "SC-Node(Initialize)",
  2572. "Components": {
  2573. "Component_[8692474017847050528]": {
  2574. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2575. "Id": 8692474017847050528,
  2576. "Slots": [
  2577. {
  2578. "id": {
  2579. "m_id": "{9EFCF33C-EFBB-44F8-BBD9-0E4AA96D45AF}"
  2580. },
  2581. "contracts": [
  2582. {
  2583. "$type": "SlotTypeContract"
  2584. }
  2585. ],
  2586. "slotName": "In",
  2587. "Descriptor": {
  2588. "ConnectionType": 1,
  2589. "SlotType": 1
  2590. }
  2591. },
  2592. {
  2593. "id": {
  2594. "m_id": "{04D08EB7-F20A-4CF7-8BB6-C79804F6EB59}"
  2595. },
  2596. "contracts": [
  2597. {
  2598. "$type": "SlotTypeContract"
  2599. }
  2600. ],
  2601. "slotName": "Out",
  2602. "Descriptor": {
  2603. "ConnectionType": 2,
  2604. "SlotType": 1
  2605. }
  2606. },
  2607. {
  2608. "id": {
  2609. "m_id": "{2B827E49-A105-44B7-BF32-B0BB97AA0069}"
  2610. },
  2611. "contracts": [
  2612. {
  2613. "$type": "SlotTypeContract"
  2614. }
  2615. ],
  2616. "slotName": "Result: Boolean",
  2617. "DisplayDataType": {
  2618. "m_type": 0
  2619. },
  2620. "Descriptor": {
  2621. "ConnectionType": 2,
  2622. "SlotType": 2
  2623. },
  2624. "DataType": 1
  2625. }
  2626. ],
  2627. "methodType": 0,
  2628. "methodName": "Initialize",
  2629. "className": "AWSCognitoUserManagementRequestBus",
  2630. "resultSlotIDs": [
  2631. {}
  2632. ],
  2633. "prettyClassName": "AWSCognitoUserManagementRequestBus"
  2634. }
  2635. }
  2636. },
  2637. {
  2638. "Id": {
  2639. "id": 22555139371830
  2640. },
  2641. "Name": "SC-Node(Print)",
  2642. "Components": {
  2643. "Component_[8900676182846034623]": {
  2644. "$type": "Print",
  2645. "Id": 8900676182846034623,
  2646. "Slots": [
  2647. {
  2648. "id": {
  2649. "m_id": "{9BB1F768-9D92-432C-9B8F-C99EB679CFB9}"
  2650. },
  2651. "contracts": [
  2652. {
  2653. "$type": "SlotTypeContract"
  2654. }
  2655. ],
  2656. "slotName": "In",
  2657. "toolTip": "Input signal",
  2658. "Descriptor": {
  2659. "ConnectionType": 1,
  2660. "SlotType": 1
  2661. }
  2662. },
  2663. {
  2664. "id": {
  2665. "m_id": "{880D8B51-8686-4D13-8AD3-0C9F43C9CC9F}"
  2666. },
  2667. "contracts": [
  2668. {
  2669. "$type": "SlotTypeContract"
  2670. }
  2671. ],
  2672. "slotName": "Out",
  2673. "Descriptor": {
  2674. "ConnectionType": 2,
  2675. "SlotType": 1
  2676. }
  2677. }
  2678. ],
  2679. "m_format": "SignIn Fail",
  2680. "m_unresolvedString": [
  2681. "SignIn Fail"
  2682. ]
  2683. }
  2684. }
  2685. },
  2686. {
  2687. "Id": {
  2688. "id": 22568024273718
  2689. },
  2690. "Name": "EBusEventHandler",
  2691. "Components": {
  2692. "Component_[954102115830395541]": {
  2693. "$type": "EBusEventHandler",
  2694. "Id": 954102115830395541,
  2695. "Slots": [
  2696. {
  2697. "id": {
  2698. "m_id": "{7CC34F95-FB5B-43EB-AD4D-72E916B326C3}"
  2699. },
  2700. "contracts": [
  2701. {
  2702. "$type": "SlotTypeContract"
  2703. }
  2704. ],
  2705. "slotName": "Connect",
  2706. "toolTip": "Connect this event handler to the specified entity.",
  2707. "Descriptor": {
  2708. "ConnectionType": 1,
  2709. "SlotType": 1
  2710. }
  2711. },
  2712. {
  2713. "id": {
  2714. "m_id": "{CF183A1F-260C-4BD6-8A1D-D1F1F6DA4D77}"
  2715. },
  2716. "contracts": [
  2717. {
  2718. "$type": "SlotTypeContract"
  2719. }
  2720. ],
  2721. "slotName": "Disconnect",
  2722. "toolTip": "Disconnect this event handler.",
  2723. "Descriptor": {
  2724. "ConnectionType": 1,
  2725. "SlotType": 1
  2726. }
  2727. },
  2728. {
  2729. "id": {
  2730. "m_id": "{B7010FF0-FFFF-401B-A97B-F64B6592D4AD}"
  2731. },
  2732. "contracts": [
  2733. {
  2734. "$type": "SlotTypeContract"
  2735. }
  2736. ],
  2737. "slotName": "OnConnected",
  2738. "toolTip": "Signaled when a connection has taken place.",
  2739. "Descriptor": {
  2740. "ConnectionType": 2,
  2741. "SlotType": 1
  2742. }
  2743. },
  2744. {
  2745. "id": {
  2746. "m_id": "{E4952C80-F90E-4B2D-894C-D42C88ECD33B}"
  2747. },
  2748. "contracts": [
  2749. {
  2750. "$type": "SlotTypeContract"
  2751. }
  2752. ],
  2753. "slotName": "OnDisconnected",
  2754. "toolTip": "Signaled when this event handler is disconnected.",
  2755. "Descriptor": {
  2756. "ConnectionType": 2,
  2757. "SlotType": 1
  2758. }
  2759. },
  2760. {
  2761. "id": {
  2762. "m_id": "{9F16F58B-1942-4841-9E7C-E797DFA9967D}"
  2763. },
  2764. "contracts": [
  2765. {
  2766. "$type": "SlotTypeContract"
  2767. }
  2768. ],
  2769. "slotName": "OnFailure",
  2770. "toolTip": "Signaled when it is not possible to connect this handler.",
  2771. "Descriptor": {
  2772. "ConnectionType": 2,
  2773. "SlotType": 1
  2774. }
  2775. },
  2776. {
  2777. "id": {
  2778. "m_id": "{29C614BD-C1B3-4EA3-B6E5-9147AED55BC8}"
  2779. },
  2780. "contracts": [
  2781. {
  2782. "$type": "SlotTypeContract"
  2783. }
  2784. ],
  2785. "slotName": "ClientAuthAWSCredentials",
  2786. "DisplayDataType": {
  2787. "m_type": 4,
  2788. "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}"
  2789. },
  2790. "Descriptor": {
  2791. "ConnectionType": 2,
  2792. "SlotType": 2
  2793. },
  2794. "DataType": 1
  2795. },
  2796. {
  2797. "id": {
  2798. "m_id": "{C8DD4D15-0C2D-43BC-9158-2D7DD1A33BBC}"
  2799. },
  2800. "contracts": [
  2801. {
  2802. "$type": "SlotTypeContract"
  2803. }
  2804. ],
  2805. "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess",
  2806. "Descriptor": {
  2807. "ConnectionType": 2,
  2808. "SlotType": 1
  2809. },
  2810. "IsLatent": true
  2811. },
  2812. {
  2813. "id": {
  2814. "m_id": "{F1BCDD2A-6F12-4E5F-A263-6237776FA727}"
  2815. },
  2816. "contracts": [
  2817. {
  2818. "$type": "SlotTypeContract"
  2819. }
  2820. ],
  2821. "slotName": "String",
  2822. "DisplayDataType": {
  2823. "m_type": 5
  2824. },
  2825. "Descriptor": {
  2826. "ConnectionType": 2,
  2827. "SlotType": 2
  2828. },
  2829. "DataType": 1
  2830. },
  2831. {
  2832. "id": {
  2833. "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}"
  2834. },
  2835. "contracts": [
  2836. {
  2837. "$type": "SlotTypeContract"
  2838. }
  2839. ],
  2840. "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail",
  2841. "Descriptor": {
  2842. "ConnectionType": 2,
  2843. "SlotType": 1
  2844. },
  2845. "IsLatent": true
  2846. }
  2847. ],
  2848. "m_eventMap": [
  2849. {
  2850. "Key": {
  2851. "Value": 3736070646
  2852. },
  2853. "Value": {
  2854. "m_eventName": "OnRequestAWSCredentialsSuccess",
  2855. "m_eventId": {
  2856. "Value": 3736070646
  2857. },
  2858. "m_eventSlotId": {
  2859. "m_id": "{C8DD4D15-0C2D-43BC-9158-2D7DD1A33BBC}"
  2860. },
  2861. "m_parameterSlotIds": [
  2862. {
  2863. "m_id": "{29C614BD-C1B3-4EA3-B6E5-9147AED55BC8}"
  2864. }
  2865. ],
  2866. "m_numExpectedArguments": 1
  2867. }
  2868. },
  2869. {
  2870. "Key": {
  2871. "Value": 4193877825
  2872. },
  2873. "Value": {
  2874. "m_eventName": "OnRequestAWSCredentialsFail",
  2875. "m_eventId": {
  2876. "Value": 4193877825
  2877. },
  2878. "m_eventSlotId": {
  2879. "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}"
  2880. },
  2881. "m_parameterSlotIds": [
  2882. {
  2883. "m_id": "{F1BCDD2A-6F12-4E5F-A263-6237776FA727}"
  2884. }
  2885. ],
  2886. "m_numExpectedArguments": 1
  2887. }
  2888. }
  2889. ],
  2890. "m_ebusName": "AWSCognitoAuthorizationNotificationBus",
  2891. "m_busId": {
  2892. "Value": 1100345364
  2893. }
  2894. }
  2895. }
  2896. }
  2897. ],
  2898. "m_connections": [
  2899. {
  2900. "Id": {
  2901. "id": 22615268913974
  2902. },
  2903. "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)",
  2904. "Components": {
  2905. "Component_[14399681979807032845]": {
  2906. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2907. "Id": 14399681979807032845,
  2908. "sourceEndpoint": {
  2909. "nodeId": {
  2910. "id": 22610973946678
  2911. },
  2912. "slotId": {
  2913. "m_id": "{4BB45954-74C5-4023-AFBE-C82638076FDD}"
  2914. }
  2915. },
  2916. "targetEndpoint": {
  2917. "nodeId": {
  2918. "id": 22576614208310
  2919. },
  2920. "slotId": {
  2921. "m_id": "{9EFCF33C-EFBB-44F8-BBD9-0E4AA96D45AF}"
  2922. }
  2923. }
  2924. }
  2925. }
  2926. },
  2927. {
  2928. "Id": {
  2929. "id": 22619563881270
  2930. },
  2931. "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)",
  2932. "Components": {
  2933. "Component_[17573298986849197839]": {
  2934. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2935. "Id": 17573298986849197839,
  2936. "sourceEndpoint": {
  2937. "nodeId": {
  2938. "id": 22576614208310
  2939. },
  2940. "slotId": {
  2941. "m_id": "{04D08EB7-F20A-4CF7-8BB6-C79804F6EB59}"
  2942. }
  2943. },
  2944. "targetEndpoint": {
  2945. "nodeId": {
  2946. "id": 22572319241014
  2947. },
  2948. "slotId": {
  2949. "m_id": "{FAF2B1D0-815D-476E-BE0A-3C5B0A7181E2}"
  2950. }
  2951. }
  2952. }
  2953. }
  2954. },
  2955. {
  2956. "Id": {
  2957. "id": 22623858848566
  2958. },
  2959. "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(PasswordGrantSingleFactorSignInAsync: In)",
  2960. "Components": {
  2961. "Component_[9852640775697931695]": {
  2962. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2963. "Id": 9852640775697931695,
  2964. "sourceEndpoint": {
  2965. "nodeId": {
  2966. "id": 22572319241014
  2967. },
  2968. "slotId": {
  2969. "m_id": "{354BF6A8-150D-4A9A-A19F-1B92ADC44A43}"
  2970. }
  2971. },
  2972. "targetEndpoint": {
  2973. "nodeId": {
  2974. "id": 22589499110198
  2975. },
  2976. "slotId": {
  2977. "m_id": "{F24D94B3-CD7D-4719-AEAB-58B6AA087480}"
  2978. }
  2979. }
  2980. }
  2981. }
  2982. },
  2983. {
  2984. "Id": {
  2985. "id": 22628153815862
  2986. },
  2987. "Name": "srcEndpoint=(Print: Out), destEndpoint=(RequestAWSCredentialsAsync: In)",
  2988. "Components": {
  2989. "Component_[12044830313862012006]": {
  2990. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2991. "Id": 12044830313862012006,
  2992. "sourceEndpoint": {
  2993. "nodeId": {
  2994. "id": 22606678979382
  2995. },
  2996. "slotId": {
  2997. "m_id": "{F5EE89C0-AB89-4D06-BD4C-72CA40AB075B}"
  2998. }
  2999. },
  3000. "targetEndpoint": {
  3001. "nodeId": {
  3002. "id": 22593794077494
  3003. },
  3004. "slotId": {
  3005. "m_id": "{EB37FB3D-48EB-4766-AD8C-7F03D100C7FA}"
  3006. }
  3007. }
  3008. }
  3009. }
  3010. },
  3011. {
  3012. "Id": {
  3013. "id": 22632448783158
  3014. },
  3015. "Name": "srcEndpoint=(AuthenticationProviderNotificationBus Handler: ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess), destEndpoint=(Print: In)",
  3016. "Components": {
  3017. "Component_[11544107396556720999]": {
  3018. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3019. "Id": 11544107396556720999,
  3020. "sourceEndpoint": {
  3021. "nodeId": {
  3022. "id": 22585204142902
  3023. },
  3024. "slotId": {
  3025. "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}"
  3026. }
  3027. },
  3028. "targetEndpoint": {
  3029. "nodeId": {
  3030. "id": 22606678979382
  3031. },
  3032. "slotId": {
  3033. "m_id": "{269D4FDC-1137-45A3-8442-2A2DF98D6F6E}"
  3034. }
  3035. }
  3036. }
  3037. }
  3038. },
  3039. {
  3040. "Id": {
  3041. "id": 22636743750454
  3042. },
  3043. "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsSuccess), destEndpoint=(Print: In)",
  3044. "Components": {
  3045. "Component_[16101269355489066265]": {
  3046. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3047. "Id": 16101269355489066265,
  3048. "sourceEndpoint": {
  3049. "nodeId": {
  3050. "id": 22580909175606
  3051. },
  3052. "slotId": {
  3053. "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}"
  3054. }
  3055. },
  3056. "targetEndpoint": {
  3057. "nodeId": {
  3058. "id": 22598089044790
  3059. },
  3060. "slotId": {
  3061. "m_id": "{D3247169-ACA4-42FF-9CD9-7FC5D2888197}"
  3062. }
  3063. }
  3064. }
  3065. }
  3066. },
  3067. {
  3068. "Id": {
  3069. "id": 22641038717750
  3070. },
  3071. "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsFail), destEndpoint=(Print: In)",
  3072. "Components": {
  3073. "Component_[6840692313652679972]": {
  3074. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3075. "Id": 6840692313652679972,
  3076. "sourceEndpoint": {
  3077. "nodeId": {
  3078. "id": 22568024273718
  3079. },
  3080. "slotId": {
  3081. "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}"
  3082. }
  3083. },
  3084. "targetEndpoint": {
  3085. "nodeId": {
  3086. "id": 22602384012086
  3087. },
  3088. "slotId": {
  3089. "m_id": "{C0E7856E-AE8E-4151-9109-2E3B2A810054}"
  3090. }
  3091. }
  3092. }
  3093. }
  3094. },
  3095. {
  3096. "Id": {
  3097. "id": 22645333685046
  3098. },
  3099. "Name": "srcEndpoint=(AuthenticationProviderNotificationBus Handler: ExecutionSlot:OnPasswordGrantSingleFactorSignInFail), destEndpoint=(Print: In)",
  3100. "Components": {
  3101. "Component_[72000609721937697]": {
  3102. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3103. "Id": 72000609721937697,
  3104. "sourceEndpoint": {
  3105. "nodeId": {
  3106. "id": 22563729306422
  3107. },
  3108. "slotId": {
  3109. "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}"
  3110. }
  3111. },
  3112. "targetEndpoint": {
  3113. "nodeId": {
  3114. "id": 22555139371830
  3115. },
  3116. "slotId": {
  3117. "m_id": "{9BB1F768-9D92-432C-9B8F-C99EB679CFB9}"
  3118. }
  3119. }
  3120. }
  3121. }
  3122. },
  3123. {
  3124. "Id": {
  3125. "id": 22649628652342
  3126. },
  3127. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Initialize: In)",
  3128. "Components": {
  3129. "Component_[15648358861411868133]": {
  3130. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3131. "Id": 15648358861411868133,
  3132. "sourceEndpoint": {
  3133. "nodeId": {
  3134. "id": 22559434339126
  3135. },
  3136. "slotId": {
  3137. "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}"
  3138. }
  3139. },
  3140. "targetEndpoint": {
  3141. "nodeId": {
  3142. "id": 22610973946678
  3143. },
  3144. "slotId": {
  3145. "m_id": "{F4ED50C1-0694-4E9F-A4E6-83565E517C1E}"
  3146. }
  3147. }
  3148. }
  3149. }
  3150. }
  3151. ]
  3152. },
  3153. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  3154. "versionData": {
  3155. "_grammarVersion": 1,
  3156. "_runtimeVersion": 1
  3157. },
  3158. "m_variableCounter": 1,
  3159. "GraphCanvasData": [
  3160. {
  3161. "Key": {
  3162. "id": 22550844404534
  3163. },
  3164. "Value": {
  3165. "ComponentData": {
  3166. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  3167. "$type": "SceneComponentSaveData",
  3168. "ViewParams": {
  3169. "Scale": 1.4170998772559926,
  3170. "AnchorX": 224.40196228027344,
  3171. "AnchorY": 163.7146453857422
  3172. }
  3173. }
  3174. }
  3175. }
  3176. },
  3177. {
  3178. "Key": {
  3179. "id": 22555139371830
  3180. },
  3181. "Value": {
  3182. "ComponentData": {
  3183. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3184. "$type": "NodeSaveData"
  3185. },
  3186. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3187. "$type": "GeneralNodeTitleComponentSaveData",
  3188. "PaletteOverride": "StringNodeTitlePalette"
  3189. },
  3190. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3191. "$type": "GeometrySaveData",
  3192. "Position": [
  3193. 1720.0,
  3194. 820.0
  3195. ]
  3196. },
  3197. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3198. "$type": "StylingComponentSaveData"
  3199. },
  3200. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3201. "$type": "PersistentIdComponentSaveData",
  3202. "PersistentId": "{2B3195F2-1430-43F8-9E98-821F79AE9168}"
  3203. }
  3204. }
  3205. }
  3206. },
  3207. {
  3208. "Key": {
  3209. "id": 22559434339126
  3210. },
  3211. "Value": {
  3212. "ComponentData": {
  3213. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3214. "$type": "NodeSaveData"
  3215. },
  3216. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3217. "$type": "GeometrySaveData",
  3218. "Position": [
  3219. 340.0,
  3220. 240.0
  3221. ]
  3222. },
  3223. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3224. "$type": "EBusHandlerNodeDescriptorSaveData",
  3225. "EventIds": [
  3226. {
  3227. "Value": 245425936
  3228. }
  3229. ]
  3230. },
  3231. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3232. "$type": "StylingComponentSaveData"
  3233. },
  3234. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3235. "$type": "PersistentIdComponentSaveData",
  3236. "PersistentId": "{571D5EB6-761E-4961-A9A8-47CEC16F8549}"
  3237. }
  3238. }
  3239. }
  3240. },
  3241. {
  3242. "Key": {
  3243. "id": 22563729306422
  3244. },
  3245. "Value": {
  3246. "ComponentData": {
  3247. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3248. "$type": "NodeSaveData"
  3249. },
  3250. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3251. "$type": "GeometrySaveData",
  3252. "Position": [
  3253. 1200.0,
  3254. 820.0
  3255. ]
  3256. },
  3257. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3258. "$type": "EBusHandlerNodeDescriptorSaveData",
  3259. "EventIds": [
  3260. {
  3261. "Value": 1293959492
  3262. }
  3263. ]
  3264. },
  3265. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3266. "$type": "StylingComponentSaveData"
  3267. },
  3268. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3269. "$type": "PersistentIdComponentSaveData",
  3270. "PersistentId": "{D64CFD59-5EB3-46F7-B778-B8C1B1BCE0F6}"
  3271. }
  3272. }
  3273. }
  3274. },
  3275. {
  3276. "Key": {
  3277. "id": 22568024273718
  3278. },
  3279. "Value": {
  3280. "ComponentData": {
  3281. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3282. "$type": "NodeSaveData"
  3283. },
  3284. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3285. "$type": "GeometrySaveData",
  3286. "Position": [
  3287. 1200.0,
  3288. 1360.0
  3289. ]
  3290. },
  3291. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3292. "$type": "EBusHandlerNodeDescriptorSaveData",
  3293. "EventIds": [
  3294. {
  3295. "Value": 4193877825
  3296. }
  3297. ]
  3298. },
  3299. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3300. "$type": "StylingComponentSaveData"
  3301. },
  3302. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3303. "$type": "PersistentIdComponentSaveData",
  3304. "PersistentId": "{897D9E34-AB55-4C02-B7CF-707DF3026F7A}"
  3305. }
  3306. }
  3307. }
  3308. },
  3309. {
  3310. "Key": {
  3311. "id": 22572319241014
  3312. },
  3313. "Value": {
  3314. "ComponentData": {
  3315. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3316. "$type": "NodeSaveData"
  3317. },
  3318. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3319. "$type": "GeneralNodeTitleComponentSaveData",
  3320. "PaletteOverride": "MethodNodeTitlePalette"
  3321. },
  3322. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3323. "$type": "GeometrySaveData",
  3324. "Position": [
  3325. 300.0,
  3326. 620.0
  3327. ]
  3328. },
  3329. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3330. "$type": "StylingComponentSaveData",
  3331. "SubStyle": ".method"
  3332. },
  3333. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3334. "$type": "PersistentIdComponentSaveData",
  3335. "PersistentId": "{86D69109-1347-4874-B913-DD03618254AA}"
  3336. }
  3337. }
  3338. }
  3339. },
  3340. {
  3341. "Key": {
  3342. "id": 22576614208310
  3343. },
  3344. "Value": {
  3345. "ComponentData": {
  3346. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3347. "$type": "NodeSaveData"
  3348. },
  3349. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3350. "$type": "GeneralNodeTitleComponentSaveData",
  3351. "PaletteOverride": "MethodNodeTitlePalette"
  3352. },
  3353. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3354. "$type": "GeometrySaveData",
  3355. "Position": [
  3356. 1200.0,
  3357. 300.0
  3358. ]
  3359. },
  3360. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3361. "$type": "StylingComponentSaveData",
  3362. "SubStyle": ".method"
  3363. },
  3364. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3365. "$type": "PersistentIdComponentSaveData",
  3366. "PersistentId": "{646FDAC6-AC92-436C-84D3-6C7C067F7662}"
  3367. }
  3368. }
  3369. }
  3370. },
  3371. {
  3372. "Key": {
  3373. "id": 22580909175606
  3374. },
  3375. "Value": {
  3376. "ComponentData": {
  3377. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3378. "$type": "NodeSaveData"
  3379. },
  3380. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3381. "$type": "GeometrySaveData",
  3382. "Position": [
  3383. 1200.0,
  3384. 1100.0
  3385. ]
  3386. },
  3387. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3388. "$type": "EBusHandlerNodeDescriptorSaveData",
  3389. "EventIds": [
  3390. {
  3391. "Value": 3736070646
  3392. }
  3393. ]
  3394. },
  3395. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3396. "$type": "StylingComponentSaveData"
  3397. },
  3398. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3399. "$type": "PersistentIdComponentSaveData",
  3400. "PersistentId": "{A7E33C5C-1567-4ACF-AA26-07DCF02A0C31}"
  3401. }
  3402. }
  3403. }
  3404. },
  3405. {
  3406. "Key": {
  3407. "id": 22585204142902
  3408. },
  3409. "Value": {
  3410. "ComponentData": {
  3411. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3412. "$type": "NodeSaveData"
  3413. },
  3414. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3415. "$type": "GeometrySaveData",
  3416. "Position": [
  3417. 1200.0,
  3418. 540.0
  3419. ]
  3420. },
  3421. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3422. "$type": "EBusHandlerNodeDescriptorSaveData",
  3423. "EventIds": [
  3424. {
  3425. "Value": 1722702500
  3426. }
  3427. ]
  3428. },
  3429. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3430. "$type": "StylingComponentSaveData"
  3431. },
  3432. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3433. "$type": "PersistentIdComponentSaveData",
  3434. "PersistentId": "{73A7B670-D516-477F-BAD2-AC948A0F30AF}"
  3435. }
  3436. }
  3437. }
  3438. },
  3439. {
  3440. "Key": {
  3441. "id": 22589499110198
  3442. },
  3443. "Value": {
  3444. "ComponentData": {
  3445. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3446. "$type": "NodeSaveData"
  3447. },
  3448. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3449. "$type": "GeneralNodeTitleComponentSaveData",
  3450. "PaletteOverride": "MethodNodeTitlePalette"
  3451. },
  3452. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3453. "$type": "GeometrySaveData",
  3454. "Position": [
  3455. 700.0,
  3456. 620.0
  3457. ]
  3458. },
  3459. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3460. "$type": "StylingComponentSaveData",
  3461. "SubStyle": ".method"
  3462. },
  3463. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3464. "$type": "PersistentIdComponentSaveData",
  3465. "PersistentId": "{8ED300CF-364B-4569-967D-2E1366510572}"
  3466. }
  3467. }
  3468. }
  3469. },
  3470. {
  3471. "Key": {
  3472. "id": 22593794077494
  3473. },
  3474. "Value": {
  3475. "ComponentData": {
  3476. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3477. "$type": "NodeSaveData"
  3478. },
  3479. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3480. "$type": "GeneralNodeTitleComponentSaveData",
  3481. "PaletteOverride": "MethodNodeTitlePalette"
  3482. },
  3483. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3484. "$type": "GeometrySaveData",
  3485. "Position": [
  3486. 280.0,
  3487. 1120.0
  3488. ]
  3489. },
  3490. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3491. "$type": "StylingComponentSaveData",
  3492. "SubStyle": ".method"
  3493. },
  3494. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3495. "$type": "PersistentIdComponentSaveData",
  3496. "PersistentId": "{59A81991-B4E6-48C4-9534-2DAF56ACE2EB}"
  3497. }
  3498. }
  3499. }
  3500. },
  3501. {
  3502. "Key": {
  3503. "id": 22598089044790
  3504. },
  3505. "Value": {
  3506. "ComponentData": {
  3507. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3508. "$type": "NodeSaveData"
  3509. },
  3510. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3511. "$type": "GeneralNodeTitleComponentSaveData",
  3512. "PaletteOverride": "StringNodeTitlePalette"
  3513. },
  3514. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3515. "$type": "GeometrySaveData",
  3516. "Position": [
  3517. 1720.0,
  3518. 1100.0
  3519. ]
  3520. },
  3521. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3522. "$type": "StylingComponentSaveData"
  3523. },
  3524. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3525. "$type": "PersistentIdComponentSaveData",
  3526. "PersistentId": "{1FB84C5F-E453-4160-947F-CF32F5E2628A}"
  3527. }
  3528. }
  3529. }
  3530. },
  3531. {
  3532. "Key": {
  3533. "id": 22602384012086
  3534. },
  3535. "Value": {
  3536. "ComponentData": {
  3537. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3538. "$type": "NodeSaveData"
  3539. },
  3540. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3541. "$type": "GeneralNodeTitleComponentSaveData",
  3542. "PaletteOverride": "StringNodeTitlePalette"
  3543. },
  3544. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3545. "$type": "GeometrySaveData",
  3546. "Position": [
  3547. 1720.0,
  3548. 1360.0
  3549. ]
  3550. },
  3551. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3552. "$type": "StylingComponentSaveData"
  3553. },
  3554. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3555. "$type": "PersistentIdComponentSaveData",
  3556. "PersistentId": "{3C3CA353-2C5F-4479-9FB5-BF089C18D90D}"
  3557. }
  3558. }
  3559. }
  3560. },
  3561. {
  3562. "Key": {
  3563. "id": 22606678979382
  3564. },
  3565. "Value": {
  3566. "ComponentData": {
  3567. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3568. "$type": "NodeSaveData"
  3569. },
  3570. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3571. "$type": "GeneralNodeTitleComponentSaveData",
  3572. "PaletteOverride": "StringNodeTitlePalette"
  3573. },
  3574. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3575. "$type": "GeometrySaveData",
  3576. "Position": [
  3577. 1720.0,
  3578. 580.0
  3579. ]
  3580. },
  3581. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3582. "$type": "StylingComponentSaveData"
  3583. },
  3584. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3585. "$type": "PersistentIdComponentSaveData",
  3586. "PersistentId": "{8766AD8F-F6D5-4DAD-B56D-7B1542B9E2EF}"
  3587. }
  3588. }
  3589. }
  3590. },
  3591. {
  3592. "Key": {
  3593. "id": 22610973946678
  3594. },
  3595. "Value": {
  3596. "ComponentData": {
  3597. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3598. "$type": "NodeSaveData"
  3599. },
  3600. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3601. "$type": "GeneralNodeTitleComponentSaveData",
  3602. "PaletteOverride": "MethodNodeTitlePalette"
  3603. },
  3604. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3605. "$type": "GeometrySaveData",
  3606. "Position": [
  3607. 680.0,
  3608. 300.0
  3609. ]
  3610. },
  3611. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3612. "$type": "StylingComponentSaveData",
  3613. "SubStyle": ".method"
  3614. },
  3615. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3616. "$type": "PersistentIdComponentSaveData",
  3617. "PersistentId": "{FD8E5258-B0B2-47E4-AEC1-06E61DA50C70}"
  3618. }
  3619. }
  3620. }
  3621. }
  3622. ],
  3623. "StatisticsHelper": {
  3624. "InstanceCounter": [
  3625. {
  3626. "Key": 5842116761103598202,
  3627. "Value": 1
  3628. },
  3629. {
  3630. "Key": 5842117366976109617,
  3631. "Value": 1
  3632. },
  3633. {
  3634. "Key": 5842117367539594961,
  3635. "Value": 1
  3636. },
  3637. {
  3638. "Key": 5842117453459104876,
  3639. "Value": 1
  3640. },
  3641. {
  3642. "Key": 5842117453819001655,
  3643. "Value": 1
  3644. },
  3645. {
  3646. "Key": 10684225535275896474,
  3647. "Value": 4
  3648. },
  3649. {
  3650. "Key": 13774516282682374181,
  3651. "Value": 1
  3652. },
  3653. {
  3654. "Key": 13774516283013331095,
  3655. "Value": 1
  3656. },
  3657. {
  3658. "Key": 13774516352051377806,
  3659. "Value": 1
  3660. },
  3661. {
  3662. "Key": 13774516386968943251,
  3663. "Value": 1
  3664. },
  3665. {
  3666. "Key": 13774516392820282243,
  3667. "Value": 1
  3668. }
  3669. ]
  3670. }
  3671. }
  3672. }
  3673. }
  3674. }
  3675. }