PasswordSignUp.scriptcanvas 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 40366368748342
  9. },
  10. "Name": "PasswordSignUp",
  11. "Components": {
  12. "Component_[15293771356940612577]": {
  13. "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph",
  14. "Id": 15293771356940612577,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 40392138552118
  20. },
  21. "Name": "SC-Node(Initialize)",
  22. "Components": {
  23. "Component_[10218083367428942849]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 10218083367428942849,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{399A9DE3-F888-4941-95ED-51DAA3577806}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 1
  40. }
  41. },
  42. {
  43. "id": {
  44. "m_id": "{7E46FB7B-9FFF-49BE-8A8B-59A6144BB567}"
  45. },
  46. "contracts": [
  47. {
  48. "$type": "SlotTypeContract"
  49. }
  50. ],
  51. "slotName": "Out",
  52. "Descriptor": {
  53. "ConnectionType": 2,
  54. "SlotType": 1
  55. }
  56. },
  57. {
  58. "id": {
  59. "m_id": "{A3A7AA49-0362-4F3C-81D9-C673BDC4CB9D}"
  60. },
  61. "contracts": [
  62. {
  63. "$type": "SlotTypeContract"
  64. }
  65. ],
  66. "slotName": "Result: Boolean",
  67. "DisplayDataType": {
  68. "m_type": 0
  69. },
  70. "Descriptor": {
  71. "ConnectionType": 2,
  72. "SlotType": 2
  73. },
  74. "DataType": 1
  75. }
  76. ],
  77. "methodType": 0,
  78. "methodName": "Initialize",
  79. "className": "AWSCognitoAuthorizationRequestBus",
  80. "resultSlotIDs": [
  81. {}
  82. ],
  83. "prettyClassName": "AWSCognitoAuthorizationRequestBus"
  84. }
  85. }
  86. },
  87. {
  88. "Id": {
  89. "id": 40387843584822
  90. },
  91. "Name": "SC-Node(Initialize)",
  92. "Components": {
  93. "Component_[1064784280691017359]": {
  94. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  95. "Id": 1064784280691017359,
  96. "Slots": [
  97. {
  98. "id": {
  99. "m_id": "{3D4180D8-264F-40A6-B651-8AD9968800CD}"
  100. },
  101. "contracts": [
  102. {
  103. "$type": "SlotTypeContract"
  104. }
  105. ],
  106. "slotName": "In",
  107. "Descriptor": {
  108. "ConnectionType": 1,
  109. "SlotType": 1
  110. }
  111. },
  112. {
  113. "id": {
  114. "m_id": "{12154F8B-6329-44B2-B220-25BBB4F4DA8C}"
  115. },
  116. "contracts": [
  117. {
  118. "$type": "SlotTypeContract"
  119. }
  120. ],
  121. "slotName": "Out",
  122. "Descriptor": {
  123. "ConnectionType": 2,
  124. "SlotType": 1
  125. }
  126. },
  127. {
  128. "id": {
  129. "m_id": "{65D3D1AD-0D98-48D0-9E6E-742535E78E15}"
  130. },
  131. "contracts": [
  132. {
  133. "$type": "SlotTypeContract"
  134. }
  135. ],
  136. "slotName": "Result: Boolean",
  137. "DisplayDataType": {
  138. "m_type": 0
  139. },
  140. "Descriptor": {
  141. "ConnectionType": 2,
  142. "SlotType": 2
  143. },
  144. "DataType": 1
  145. }
  146. ],
  147. "methodType": 0,
  148. "methodName": "Initialize",
  149. "className": "AWSCognitoUserManagementRequestBus",
  150. "resultSlotIDs": [
  151. {}
  152. ],
  153. "prettyClassName": "AWSCognitoUserManagementRequestBus"
  154. }
  155. }
  156. },
  157. {
  158. "Id": {
  159. "id": 40379253650230
  160. },
  161. "Name": "SC-Node(Print)",
  162. "Components": {
  163. "Component_[17066281136316039638]": {
  164. "$type": "Print",
  165. "Id": 17066281136316039638,
  166. "Slots": [
  167. {
  168. "id": {
  169. "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}"
  170. },
  171. "contracts": [
  172. {
  173. "$type": "SlotTypeContract"
  174. }
  175. ],
  176. "slotName": "In",
  177. "toolTip": "Input signal",
  178. "Descriptor": {
  179. "ConnectionType": 1,
  180. "SlotType": 1
  181. }
  182. },
  183. {
  184. "id": {
  185. "m_id": "{6BFF8DF8-6D3B-47AD-8A6A-CCEAAC7B0B26}"
  186. },
  187. "contracts": [
  188. {
  189. "$type": "SlotTypeContract"
  190. }
  191. ],
  192. "slotName": "Out",
  193. "Descriptor": {
  194. "ConnectionType": 2,
  195. "SlotType": 1
  196. }
  197. }
  198. ],
  199. "m_format": "Signup Fail",
  200. "m_unresolvedString": [
  201. "Signup Fail"
  202. ]
  203. }
  204. }
  205. },
  206. {
  207. "Id": {
  208. "id": 40370663715638
  209. },
  210. "Name": "SC-Node(Print)",
  211. "Components": {
  212. "Component_[17066281136316039638]": {
  213. "$type": "Print",
  214. "Id": 17066281136316039638,
  215. "Slots": [
  216. {
  217. "id": {
  218. "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}"
  219. },
  220. "contracts": [
  221. {
  222. "$type": "SlotTypeContract"
  223. }
  224. ],
  225. "slotName": "In",
  226. "toolTip": "Input signal",
  227. "Descriptor": {
  228. "ConnectionType": 1,
  229. "SlotType": 1
  230. }
  231. },
  232. {
  233. "id": {
  234. "m_id": "{6BFF8DF8-6D3B-47AD-8A6A-CCEAAC7B0B26}"
  235. },
  236. "contracts": [
  237. {
  238. "$type": "SlotTypeContract"
  239. }
  240. ],
  241. "slotName": "Out",
  242. "Descriptor": {
  243. "ConnectionType": 2,
  244. "SlotType": 1
  245. }
  246. }
  247. ],
  248. "m_format": "Signup Success",
  249. "m_unresolvedString": [
  250. "Signup Success"
  251. ]
  252. }
  253. }
  254. },
  255. {
  256. "Id": {
  257. "id": 40400728486710
  258. },
  259. "Name": "EBusEventHandler",
  260. "Components": {
  261. "Component_[3253175345351481273]": {
  262. "$type": "EBusEventHandler",
  263. "Id": 3253175345351481273,
  264. "Slots": [
  265. {
  266. "id": {
  267. "m_id": "{1C7259B4-0505-48A2-B942-55CFBAE0F40D}"
  268. },
  269. "contracts": [
  270. {
  271. "$type": "SlotTypeContract"
  272. }
  273. ],
  274. "slotName": "Connect",
  275. "toolTip": "Connect this event handler to the specified entity.",
  276. "Descriptor": {
  277. "ConnectionType": 1,
  278. "SlotType": 1
  279. }
  280. },
  281. {
  282. "id": {
  283. "m_id": "{274A7EFC-3117-4533-9F4D-814BB5E3A28C}"
  284. },
  285. "contracts": [
  286. {
  287. "$type": "SlotTypeContract"
  288. }
  289. ],
  290. "slotName": "Disconnect",
  291. "toolTip": "Disconnect this event handler.",
  292. "Descriptor": {
  293. "ConnectionType": 1,
  294. "SlotType": 1
  295. }
  296. },
  297. {
  298. "id": {
  299. "m_id": "{37273EA1-C478-455A-8D8A-49BA9311B3D8}"
  300. },
  301. "contracts": [
  302. {
  303. "$type": "SlotTypeContract"
  304. }
  305. ],
  306. "slotName": "OnConnected",
  307. "toolTip": "Signaled when a connection has taken place.",
  308. "Descriptor": {
  309. "ConnectionType": 2,
  310. "SlotType": 1
  311. }
  312. },
  313. {
  314. "id": {
  315. "m_id": "{F66434BA-1E32-412A-9045-A4331871112B}"
  316. },
  317. "contracts": [
  318. {
  319. "$type": "SlotTypeContract"
  320. }
  321. ],
  322. "slotName": "OnDisconnected",
  323. "toolTip": "Signaled when this event handler is disconnected.",
  324. "Descriptor": {
  325. "ConnectionType": 2,
  326. "SlotType": 1
  327. }
  328. },
  329. {
  330. "id": {
  331. "m_id": "{69CD56BC-D598-4D76-83E1-1F1A9B6A9058}"
  332. },
  333. "contracts": [
  334. {
  335. "$type": "SlotTypeContract"
  336. }
  337. ],
  338. "slotName": "OnFailure",
  339. "toolTip": "Signaled when it is not possible to connect this handler.",
  340. "Descriptor": {
  341. "ConnectionType": 2,
  342. "SlotType": 1
  343. }
  344. },
  345. {
  346. "id": {
  347. "m_id": "{1D2D3BD0-1165-45A6-8310-3AB4E58513F5}"
  348. },
  349. "contracts": [
  350. {
  351. "$type": "SlotTypeContract"
  352. }
  353. ],
  354. "slotName": "String",
  355. "DisplayDataType": {
  356. "m_type": 5
  357. },
  358. "Descriptor": {
  359. "ConnectionType": 2,
  360. "SlotType": 2
  361. },
  362. "DataType": 1
  363. },
  364. {
  365. "id": {
  366. "m_id": "{6AA62561-DA82-4797-9DC4-615AB767F828}"
  367. },
  368. "contracts": [
  369. {
  370. "$type": "SlotTypeContract"
  371. }
  372. ],
  373. "slotName": "ExecutionSlot:OnEmailSignUpSuccess",
  374. "Descriptor": {
  375. "ConnectionType": 2,
  376. "SlotType": 1
  377. },
  378. "IsLatent": true
  379. },
  380. {
  381. "id": {
  382. "m_id": "{6C1ECF44-14DE-4A96-A8BD-E317C80438C6}"
  383. },
  384. "contracts": [
  385. {
  386. "$type": "SlotTypeContract"
  387. }
  388. ],
  389. "slotName": "String",
  390. "DisplayDataType": {
  391. "m_type": 5
  392. },
  393. "Descriptor": {
  394. "ConnectionType": 2,
  395. "SlotType": 2
  396. },
  397. "DataType": 1
  398. },
  399. {
  400. "id": {
  401. "m_id": "{373F06F3-3019-469D-9668-B312D3E29617}"
  402. },
  403. "contracts": [
  404. {
  405. "$type": "SlotTypeContract"
  406. }
  407. ],
  408. "slotName": "ExecutionSlot:OnEmailSignUpFail",
  409. "Descriptor": {
  410. "ConnectionType": 2,
  411. "SlotType": 1
  412. },
  413. "IsLatent": true
  414. },
  415. {
  416. "id": {
  417. "m_id": "{526BB736-AF73-4874-AB1F-5A31E32599E0}"
  418. },
  419. "contracts": [
  420. {
  421. "$type": "SlotTypeContract"
  422. }
  423. ],
  424. "slotName": "String",
  425. "DisplayDataType": {
  426. "m_type": 5
  427. },
  428. "Descriptor": {
  429. "ConnectionType": 2,
  430. "SlotType": 2
  431. },
  432. "DataType": 1
  433. },
  434. {
  435. "id": {
  436. "m_id": "{B156FBD5-F8D1-4856-9ED4-B39C0C2F1FBE}"
  437. },
  438. "contracts": [
  439. {
  440. "$type": "SlotTypeContract"
  441. }
  442. ],
  443. "slotName": "ExecutionSlot:OnPhoneSignUpSuccess",
  444. "Descriptor": {
  445. "ConnectionType": 2,
  446. "SlotType": 1
  447. },
  448. "IsLatent": true
  449. },
  450. {
  451. "id": {
  452. "m_id": "{1CABB198-AE36-4929-A562-2C87F7A90946}"
  453. },
  454. "contracts": [
  455. {
  456. "$type": "SlotTypeContract"
  457. }
  458. ],
  459. "slotName": "String",
  460. "DisplayDataType": {
  461. "m_type": 5
  462. },
  463. "Descriptor": {
  464. "ConnectionType": 2,
  465. "SlotType": 2
  466. },
  467. "DataType": 1
  468. },
  469. {
  470. "id": {
  471. "m_id": "{BF5D1487-52AB-484E-B3A8-254126BCFBC8}"
  472. },
  473. "contracts": [
  474. {
  475. "$type": "SlotTypeContract"
  476. }
  477. ],
  478. "slotName": "ExecutionSlot:OnPhoneSignUpFail",
  479. "Descriptor": {
  480. "ConnectionType": 2,
  481. "SlotType": 1
  482. },
  483. "IsLatent": true
  484. },
  485. {
  486. "id": {
  487. "m_id": "{E1E14BF9-5FC4-46F7-9284-BD971D6FBC7B}"
  488. },
  489. "contracts": [
  490. {
  491. "$type": "SlotTypeContract"
  492. }
  493. ],
  494. "slotName": "ExecutionSlot:OnConfirmSignUpSuccess",
  495. "Descriptor": {
  496. "ConnectionType": 2,
  497. "SlotType": 1
  498. },
  499. "IsLatent": true
  500. },
  501. {
  502. "id": {
  503. "m_id": "{B3E9DEFA-DD55-495C-BCBD-BBB64C2F40E6}"
  504. },
  505. "contracts": [
  506. {
  507. "$type": "SlotTypeContract"
  508. }
  509. ],
  510. "slotName": "String",
  511. "DisplayDataType": {
  512. "m_type": 5
  513. },
  514. "Descriptor": {
  515. "ConnectionType": 2,
  516. "SlotType": 2
  517. },
  518. "DataType": 1
  519. },
  520. {
  521. "id": {
  522. "m_id": "{E8B771CC-6CB6-4A6F-9642-123E6A62BC39}"
  523. },
  524. "contracts": [
  525. {
  526. "$type": "SlotTypeContract"
  527. }
  528. ],
  529. "slotName": "ExecutionSlot:OnConfirmSignUpFail",
  530. "Descriptor": {
  531. "ConnectionType": 2,
  532. "SlotType": 1
  533. },
  534. "IsLatent": true
  535. },
  536. {
  537. "id": {
  538. "m_id": "{52C45020-B7A6-452C-9624-0BA2CE4675A8}"
  539. },
  540. "contracts": [
  541. {
  542. "$type": "SlotTypeContract"
  543. }
  544. ],
  545. "slotName": "ExecutionSlot:OnForgotPasswordSuccess",
  546. "Descriptor": {
  547. "ConnectionType": 2,
  548. "SlotType": 1
  549. },
  550. "IsLatent": true
  551. },
  552. {
  553. "id": {
  554. "m_id": "{61352C5D-E634-4E36-86AE-95B0AA0C67F1}"
  555. },
  556. "contracts": [
  557. {
  558. "$type": "SlotTypeContract"
  559. }
  560. ],
  561. "slotName": "String",
  562. "DisplayDataType": {
  563. "m_type": 5
  564. },
  565. "Descriptor": {
  566. "ConnectionType": 2,
  567. "SlotType": 2
  568. },
  569. "DataType": 1
  570. },
  571. {
  572. "id": {
  573. "m_id": "{C4F9C1F5-8CE0-4FAB-8068-2CDACDFBC7FB}"
  574. },
  575. "contracts": [
  576. {
  577. "$type": "SlotTypeContract"
  578. }
  579. ],
  580. "slotName": "ExecutionSlot:OnForgotPasswordFail",
  581. "Descriptor": {
  582. "ConnectionType": 2,
  583. "SlotType": 1
  584. },
  585. "IsLatent": true
  586. },
  587. {
  588. "id": {
  589. "m_id": "{5AB5FB72-2D60-45C6-B2F2-6509AF91DCAF}"
  590. },
  591. "contracts": [
  592. {
  593. "$type": "SlotTypeContract"
  594. }
  595. ],
  596. "slotName": "ExecutionSlot:OnConfirmForgotPasswordSuccess",
  597. "Descriptor": {
  598. "ConnectionType": 2,
  599. "SlotType": 1
  600. },
  601. "IsLatent": true
  602. },
  603. {
  604. "id": {
  605. "m_id": "{AA2660EA-141C-43E0-9B05-E233CF7637B9}"
  606. },
  607. "contracts": [
  608. {
  609. "$type": "SlotTypeContract"
  610. }
  611. ],
  612. "slotName": "String",
  613. "DisplayDataType": {
  614. "m_type": 5
  615. },
  616. "Descriptor": {
  617. "ConnectionType": 2,
  618. "SlotType": 2
  619. },
  620. "DataType": 1
  621. },
  622. {
  623. "id": {
  624. "m_id": "{6FF2A7E9-1716-47BC-97D6-77E7B108058A}"
  625. },
  626. "contracts": [
  627. {
  628. "$type": "SlotTypeContract"
  629. }
  630. ],
  631. "slotName": "ExecutionSlot:OnConfirmForgotPasswordFail",
  632. "Descriptor": {
  633. "ConnectionType": 2,
  634. "SlotType": 1
  635. },
  636. "IsLatent": true
  637. },
  638. {
  639. "id": {
  640. "m_id": "{D50F225E-0251-4E45-B261-D66E11F8E259}"
  641. },
  642. "contracts": [
  643. {
  644. "$type": "SlotTypeContract"
  645. }
  646. ],
  647. "slotName": "ExecutionSlot:OnEnableMFASuccess",
  648. "Descriptor": {
  649. "ConnectionType": 2,
  650. "SlotType": 1
  651. },
  652. "IsLatent": true
  653. },
  654. {
  655. "id": {
  656. "m_id": "{6926905E-56CF-424A-BD39-07CAC731CEE2}"
  657. },
  658. "contracts": [
  659. {
  660. "$type": "SlotTypeContract"
  661. }
  662. ],
  663. "slotName": "String",
  664. "DisplayDataType": {
  665. "m_type": 5
  666. },
  667. "Descriptor": {
  668. "ConnectionType": 2,
  669. "SlotType": 2
  670. },
  671. "DataType": 1
  672. },
  673. {
  674. "id": {
  675. "m_id": "{D8F3BE2B-E240-4AA3-BD3F-AECE3BA146B0}"
  676. },
  677. "contracts": [
  678. {
  679. "$type": "SlotTypeContract"
  680. }
  681. ],
  682. "slotName": "ExecutionSlot:OnEnableMFAFail",
  683. "Descriptor": {
  684. "ConnectionType": 2,
  685. "SlotType": 1
  686. },
  687. "IsLatent": true
  688. }
  689. ],
  690. "m_eventMap": [
  691. {
  692. "Key": {
  693. "Value": 91595643
  694. },
  695. "Value": {
  696. "m_eventName": "OnEnableMFAFail",
  697. "m_eventId": {
  698. "Value": 91595643
  699. },
  700. "m_eventSlotId": {
  701. "m_id": "{D8F3BE2B-E240-4AA3-BD3F-AECE3BA146B0}"
  702. },
  703. "m_parameterSlotIds": [
  704. {
  705. "m_id": "{6926905E-56CF-424A-BD39-07CAC731CEE2}"
  706. }
  707. ],
  708. "m_numExpectedArguments": 1
  709. }
  710. },
  711. {
  712. "Key": {
  713. "Value": 263629761
  714. },
  715. "Value": {
  716. "m_eventName": "OnPhoneSignUpSuccess",
  717. "m_eventId": {
  718. "Value": 263629761
  719. },
  720. "m_eventSlotId": {
  721. "m_id": "{B156FBD5-F8D1-4856-9ED4-B39C0C2F1FBE}"
  722. },
  723. "m_parameterSlotIds": [
  724. {
  725. "m_id": "{526BB736-AF73-4874-AB1F-5A31E32599E0}"
  726. }
  727. ],
  728. "m_numExpectedArguments": 1
  729. }
  730. },
  731. {
  732. "Key": {
  733. "Value": 545635257
  734. },
  735. "Value": {
  736. "m_eventName": "OnConfirmForgotPasswordFail",
  737. "m_eventId": {
  738. "Value": 545635257
  739. },
  740. "m_eventSlotId": {
  741. "m_id": "{6FF2A7E9-1716-47BC-97D6-77E7B108058A}"
  742. },
  743. "m_parameterSlotIds": [
  744. {
  745. "m_id": "{AA2660EA-141C-43E0-9B05-E233CF7637B9}"
  746. }
  747. ],
  748. "m_numExpectedArguments": 1
  749. }
  750. },
  751. {
  752. "Key": {
  753. "Value": 613710915
  754. },
  755. "Value": {
  756. "m_eventName": "OnEmailSignUpSuccess",
  757. "m_eventId": {
  758. "Value": 613710915
  759. },
  760. "m_eventSlotId": {
  761. "m_id": "{6AA62561-DA82-4797-9DC4-615AB767F828}"
  762. },
  763. "m_parameterSlotIds": [
  764. {
  765. "m_id": "{1D2D3BD0-1165-45A6-8310-3AB4E58513F5}"
  766. }
  767. ],
  768. "m_numExpectedArguments": 1
  769. }
  770. },
  771. {
  772. "Key": {
  773. "Value": 885366379
  774. },
  775. "Value": {
  776. "m_eventName": "OnForgotPasswordSuccess",
  777. "m_eventId": {
  778. "Value": 885366379
  779. },
  780. "m_eventSlotId": {
  781. "m_id": "{52C45020-B7A6-452C-9624-0BA2CE4675A8}"
  782. }
  783. }
  784. },
  785. {
  786. "Key": {
  787. "Value": 1053871188
  788. },
  789. "Value": {
  790. "m_eventName": "OnEnableMFASuccess",
  791. "m_eventId": {
  792. "Value": 1053871188
  793. },
  794. "m_eventSlotId": {
  795. "m_id": "{D50F225E-0251-4E45-B261-D66E11F8E259}"
  796. }
  797. }
  798. },
  799. {
  800. "Key": {
  801. "Value": 1936419598
  802. },
  803. "Value": {
  804. "m_eventName": "OnConfirmSignUpFail",
  805. "m_eventId": {
  806. "Value": 1936419598
  807. },
  808. "m_eventSlotId": {
  809. "m_id": "{E8B771CC-6CB6-4A6F-9642-123E6A62BC39}"
  810. },
  811. "m_parameterSlotIds": [
  812. {
  813. "m_id": "{B3E9DEFA-DD55-495C-BCBD-BBB64C2F40E6}"
  814. }
  815. ],
  816. "m_numExpectedArguments": 1
  817. }
  818. },
  819. {
  820. "Key": {
  821. "Value": 2472403994
  822. },
  823. "Value": {
  824. "m_eventName": "OnConfirmForgotPasswordSuccess",
  825. "m_eventId": {
  826. "Value": 2472403994
  827. },
  828. "m_eventSlotId": {
  829. "m_id": "{5AB5FB72-2D60-45C6-B2F2-6509AF91DCAF}"
  830. }
  831. }
  832. },
  833. {
  834. "Key": {
  835. "Value": 2512783036
  836. },
  837. "Value": {
  838. "m_eventName": "OnConfirmSignUpSuccess",
  839. "m_eventId": {
  840. "Value": 2512783036
  841. },
  842. "m_eventSlotId": {
  843. "m_id": "{E1E14BF9-5FC4-46F7-9284-BD971D6FBC7B}"
  844. }
  845. }
  846. },
  847. {
  848. "Key": {
  849. "Value": 3917632075
  850. },
  851. "Value": {
  852. "m_eventName": "OnForgotPasswordFail",
  853. "m_eventId": {
  854. "Value": 3917632075
  855. },
  856. "m_eventSlotId": {
  857. "m_id": "{C4F9C1F5-8CE0-4FAB-8068-2CDACDFBC7FB}"
  858. },
  859. "m_parameterSlotIds": [
  860. {
  861. "m_id": "{61352C5D-E634-4E36-86AE-95B0AA0C67F1}"
  862. }
  863. ],
  864. "m_numExpectedArguments": 1
  865. }
  866. },
  867. {
  868. "Key": {
  869. "Value": 4207060091
  870. },
  871. "Value": {
  872. "m_eventName": "OnEmailSignUpFail",
  873. "m_eventId": {
  874. "Value": 4207060091
  875. },
  876. "m_eventSlotId": {
  877. "m_id": "{373F06F3-3019-469D-9668-B312D3E29617}"
  878. },
  879. "m_parameterSlotIds": [
  880. {
  881. "m_id": "{6C1ECF44-14DE-4A96-A8BD-E317C80438C6}"
  882. }
  883. ],
  884. "m_numExpectedArguments": 1
  885. }
  886. },
  887. {
  888. "Key": {
  889. "Value": 4239863912
  890. },
  891. "Value": {
  892. "m_eventName": "OnPhoneSignUpFail",
  893. "m_eventId": {
  894. "Value": 4239863912
  895. },
  896. "m_eventSlotId": {
  897. "m_id": "{BF5D1487-52AB-484E-B3A8-254126BCFBC8}"
  898. },
  899. "m_parameterSlotIds": [
  900. {
  901. "m_id": "{1CABB198-AE36-4929-A562-2C87F7A90946}"
  902. }
  903. ],
  904. "m_numExpectedArguments": 1
  905. }
  906. }
  907. ],
  908. "m_ebusName": "AWSCognitoUserManagementNotificationBus",
  909. "m_busId": {
  910. "Value": 447348268
  911. }
  912. }
  913. }
  914. },
  915. {
  916. "Id": {
  917. "id": 40383548617526
  918. },
  919. "Name": "SC-Node(EmailSignUpAsync)",
  920. "Components": {
  921. "Component_[3828998640319414642]": {
  922. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  923. "Id": 3828998640319414642,
  924. "Slots": [
  925. {
  926. "id": {
  927. "m_id": "{E27599AA-ECCC-479A-98BF-48AEE61B2555}"
  928. },
  929. "contracts": [
  930. {
  931. "$type": "SlotTypeContract"
  932. },
  933. null
  934. ],
  935. "slotName": "String: 0",
  936. "Descriptor": {
  937. "ConnectionType": 1,
  938. "SlotType": 2
  939. },
  940. "DataType": 1
  941. },
  942. {
  943. "id": {
  944. "m_id": "{402E454D-087A-4B52-8559-0B4094339424}"
  945. },
  946. "contracts": [
  947. {
  948. "$type": "SlotTypeContract"
  949. },
  950. null
  951. ],
  952. "slotName": "String: 1",
  953. "Descriptor": {
  954. "ConnectionType": 1,
  955. "SlotType": 2
  956. },
  957. "DataType": 1
  958. },
  959. {
  960. "id": {
  961. "m_id": "{37232683-A75B-40D3-BD2C-ACBF718622AC}"
  962. },
  963. "contracts": [
  964. {
  965. "$type": "SlotTypeContract"
  966. },
  967. null
  968. ],
  969. "slotName": "String: 2",
  970. "Descriptor": {
  971. "ConnectionType": 1,
  972. "SlotType": 2
  973. },
  974. "DataType": 1
  975. },
  976. {
  977. "id": {
  978. "m_id": "{A0AF5A68-C8DD-4219-894A-4D7AF713FDFE}"
  979. },
  980. "contracts": [
  981. {
  982. "$type": "SlotTypeContract"
  983. }
  984. ],
  985. "slotName": "In",
  986. "Descriptor": {
  987. "ConnectionType": 1,
  988. "SlotType": 1
  989. }
  990. },
  991. {
  992. "id": {
  993. "m_id": "{49E3F422-E17F-4540-8C55-CDDB3F8AB04D}"
  994. },
  995. "contracts": [
  996. {
  997. "$type": "SlotTypeContract"
  998. }
  999. ],
  1000. "slotName": "Out",
  1001. "Descriptor": {
  1002. "ConnectionType": 2,
  1003. "SlotType": 1
  1004. }
  1005. }
  1006. ],
  1007. "Datums": [
  1008. {
  1009. "isOverloadedStorage": false,
  1010. "scriptCanvasType": {
  1011. "m_type": 5
  1012. },
  1013. "isNullPointer": false,
  1014. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1015. "value": "test1",
  1016. "label": "String: 0"
  1017. },
  1018. {
  1019. "isOverloadedStorage": false,
  1020. "scriptCanvasType": {
  1021. "m_type": 5
  1022. },
  1023. "isNullPointer": false,
  1024. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1025. "value": "Test1test1!",
  1026. "label": "String: 1"
  1027. },
  1028. {
  1029. "isOverloadedStorage": false,
  1030. "scriptCanvasType": {
  1031. "m_type": 5
  1032. },
  1033. "isNullPointer": false,
  1034. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1035. "value": "test@test.com",
  1036. "label": "String: 2"
  1037. }
  1038. ],
  1039. "methodType": 0,
  1040. "methodName": "EmailSignUpAsync",
  1041. "className": "AWSCognitoUserManagementRequestBus",
  1042. "resultSlotIDs": [
  1043. {}
  1044. ],
  1045. "prettyClassName": "AWSCognitoUserManagementRequestBus"
  1046. }
  1047. }
  1048. },
  1049. {
  1050. "Id": {
  1051. "id": 40374958682934
  1052. },
  1053. "Name": "EBusEventHandler",
  1054. "Components": {
  1055. "Component_[6190924263230371473]": {
  1056. "$type": "EBusEventHandler",
  1057. "Id": 6190924263230371473,
  1058. "Slots": [
  1059. {
  1060. "id": {
  1061. "m_id": "{0D5A6F1C-B9DA-4B49-8A54-1E6C2A959643}"
  1062. },
  1063. "contracts": [
  1064. {
  1065. "$type": "SlotTypeContract"
  1066. }
  1067. ],
  1068. "slotName": "Connect",
  1069. "toolTip": "Connect this event handler to the specified entity.",
  1070. "Descriptor": {
  1071. "ConnectionType": 1,
  1072. "SlotType": 1
  1073. }
  1074. },
  1075. {
  1076. "id": {
  1077. "m_id": "{6F93EEBD-6EE6-4204-8B56-4D3F17FC74AD}"
  1078. },
  1079. "contracts": [
  1080. {
  1081. "$type": "SlotTypeContract"
  1082. }
  1083. ],
  1084. "slotName": "Disconnect",
  1085. "toolTip": "Disconnect this event handler.",
  1086. "Descriptor": {
  1087. "ConnectionType": 1,
  1088. "SlotType": 1
  1089. }
  1090. },
  1091. {
  1092. "id": {
  1093. "m_id": "{41DFB9B0-EDFA-4DE6-B0EB-E6C8F6A9ED89}"
  1094. },
  1095. "contracts": [
  1096. {
  1097. "$type": "SlotTypeContract"
  1098. }
  1099. ],
  1100. "slotName": "OnConnected",
  1101. "toolTip": "Signaled when a connection has taken place.",
  1102. "Descriptor": {
  1103. "ConnectionType": 2,
  1104. "SlotType": 1
  1105. }
  1106. },
  1107. {
  1108. "id": {
  1109. "m_id": "{556C7487-6211-4173-8284-51479E4C8EF7}"
  1110. },
  1111. "contracts": [
  1112. {
  1113. "$type": "SlotTypeContract"
  1114. }
  1115. ],
  1116. "slotName": "OnDisconnected",
  1117. "toolTip": "Signaled when this event handler is disconnected.",
  1118. "Descriptor": {
  1119. "ConnectionType": 2,
  1120. "SlotType": 1
  1121. }
  1122. },
  1123. {
  1124. "id": {
  1125. "m_id": "{FC800E36-B7D5-46AE-920A-0A18A2D17EB2}"
  1126. },
  1127. "contracts": [
  1128. {
  1129. "$type": "SlotTypeContract"
  1130. }
  1131. ],
  1132. "slotName": "OnFailure",
  1133. "toolTip": "Signaled when it is not possible to connect this handler.",
  1134. "Descriptor": {
  1135. "ConnectionType": 2,
  1136. "SlotType": 1
  1137. }
  1138. },
  1139. {
  1140. "id": {
  1141. "m_id": "{5F4DB496-438B-4ED5-96A0-904FE5FAC305}"
  1142. },
  1143. "contracts": [
  1144. {
  1145. "$type": "SlotTypeContract"
  1146. }
  1147. ],
  1148. "slotName": "String",
  1149. "DisplayDataType": {
  1150. "m_type": 5
  1151. },
  1152. "Descriptor": {
  1153. "ConnectionType": 2,
  1154. "SlotType": 2
  1155. },
  1156. "DataType": 1
  1157. },
  1158. {
  1159. "id": {
  1160. "m_id": "{B24F20EF-0119-4BF3-86DF-AD101B534F6C}"
  1161. },
  1162. "contracts": [
  1163. {
  1164. "$type": "SlotTypeContract"
  1165. }
  1166. ],
  1167. "slotName": "ExecutionSlot:OnEmailSignUpSuccess",
  1168. "Descriptor": {
  1169. "ConnectionType": 2,
  1170. "SlotType": 1
  1171. },
  1172. "IsLatent": true
  1173. },
  1174. {
  1175. "id": {
  1176. "m_id": "{BA735BFB-DE2B-429A-BEE9-59BA712F5F9F}"
  1177. },
  1178. "contracts": [
  1179. {
  1180. "$type": "SlotTypeContract"
  1181. }
  1182. ],
  1183. "slotName": "String",
  1184. "DisplayDataType": {
  1185. "m_type": 5
  1186. },
  1187. "Descriptor": {
  1188. "ConnectionType": 2,
  1189. "SlotType": 2
  1190. },
  1191. "DataType": 1
  1192. },
  1193. {
  1194. "id": {
  1195. "m_id": "{7EC15743-5DA5-4F9F-BF26-318CFAD73C48}"
  1196. },
  1197. "contracts": [
  1198. {
  1199. "$type": "SlotTypeContract"
  1200. }
  1201. ],
  1202. "slotName": "ExecutionSlot:OnEmailSignUpFail",
  1203. "Descriptor": {
  1204. "ConnectionType": 2,
  1205. "SlotType": 1
  1206. },
  1207. "IsLatent": true
  1208. },
  1209. {
  1210. "id": {
  1211. "m_id": "{4A63B81E-A64D-448A-AAC5-F232393F3239}"
  1212. },
  1213. "contracts": [
  1214. {
  1215. "$type": "SlotTypeContract"
  1216. }
  1217. ],
  1218. "slotName": "String",
  1219. "DisplayDataType": {
  1220. "m_type": 5
  1221. },
  1222. "Descriptor": {
  1223. "ConnectionType": 2,
  1224. "SlotType": 2
  1225. },
  1226. "DataType": 1
  1227. },
  1228. {
  1229. "id": {
  1230. "m_id": "{694A22A4-0218-40EB-BC46-91F14C7A5691}"
  1231. },
  1232. "contracts": [
  1233. {
  1234. "$type": "SlotTypeContract"
  1235. }
  1236. ],
  1237. "slotName": "ExecutionSlot:OnPhoneSignUpSuccess",
  1238. "Descriptor": {
  1239. "ConnectionType": 2,
  1240. "SlotType": 1
  1241. },
  1242. "IsLatent": true
  1243. },
  1244. {
  1245. "id": {
  1246. "m_id": "{E5EA8BAC-6706-4E56-868A-60EB944EEF59}"
  1247. },
  1248. "contracts": [
  1249. {
  1250. "$type": "SlotTypeContract"
  1251. }
  1252. ],
  1253. "slotName": "String",
  1254. "DisplayDataType": {
  1255. "m_type": 5
  1256. },
  1257. "Descriptor": {
  1258. "ConnectionType": 2,
  1259. "SlotType": 2
  1260. },
  1261. "DataType": 1
  1262. },
  1263. {
  1264. "id": {
  1265. "m_id": "{F1DA9F8C-99A5-4604-A2EF-36AA7E2F29D8}"
  1266. },
  1267. "contracts": [
  1268. {
  1269. "$type": "SlotTypeContract"
  1270. }
  1271. ],
  1272. "slotName": "ExecutionSlot:OnPhoneSignUpFail",
  1273. "Descriptor": {
  1274. "ConnectionType": 2,
  1275. "SlotType": 1
  1276. },
  1277. "IsLatent": true
  1278. },
  1279. {
  1280. "id": {
  1281. "m_id": "{2A9AD20F-7C0F-4BCD-AE49-59763368ADF3}"
  1282. },
  1283. "contracts": [
  1284. {
  1285. "$type": "SlotTypeContract"
  1286. }
  1287. ],
  1288. "slotName": "ExecutionSlot:OnConfirmSignUpSuccess",
  1289. "Descriptor": {
  1290. "ConnectionType": 2,
  1291. "SlotType": 1
  1292. },
  1293. "IsLatent": true
  1294. },
  1295. {
  1296. "id": {
  1297. "m_id": "{708EA595-441A-4BED-B753-D612F9D8D48C}"
  1298. },
  1299. "contracts": [
  1300. {
  1301. "$type": "SlotTypeContract"
  1302. }
  1303. ],
  1304. "slotName": "String",
  1305. "DisplayDataType": {
  1306. "m_type": 5
  1307. },
  1308. "Descriptor": {
  1309. "ConnectionType": 2,
  1310. "SlotType": 2
  1311. },
  1312. "DataType": 1
  1313. },
  1314. {
  1315. "id": {
  1316. "m_id": "{7AA88F7B-82B5-4EB6-BD6F-67C7662A5E53}"
  1317. },
  1318. "contracts": [
  1319. {
  1320. "$type": "SlotTypeContract"
  1321. }
  1322. ],
  1323. "slotName": "ExecutionSlot:OnConfirmSignUpFail",
  1324. "Descriptor": {
  1325. "ConnectionType": 2,
  1326. "SlotType": 1
  1327. },
  1328. "IsLatent": true
  1329. },
  1330. {
  1331. "id": {
  1332. "m_id": "{2E3F658E-D482-49EA-9F96-C7421D85E490}"
  1333. },
  1334. "contracts": [
  1335. {
  1336. "$type": "SlotTypeContract"
  1337. }
  1338. ],
  1339. "slotName": "ExecutionSlot:OnForgotPasswordSuccess",
  1340. "Descriptor": {
  1341. "ConnectionType": 2,
  1342. "SlotType": 1
  1343. },
  1344. "IsLatent": true
  1345. },
  1346. {
  1347. "id": {
  1348. "m_id": "{72F9D996-4A42-4740-A1F1-40CF2A922558}"
  1349. },
  1350. "contracts": [
  1351. {
  1352. "$type": "SlotTypeContract"
  1353. }
  1354. ],
  1355. "slotName": "String",
  1356. "DisplayDataType": {
  1357. "m_type": 5
  1358. },
  1359. "Descriptor": {
  1360. "ConnectionType": 2,
  1361. "SlotType": 2
  1362. },
  1363. "DataType": 1
  1364. },
  1365. {
  1366. "id": {
  1367. "m_id": "{16098C3C-67EF-456D-8CEC-3E447D25FBE9}"
  1368. },
  1369. "contracts": [
  1370. {
  1371. "$type": "SlotTypeContract"
  1372. }
  1373. ],
  1374. "slotName": "ExecutionSlot:OnForgotPasswordFail",
  1375. "Descriptor": {
  1376. "ConnectionType": 2,
  1377. "SlotType": 1
  1378. },
  1379. "IsLatent": true
  1380. },
  1381. {
  1382. "id": {
  1383. "m_id": "{3DA27A98-45AF-4A95-87CE-65D7A2C415A5}"
  1384. },
  1385. "contracts": [
  1386. {
  1387. "$type": "SlotTypeContract"
  1388. }
  1389. ],
  1390. "slotName": "ExecutionSlot:OnConfirmForgotPasswordSuccess",
  1391. "Descriptor": {
  1392. "ConnectionType": 2,
  1393. "SlotType": 1
  1394. },
  1395. "IsLatent": true
  1396. },
  1397. {
  1398. "id": {
  1399. "m_id": "{593C97CF-5549-4E7B-8303-4FC61575BDD8}"
  1400. },
  1401. "contracts": [
  1402. {
  1403. "$type": "SlotTypeContract"
  1404. }
  1405. ],
  1406. "slotName": "String",
  1407. "DisplayDataType": {
  1408. "m_type": 5
  1409. },
  1410. "Descriptor": {
  1411. "ConnectionType": 2,
  1412. "SlotType": 2
  1413. },
  1414. "DataType": 1
  1415. },
  1416. {
  1417. "id": {
  1418. "m_id": "{CE9ED266-ACD3-4182-A63A-D989B204781B}"
  1419. },
  1420. "contracts": [
  1421. {
  1422. "$type": "SlotTypeContract"
  1423. }
  1424. ],
  1425. "slotName": "ExecutionSlot:OnConfirmForgotPasswordFail",
  1426. "Descriptor": {
  1427. "ConnectionType": 2,
  1428. "SlotType": 1
  1429. },
  1430. "IsLatent": true
  1431. },
  1432. {
  1433. "id": {
  1434. "m_id": "{C1BC60F1-4BE6-425D-AB01-B500171F095D}"
  1435. },
  1436. "contracts": [
  1437. {
  1438. "$type": "SlotTypeContract"
  1439. }
  1440. ],
  1441. "slotName": "ExecutionSlot:OnEnableMFASuccess",
  1442. "Descriptor": {
  1443. "ConnectionType": 2,
  1444. "SlotType": 1
  1445. },
  1446. "IsLatent": true
  1447. },
  1448. {
  1449. "id": {
  1450. "m_id": "{B884A8B1-7037-46A9-8C62-0E2D46737C90}"
  1451. },
  1452. "contracts": [
  1453. {
  1454. "$type": "SlotTypeContract"
  1455. }
  1456. ],
  1457. "slotName": "String",
  1458. "DisplayDataType": {
  1459. "m_type": 5
  1460. },
  1461. "Descriptor": {
  1462. "ConnectionType": 2,
  1463. "SlotType": 2
  1464. },
  1465. "DataType": 1
  1466. },
  1467. {
  1468. "id": {
  1469. "m_id": "{1A8274FB-20C8-42B3-B220-098EBEBCA53B}"
  1470. },
  1471. "contracts": [
  1472. {
  1473. "$type": "SlotTypeContract"
  1474. }
  1475. ],
  1476. "slotName": "ExecutionSlot:OnEnableMFAFail",
  1477. "Descriptor": {
  1478. "ConnectionType": 2,
  1479. "SlotType": 1
  1480. },
  1481. "IsLatent": true
  1482. }
  1483. ],
  1484. "m_eventMap": [
  1485. {
  1486. "Key": {
  1487. "Value": 91595643
  1488. },
  1489. "Value": {
  1490. "m_eventName": "OnEnableMFAFail",
  1491. "m_eventId": {
  1492. "Value": 91595643
  1493. },
  1494. "m_eventSlotId": {
  1495. "m_id": "{1A8274FB-20C8-42B3-B220-098EBEBCA53B}"
  1496. },
  1497. "m_parameterSlotIds": [
  1498. {
  1499. "m_id": "{B884A8B1-7037-46A9-8C62-0E2D46737C90}"
  1500. }
  1501. ],
  1502. "m_numExpectedArguments": 1
  1503. }
  1504. },
  1505. {
  1506. "Key": {
  1507. "Value": 263629761
  1508. },
  1509. "Value": {
  1510. "m_eventName": "OnPhoneSignUpSuccess",
  1511. "m_eventId": {
  1512. "Value": 263629761
  1513. },
  1514. "m_eventSlotId": {
  1515. "m_id": "{694A22A4-0218-40EB-BC46-91F14C7A5691}"
  1516. },
  1517. "m_parameterSlotIds": [
  1518. {
  1519. "m_id": "{4A63B81E-A64D-448A-AAC5-F232393F3239}"
  1520. }
  1521. ],
  1522. "m_numExpectedArguments": 1
  1523. }
  1524. },
  1525. {
  1526. "Key": {
  1527. "Value": 545635257
  1528. },
  1529. "Value": {
  1530. "m_eventName": "OnConfirmForgotPasswordFail",
  1531. "m_eventId": {
  1532. "Value": 545635257
  1533. },
  1534. "m_eventSlotId": {
  1535. "m_id": "{CE9ED266-ACD3-4182-A63A-D989B204781B}"
  1536. },
  1537. "m_parameterSlotIds": [
  1538. {
  1539. "m_id": "{593C97CF-5549-4E7B-8303-4FC61575BDD8}"
  1540. }
  1541. ],
  1542. "m_numExpectedArguments": 1
  1543. }
  1544. },
  1545. {
  1546. "Key": {
  1547. "Value": 613710915
  1548. },
  1549. "Value": {
  1550. "m_eventName": "OnEmailSignUpSuccess",
  1551. "m_eventId": {
  1552. "Value": 613710915
  1553. },
  1554. "m_eventSlotId": {
  1555. "m_id": "{B24F20EF-0119-4BF3-86DF-AD101B534F6C}"
  1556. },
  1557. "m_parameterSlotIds": [
  1558. {
  1559. "m_id": "{5F4DB496-438B-4ED5-96A0-904FE5FAC305}"
  1560. }
  1561. ],
  1562. "m_numExpectedArguments": 1
  1563. }
  1564. },
  1565. {
  1566. "Key": {
  1567. "Value": 885366379
  1568. },
  1569. "Value": {
  1570. "m_eventName": "OnForgotPasswordSuccess",
  1571. "m_eventId": {
  1572. "Value": 885366379
  1573. },
  1574. "m_eventSlotId": {
  1575. "m_id": "{2E3F658E-D482-49EA-9F96-C7421D85E490}"
  1576. }
  1577. }
  1578. },
  1579. {
  1580. "Key": {
  1581. "Value": 1053871188
  1582. },
  1583. "Value": {
  1584. "m_eventName": "OnEnableMFASuccess",
  1585. "m_eventId": {
  1586. "Value": 1053871188
  1587. },
  1588. "m_eventSlotId": {
  1589. "m_id": "{C1BC60F1-4BE6-425D-AB01-B500171F095D}"
  1590. }
  1591. }
  1592. },
  1593. {
  1594. "Key": {
  1595. "Value": 1936419598
  1596. },
  1597. "Value": {
  1598. "m_eventName": "OnConfirmSignUpFail",
  1599. "m_eventId": {
  1600. "Value": 1936419598
  1601. },
  1602. "m_eventSlotId": {
  1603. "m_id": "{7AA88F7B-82B5-4EB6-BD6F-67C7662A5E53}"
  1604. },
  1605. "m_parameterSlotIds": [
  1606. {
  1607. "m_id": "{708EA595-441A-4BED-B753-D612F9D8D48C}"
  1608. }
  1609. ],
  1610. "m_numExpectedArguments": 1
  1611. }
  1612. },
  1613. {
  1614. "Key": {
  1615. "Value": 2472403994
  1616. },
  1617. "Value": {
  1618. "m_eventName": "OnConfirmForgotPasswordSuccess",
  1619. "m_eventId": {
  1620. "Value": 2472403994
  1621. },
  1622. "m_eventSlotId": {
  1623. "m_id": "{3DA27A98-45AF-4A95-87CE-65D7A2C415A5}"
  1624. }
  1625. }
  1626. },
  1627. {
  1628. "Key": {
  1629. "Value": 2512783036
  1630. },
  1631. "Value": {
  1632. "m_eventName": "OnConfirmSignUpSuccess",
  1633. "m_eventId": {
  1634. "Value": 2512783036
  1635. },
  1636. "m_eventSlotId": {
  1637. "m_id": "{2A9AD20F-7C0F-4BCD-AE49-59763368ADF3}"
  1638. }
  1639. }
  1640. },
  1641. {
  1642. "Key": {
  1643. "Value": 3917632075
  1644. },
  1645. "Value": {
  1646. "m_eventName": "OnForgotPasswordFail",
  1647. "m_eventId": {
  1648. "Value": 3917632075
  1649. },
  1650. "m_eventSlotId": {
  1651. "m_id": "{16098C3C-67EF-456D-8CEC-3E447D25FBE9}"
  1652. },
  1653. "m_parameterSlotIds": [
  1654. {
  1655. "m_id": "{72F9D996-4A42-4740-A1F1-40CF2A922558}"
  1656. }
  1657. ],
  1658. "m_numExpectedArguments": 1
  1659. }
  1660. },
  1661. {
  1662. "Key": {
  1663. "Value": 4207060091
  1664. },
  1665. "Value": {
  1666. "m_eventName": "OnEmailSignUpFail",
  1667. "m_eventId": {
  1668. "Value": 4207060091
  1669. },
  1670. "m_eventSlotId": {
  1671. "m_id": "{7EC15743-5DA5-4F9F-BF26-318CFAD73C48}"
  1672. },
  1673. "m_parameterSlotIds": [
  1674. {
  1675. "m_id": "{BA735BFB-DE2B-429A-BEE9-59BA712F5F9F}"
  1676. }
  1677. ],
  1678. "m_numExpectedArguments": 1
  1679. }
  1680. },
  1681. {
  1682. "Key": {
  1683. "Value": 4239863912
  1684. },
  1685. "Value": {
  1686. "m_eventName": "OnPhoneSignUpFail",
  1687. "m_eventId": {
  1688. "Value": 4239863912
  1689. },
  1690. "m_eventSlotId": {
  1691. "m_id": "{F1DA9F8C-99A5-4604-A2EF-36AA7E2F29D8}"
  1692. },
  1693. "m_parameterSlotIds": [
  1694. {
  1695. "m_id": "{E5EA8BAC-6706-4E56-868A-60EB944EEF59}"
  1696. }
  1697. ],
  1698. "m_numExpectedArguments": 1
  1699. }
  1700. }
  1701. ],
  1702. "m_ebusName": "AWSCognitoUserManagementNotificationBus",
  1703. "m_busId": {
  1704. "Value": 447348268
  1705. }
  1706. }
  1707. }
  1708. },
  1709. {
  1710. "Id": {
  1711. "id": 40396433519414
  1712. },
  1713. "Name": "EBusEventHandler",
  1714. "Components": {
  1715. "Component_[9562653061197598154]": {
  1716. "$type": "EBusEventHandler",
  1717. "Id": 9562653061197598154,
  1718. "Slots": [
  1719. {
  1720. "id": {
  1721. "m_id": "{C7C58DC9-B78B-42B9-B2B5-478782DF46CC}"
  1722. },
  1723. "contracts": [
  1724. {
  1725. "$type": "SlotTypeContract"
  1726. }
  1727. ],
  1728. "slotName": "Connect",
  1729. "toolTip": "Connect this event handler to the specified entity.",
  1730. "Descriptor": {
  1731. "ConnectionType": 1,
  1732. "SlotType": 1
  1733. }
  1734. },
  1735. {
  1736. "id": {
  1737. "m_id": "{FA026675-B1BE-491C-8EBF-E69CC1DE4C55}"
  1738. },
  1739. "contracts": [
  1740. {
  1741. "$type": "SlotTypeContract"
  1742. }
  1743. ],
  1744. "slotName": "Disconnect",
  1745. "toolTip": "Disconnect this event handler.",
  1746. "Descriptor": {
  1747. "ConnectionType": 1,
  1748. "SlotType": 1
  1749. }
  1750. },
  1751. {
  1752. "id": {
  1753. "m_id": "{3C98E6EB-3C18-4068-B823-DB58C576DD78}"
  1754. },
  1755. "contracts": [
  1756. {
  1757. "$type": "SlotTypeContract"
  1758. }
  1759. ],
  1760. "slotName": "OnConnected",
  1761. "toolTip": "Signaled when a connection has taken place.",
  1762. "Descriptor": {
  1763. "ConnectionType": 2,
  1764. "SlotType": 1
  1765. }
  1766. },
  1767. {
  1768. "id": {
  1769. "m_id": "{57A45446-FFB1-4C50-8AAE-B8ECA6972D6E}"
  1770. },
  1771. "contracts": [
  1772. {
  1773. "$type": "SlotTypeContract"
  1774. }
  1775. ],
  1776. "slotName": "OnDisconnected",
  1777. "toolTip": "Signaled when this event handler is disconnected.",
  1778. "Descriptor": {
  1779. "ConnectionType": 2,
  1780. "SlotType": 1
  1781. }
  1782. },
  1783. {
  1784. "id": {
  1785. "m_id": "{A58F08C9-B5EF-4B7B-9CA0-D7971A0433F8}"
  1786. },
  1787. "contracts": [
  1788. {
  1789. "$type": "SlotTypeContract"
  1790. }
  1791. ],
  1792. "slotName": "OnFailure",
  1793. "toolTip": "Signaled when it is not possible to connect this handler.",
  1794. "Descriptor": {
  1795. "ConnectionType": 2,
  1796. "SlotType": 1
  1797. }
  1798. },
  1799. {
  1800. "id": {
  1801. "m_id": "{725CF674-BE9B-46C9-97A9-F479446C0229}"
  1802. },
  1803. "contracts": [
  1804. {
  1805. "$type": "SlotTypeContract"
  1806. }
  1807. ],
  1808. "slotName": "Source",
  1809. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  1810. "Descriptor": {
  1811. "ConnectionType": 1,
  1812. "SlotType": 2
  1813. },
  1814. "DataType": 1
  1815. },
  1816. {
  1817. "id": {
  1818. "m_id": "{3CBA71E9-D536-4236-9663-EB756D317B5C}"
  1819. },
  1820. "contracts": [
  1821. {
  1822. "$type": "SlotTypeContract"
  1823. }
  1824. ],
  1825. "slotName": "EntityID",
  1826. "DisplayDataType": {
  1827. "m_type": 1
  1828. },
  1829. "Descriptor": {
  1830. "ConnectionType": 2,
  1831. "SlotType": 2
  1832. },
  1833. "DataType": 1
  1834. },
  1835. {
  1836. "id": {
  1837. "m_id": "{69BC10FD-BF05-4377-91D0-88540202AEAB}"
  1838. },
  1839. "contracts": [
  1840. {
  1841. "$type": "SlotTypeContract"
  1842. }
  1843. ],
  1844. "slotName": "ExecutionSlot:OnEntityActivated",
  1845. "Descriptor": {
  1846. "ConnectionType": 2,
  1847. "SlotType": 1
  1848. },
  1849. "IsLatent": true
  1850. },
  1851. {
  1852. "id": {
  1853. "m_id": "{B715798E-51A1-4A13-8597-D0FED7A84D64}"
  1854. },
  1855. "contracts": [
  1856. {
  1857. "$type": "SlotTypeContract"
  1858. }
  1859. ],
  1860. "slotName": "EntityID",
  1861. "DisplayDataType": {
  1862. "m_type": 1
  1863. },
  1864. "Descriptor": {
  1865. "ConnectionType": 2,
  1866. "SlotType": 2
  1867. },
  1868. "DataType": 1
  1869. },
  1870. {
  1871. "id": {
  1872. "m_id": "{0D15697C-1B42-4F19-BD0D-3A19CB516B61}"
  1873. },
  1874. "contracts": [
  1875. {
  1876. "$type": "SlotTypeContract"
  1877. }
  1878. ],
  1879. "slotName": "ExecutionSlot:OnEntityDeactivated",
  1880. "Descriptor": {
  1881. "ConnectionType": 2,
  1882. "SlotType": 1
  1883. },
  1884. "IsLatent": true
  1885. }
  1886. ],
  1887. "Datums": [
  1888. {
  1889. "isOverloadedStorage": false,
  1890. "scriptCanvasType": {
  1891. "m_type": 1
  1892. },
  1893. "isNullPointer": false,
  1894. "$type": "EntityId",
  1895. "value": {
  1896. "id": 2901262558
  1897. },
  1898. "label": "Source"
  1899. }
  1900. ],
  1901. "m_eventMap": [
  1902. {
  1903. "Key": {
  1904. "Value": 245425936
  1905. },
  1906. "Value": {
  1907. "m_eventName": "OnEntityActivated",
  1908. "m_eventId": {
  1909. "Value": 245425936
  1910. },
  1911. "m_eventSlotId": {
  1912. "m_id": "{69BC10FD-BF05-4377-91D0-88540202AEAB}"
  1913. },
  1914. "m_parameterSlotIds": [
  1915. {
  1916. "m_id": "{3CBA71E9-D536-4236-9663-EB756D317B5C}"
  1917. }
  1918. ],
  1919. "m_numExpectedArguments": 1
  1920. }
  1921. },
  1922. {
  1923. "Key": {
  1924. "Value": 4273369222
  1925. },
  1926. "Value": {
  1927. "m_eventName": "OnEntityDeactivated",
  1928. "m_eventId": {
  1929. "Value": 4273369222
  1930. },
  1931. "m_eventSlotId": {
  1932. "m_id": "{0D15697C-1B42-4F19-BD0D-3A19CB516B61}"
  1933. },
  1934. "m_parameterSlotIds": [
  1935. {
  1936. "m_id": "{B715798E-51A1-4A13-8597-D0FED7A84D64}"
  1937. }
  1938. ],
  1939. "m_numExpectedArguments": 1
  1940. }
  1941. }
  1942. ],
  1943. "m_ebusName": "EntityBus",
  1944. "m_busId": {
  1945. "Value": 3358774020
  1946. }
  1947. }
  1948. }
  1949. }
  1950. ],
  1951. "m_connections": [
  1952. {
  1953. "Id": {
  1954. "id": 40405023454006
  1955. },
  1956. "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)",
  1957. "Components": {
  1958. "Component_[2481873747935739489]": {
  1959. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1960. "Id": 2481873747935739489,
  1961. "sourceEndpoint": {
  1962. "nodeId": {
  1963. "id": 40387843584822
  1964. },
  1965. "slotId": {
  1966. "m_id": "{12154F8B-6329-44B2-B220-25BBB4F4DA8C}"
  1967. }
  1968. },
  1969. "targetEndpoint": {
  1970. "nodeId": {
  1971. "id": 40392138552118
  1972. },
  1973. "slotId": {
  1974. "m_id": "{399A9DE3-F888-4941-95ED-51DAA3577806}"
  1975. }
  1976. }
  1977. }
  1978. }
  1979. },
  1980. {
  1981. "Id": {
  1982. "id": 40409318421302
  1983. },
  1984. "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(EmailSignUpAsync: In)",
  1985. "Components": {
  1986. "Component_[7194362106206674212]": {
  1987. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1988. "Id": 7194362106206674212,
  1989. "sourceEndpoint": {
  1990. "nodeId": {
  1991. "id": 40392138552118
  1992. },
  1993. "slotId": {
  1994. "m_id": "{7E46FB7B-9FFF-49BE-8A8B-59A6144BB567}"
  1995. }
  1996. },
  1997. "targetEndpoint": {
  1998. "nodeId": {
  1999. "id": 40383548617526
  2000. },
  2001. "slotId": {
  2002. "m_id": "{A0AF5A68-C8DD-4219-894A-4D7AF713FDFE}"
  2003. }
  2004. }
  2005. }
  2006. }
  2007. },
  2008. {
  2009. "Id": {
  2010. "id": 40413613388598
  2011. },
  2012. "Name": "srcEndpoint=(AWSCognitoUserManagementNotificationBus Handler: ExecutionSlot:OnEmailSignUpSuccess), destEndpoint=(Print: In)",
  2013. "Components": {
  2014. "Component_[16780678604896909105]": {
  2015. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2016. "Id": 16780678604896909105,
  2017. "sourceEndpoint": {
  2018. "nodeId": {
  2019. "id": 40400728486710
  2020. },
  2021. "slotId": {
  2022. "m_id": "{6AA62561-DA82-4797-9DC4-615AB767F828}"
  2023. }
  2024. },
  2025. "targetEndpoint": {
  2026. "nodeId": {
  2027. "id": 40370663715638
  2028. },
  2029. "slotId": {
  2030. "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}"
  2031. }
  2032. }
  2033. }
  2034. }
  2035. },
  2036. {
  2037. "Id": {
  2038. "id": 40417908355894
  2039. },
  2040. "Name": "srcEndpoint=(AWSCognitoUserManagementNotificationBus Handler: ExecutionSlot:OnEmailSignUpFail), destEndpoint=(Print: In)",
  2041. "Components": {
  2042. "Component_[10089558926172181947]": {
  2043. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2044. "Id": 10089558926172181947,
  2045. "sourceEndpoint": {
  2046. "nodeId": {
  2047. "id": 40374958682934
  2048. },
  2049. "slotId": {
  2050. "m_id": "{7EC15743-5DA5-4F9F-BF26-318CFAD73C48}"
  2051. }
  2052. },
  2053. "targetEndpoint": {
  2054. "nodeId": {
  2055. "id": 40379253650230
  2056. },
  2057. "slotId": {
  2058. "m_id": "{CE1EC1C9-479F-451E-BC7B-CF9A76C141B8}"
  2059. }
  2060. }
  2061. }
  2062. }
  2063. },
  2064. {
  2065. "Id": {
  2066. "id": 40422203323190
  2067. },
  2068. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Initialize: In)",
  2069. "Components": {
  2070. "Component_[4722263728953193176]": {
  2071. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2072. "Id": 4722263728953193176,
  2073. "sourceEndpoint": {
  2074. "nodeId": {
  2075. "id": 40396433519414
  2076. },
  2077. "slotId": {
  2078. "m_id": "{69BC10FD-BF05-4377-91D0-88540202AEAB}"
  2079. }
  2080. },
  2081. "targetEndpoint": {
  2082. "nodeId": {
  2083. "id": 40387843584822
  2084. },
  2085. "slotId": {
  2086. "m_id": "{3D4180D8-264F-40A6-B651-8AD9968800CD}"
  2087. }
  2088. }
  2089. }
  2090. }
  2091. }
  2092. ]
  2093. },
  2094. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2095. "versionData": {
  2096. "_grammarVersion": 1,
  2097. "_runtimeVersion": 1
  2098. },
  2099. "m_variableCounter": 1,
  2100. "GraphCanvasData": [
  2101. {
  2102. "Key": {
  2103. "id": 40366368748342
  2104. },
  2105. "Value": {
  2106. "ComponentData": {
  2107. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2108. "$type": "SceneComponentSaveData",
  2109. "ViewParams": {
  2110. "Scale": 1.6678291666562495,
  2111. "AnchorX": -1140.404541015625,
  2112. "AnchorY": -510.2441101074219
  2113. }
  2114. }
  2115. }
  2116. }
  2117. },
  2118. {
  2119. "Key": {
  2120. "id": 40370663715638
  2121. },
  2122. "Value": {
  2123. "ComponentData": {
  2124. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2125. "$type": "NodeSaveData"
  2126. },
  2127. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2128. "$type": "GeneralNodeTitleComponentSaveData",
  2129. "PaletteOverride": "StringNodeTitlePalette"
  2130. },
  2131. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2132. "$type": "GeometrySaveData",
  2133. "Position": [
  2134. 360.0,
  2135. -100.0
  2136. ]
  2137. },
  2138. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2139. "$type": "StylingComponentSaveData"
  2140. },
  2141. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2142. "$type": "PersistentIdComponentSaveData",
  2143. "PersistentId": "{EE80C02E-C46C-4F8B-9ED1-F455EAA1A180}"
  2144. }
  2145. }
  2146. }
  2147. },
  2148. {
  2149. "Key": {
  2150. "id": 40374958682934
  2151. },
  2152. "Value": {
  2153. "ComponentData": {
  2154. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2155. "$type": "NodeSaveData"
  2156. },
  2157. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2158. "$type": "GeometrySaveData",
  2159. "Position": [
  2160. -140.0,
  2161. 120.0
  2162. ]
  2163. },
  2164. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  2165. "$type": "EBusHandlerNodeDescriptorSaveData",
  2166. "EventIds": [
  2167. {
  2168. "Value": 4207060091
  2169. }
  2170. ]
  2171. },
  2172. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2173. "$type": "StylingComponentSaveData"
  2174. },
  2175. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2176. "$type": "PersistentIdComponentSaveData",
  2177. "PersistentId": "{0CF6BEC2-1C77-4588-9E0D-46E669A885D2}"
  2178. }
  2179. }
  2180. }
  2181. },
  2182. {
  2183. "Key": {
  2184. "id": 40379253650230
  2185. },
  2186. "Value": {
  2187. "ComponentData": {
  2188. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2189. "$type": "NodeSaveData"
  2190. },
  2191. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2192. "$type": "GeneralNodeTitleComponentSaveData",
  2193. "PaletteOverride": "StringNodeTitlePalette"
  2194. },
  2195. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2196. "$type": "GeometrySaveData",
  2197. "Position": [
  2198. 360.0,
  2199. 120.0
  2200. ]
  2201. },
  2202. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2203. "$type": "StylingComponentSaveData"
  2204. },
  2205. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2206. "$type": "PersistentIdComponentSaveData",
  2207. "PersistentId": "{7D65DC37-A004-4B96-B546-3AA21955B483}"
  2208. }
  2209. }
  2210. }
  2211. },
  2212. {
  2213. "Key": {
  2214. "id": 40383548617526
  2215. },
  2216. "Value": {
  2217. "ComponentData": {
  2218. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2219. "$type": "NodeSaveData"
  2220. },
  2221. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2222. "$type": "GeneralNodeTitleComponentSaveData",
  2223. "PaletteOverride": "MethodNodeTitlePalette"
  2224. },
  2225. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2226. "$type": "GeometrySaveData",
  2227. "Position": [
  2228. -480.0,
  2229. -20.0
  2230. ]
  2231. },
  2232. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2233. "$type": "StylingComponentSaveData",
  2234. "SubStyle": ".method"
  2235. },
  2236. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2237. "$type": "PersistentIdComponentSaveData",
  2238. "PersistentId": "{0A62049A-7A6F-49C4-8941-2FFE8C3C3D64}"
  2239. }
  2240. }
  2241. }
  2242. },
  2243. {
  2244. "Key": {
  2245. "id": 40387843584822
  2246. },
  2247. "Value": {
  2248. "ComponentData": {
  2249. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2250. "$type": "NodeSaveData"
  2251. },
  2252. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2253. "$type": "GeneralNodeTitleComponentSaveData",
  2254. "PaletteOverride": "MethodNodeTitlePalette"
  2255. },
  2256. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2257. "$type": "GeometrySaveData",
  2258. "Position": [
  2259. -520.0,
  2260. -360.0
  2261. ]
  2262. },
  2263. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2264. "$type": "StylingComponentSaveData",
  2265. "SubStyle": ".method"
  2266. },
  2267. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2268. "$type": "PersistentIdComponentSaveData",
  2269. "PersistentId": "{F194EF69-4648-4E48-8E09-0BA9D7CFEFAB}"
  2270. }
  2271. }
  2272. }
  2273. },
  2274. {
  2275. "Key": {
  2276. "id": 40392138552118
  2277. },
  2278. "Value": {
  2279. "ComponentData": {
  2280. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2281. "$type": "NodeSaveData"
  2282. },
  2283. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2284. "$type": "GeneralNodeTitleComponentSaveData",
  2285. "PaletteOverride": "MethodNodeTitlePalette"
  2286. },
  2287. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2288. "$type": "GeometrySaveData",
  2289. "Position": [
  2290. -880.0,
  2291. -20.0
  2292. ]
  2293. },
  2294. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2295. "$type": "StylingComponentSaveData",
  2296. "SubStyle": ".method"
  2297. },
  2298. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2299. "$type": "PersistentIdComponentSaveData",
  2300. "PersistentId": "{64AC1AA7-3D00-49C8-B721-FD8FA1F12974}"
  2301. }
  2302. }
  2303. }
  2304. },
  2305. {
  2306. "Key": {
  2307. "id": 40396433519414
  2308. },
  2309. "Value": {
  2310. "ComponentData": {
  2311. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2312. "$type": "NodeSaveData"
  2313. },
  2314. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2315. "$type": "GeometrySaveData",
  2316. "Position": [
  2317. -840.0,
  2318. -420.0
  2319. ]
  2320. },
  2321. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  2322. "$type": "EBusHandlerNodeDescriptorSaveData",
  2323. "EventIds": [
  2324. {
  2325. "Value": 245425936
  2326. }
  2327. ]
  2328. },
  2329. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2330. "$type": "StylingComponentSaveData"
  2331. },
  2332. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2333. "$type": "PersistentIdComponentSaveData",
  2334. "PersistentId": "{BE098530-CD45-403F-A8E6-19B1AF955998}"
  2335. }
  2336. }
  2337. }
  2338. },
  2339. {
  2340. "Key": {
  2341. "id": 40400728486710
  2342. },
  2343. "Value": {
  2344. "ComponentData": {
  2345. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2346. "$type": "NodeSaveData"
  2347. },
  2348. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2349. "$type": "GeometrySaveData",
  2350. "Position": [
  2351. -140.0,
  2352. -120.0
  2353. ]
  2354. },
  2355. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  2356. "$type": "EBusHandlerNodeDescriptorSaveData",
  2357. "EventIds": [
  2358. {
  2359. "Value": 613710915
  2360. }
  2361. ]
  2362. },
  2363. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2364. "$type": "StylingComponentSaveData"
  2365. },
  2366. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2367. "$type": "PersistentIdComponentSaveData",
  2368. "PersistentId": "{30CAA4F3-6D33-487A-AA24-5A0FDB7E44F7}"
  2369. }
  2370. }
  2371. }
  2372. }
  2373. ],
  2374. "StatisticsHelper": {
  2375. "InstanceCounter": [
  2376. {
  2377. "Key": 5842116761103598202,
  2378. "Value": 1
  2379. },
  2380. {
  2381. "Key": 5842117047185225035,
  2382. "Value": 1
  2383. },
  2384. {
  2385. "Key": 5842117058899013251,
  2386. "Value": 1
  2387. },
  2388. {
  2389. "Key": 10684225535275896474,
  2390. "Value": 2
  2391. },
  2392. {
  2393. "Key": 13774516312719521631,
  2394. "Value": 1
  2395. },
  2396. {
  2397. "Key": 13774516352051377806,
  2398. "Value": 1
  2399. },
  2400. {
  2401. "Key": 13774516392820282243,
  2402. "Value": 1
  2403. }
  2404. ]
  2405. }
  2406. },
  2407. "Component_[2611898449683772344]": {
  2408. "$type": "EditorGraphVariableManagerComponent",
  2409. "Id": 2611898449683772344,
  2410. "m_variableData": {
  2411. "m_nameVariableMap": [
  2412. {
  2413. "Key": {
  2414. "m_id": "{B26AAA33-F9F0-4CC4-81B2-E7D666AD6AD7}"
  2415. },
  2416. "Value": {
  2417. "Datum": {
  2418. "isOverloadedStorage": false,
  2419. "scriptCanvasType": {
  2420. "m_type": 4,
  2421. "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
  2422. },
  2423. "isNullPointer": false,
  2424. "$type": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C} AZStd::vector",
  2425. "value": [
  2426. "AWSCognitoIDP"
  2427. ],
  2428. "label": "Array<String>"
  2429. },
  2430. "VariableId": {
  2431. "m_id": "{B26AAA33-F9F0-4CC4-81B2-E7D666AD6AD7}"
  2432. },
  2433. "VariableName": "AuthenitcationProviders"
  2434. }
  2435. }
  2436. ]
  2437. }
  2438. }
  2439. }
  2440. }
  2441. }
  2442. }