| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675 |
- {
- "Type": "JsonSerialization",
- "Version": 1,
- "ClassName": "ScriptCanvasData",
- "ClassData": {
- "m_scriptCanvas": {
- "Id": {
- "id": 22550844404534
- },
- "Name": "PasswordSignIn",
- "Components": {
- "Component_[6385465305444622263]": {
- "$type": "EditorGraphVariableManagerComponent",
- "Id": 6385465305444622263,
- "m_variableData": {
- "m_nameVariableMap": [
- {
- "Key": {
- "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
- },
- "isNullPointer": false,
- "$type": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C} AZStd::vector",
- "value": [
- "AWSCognitoIDP"
- ],
- "label": "Array<String>"
- },
- "VariableId": {
- "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}"
- },
- "VariableName": "AuthenticationProviders"
- }
- }
- ]
- }
- },
- "Component_[8710839917828649136]": {
- "$type": "{4D755CA9-AB92-462C-B24F-0B3376F19967} Graph",
- "Id": 8710839917828649136,
- "m_graphData": {
- "m_nodes": [
- {
- "Id": {
- "id": 22606678979382
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[10817928006900121599]": {
- "$type": "Print",
- "Id": 10817928006900121599,
- "Slots": [
- {
- "id": {
- "m_id": "{269D4FDC-1137-45A3-8442-2A2DF98D6F6E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{F5EE89C0-AB89-4D06-BD4C-72CA40AB075B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "m_format": "SignIn Success",
- "m_unresolvedString": [
- "SignIn Success"
- ]
- }
- }
- },
- {
- "Id": {
- "id": 22610973946678
- },
- "Name": "SC-Node(Initialize)",
- "Components": {
- "Component_[1153097947988754865]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 1153097947988754865,
- "Slots": [
- {
- "id": {
- "m_id": "{8C6FB06A-4A06-41E5-94E5-9D78671977C8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Array<String>: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{9E6C4595-2633-4312-B9AA-F49A0B90D7A0}"
- }
- },
- {
- "id": {
- "m_id": "{F4ED50C1-0694-4E9F-A4E6-83565E517C1E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{4BB45954-74C5-4023-AFBE-C82638076FDD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{F6930458-3515-45B6-BB6D-1217547A7401}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Result: Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
- },
- "isNullPointer": true,
- "label": "Array<String>: 0"
- }
- ],
- "methodType": 0,
- "methodName": "Initialize",
- "className": "AuthenticationProviderRequestBus",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "AuthenticationProviderRequestBus"
- }
- }
- },
- {
- "Id": {
- "id": 22559434339126
- },
- "Name": "EBusEventHandler",
- "Components": {
- "Component_[15120484156765471501]": {
- "$type": "EBusEventHandler",
- "Id": 15120484156765471501,
- "Slots": [
- {
- "id": {
- "m_id": "{55723136-4724-4749-8A1E-A0829EC4CB54}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Connect",
- "toolTip": "Connect this event handler to the specified entity.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{01F5AE9F-BF74-41B1-A1F9-7782B707C013}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Disconnect",
- "toolTip": "Disconnect this event handler.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{2D449731-3E45-489D-B7EA-586D3E87738C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnConnected",
- "toolTip": "Signaled when a connection has taken place.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{7FE6C340-B7A9-4ABD-B30E-FB78707A8042}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnDisconnected",
- "toolTip": "Signaled when this event handler is disconnected.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{174FBA70-D39B-4FAD-8595-52A63CE855F4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnFailure",
- "toolTip": "Signaled when it is not possible to connect this handler.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{B4E8FA2A-6833-43A2-BF8D-E021B7F24C6C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Source",
- "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{808F793B-E283-4872-B0C9-3BDE44FB0372}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "EntityID",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnEntityActivated",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{7977990A-4416-494A-94F1-F2670A6E920B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "EntityID",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{AB5A3F2D-D553-49A8-98A5-F99375431668}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnEntityDeactivated",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 1
- },
- "isNullPointer": false,
- "$type": "EntityId",
- "value": {
- "id": 2901262558
- },
- "label": "Source"
- }
- ],
- "m_eventMap": [
- {
- "Key": {
- "Value": 245425936
- },
- "Value": {
- "m_eventName": "OnEntityActivated",
- "m_eventId": {
- "Value": 245425936
- },
- "m_eventSlotId": {
- "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{808F793B-E283-4872-B0C9-3BDE44FB0372}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 4273369222
- },
- "Value": {
- "m_eventName": "OnEntityDeactivated",
- "m_eventId": {
- "Value": 4273369222
- },
- "m_eventSlotId": {
- "m_id": "{AB5A3F2D-D553-49A8-98A5-F99375431668}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{7977990A-4416-494A-94F1-F2670A6E920B}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- }
- ],
- "m_ebusName": "EntityBus",
- "m_busId": {
- "Value": 3358774020
- }
- }
- }
- },
- {
- "Id": {
- "id": 22580909175606
- },
- "Name": "EBusEventHandler",
- "Components": {
- "Component_[16042865177069512848]": {
- "$type": "EBusEventHandler",
- "Id": 16042865177069512848,
- "Slots": [
- {
- "id": {
- "m_id": "{8503C0C0-DFA8-43AF-AE40-E2A48C9F77C5}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Connect",
- "toolTip": "Connect this event handler to the specified entity.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{EE5F8D3F-CC56-400F-91F6-835A2A843D3E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Disconnect",
- "toolTip": "Disconnect this event handler.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{35490A45-17F4-444E-B4EB-443B4AC61D07}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnConnected",
- "toolTip": "Signaled when a connection has taken place.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{FCCA77C5-AB2A-4BE7-BC46-99B74FDBEC7B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnDisconnected",
- "toolTip": "Signaled when this event handler is disconnected.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{F52BDF60-64FD-488B-8D5D-D996B9400986}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnFailure",
- "toolTip": "Signaled when it is not possible to connect this handler.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{8C19381E-B495-4B42-880C-86399A055392}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ClientAuthAWSCredentials",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{2EEBA254-1346-4866-80CA-3608BAF5B767}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{BB27DD72-E82E-4C67-8493-E3DF0AFCC093}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- }
- ],
- "m_eventMap": [
- {
- "Key": {
- "Value": 3736070646
- },
- "Value": {
- "m_eventName": "OnRequestAWSCredentialsSuccess",
- "m_eventId": {
- "Value": 3736070646
- },
- "m_eventSlotId": {
- "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{8C19381E-B495-4B42-880C-86399A055392}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 4193877825
- },
- "Value": {
- "m_eventName": "OnRequestAWSCredentialsFail",
- "m_eventId": {
- "Value": 4193877825
- },
- "m_eventSlotId": {
- "m_id": "{BB27DD72-E82E-4C67-8493-E3DF0AFCC093}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{2EEBA254-1346-4866-80CA-3608BAF5B767}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- }
- ],
- "m_ebusName": "AWSCognitoAuthorizationNotificationBus",
- "m_busId": {
- "Value": 1100345364
- }
- }
- }
- },
- {
- "Id": {
- "id": 22585204142902
- },
- "Name": "EBusEventHandler",
- "Components": {
- "Component_[16607172582241819113]": {
- "$type": "EBusEventHandler",
- "Id": 16607172582241819113,
- "Slots": [
- {
- "id": {
- "m_id": "{E55A09C6-5B87-4F4F-9EC4-7F602A5C02AC}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Connect",
- "toolTip": "Connect this event handler to the specified entity.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{AC007706-2035-4888-AD7C-3C9AF6650FEC}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Disconnect",
- "toolTip": "Disconnect this event handler.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{809A2C05-FB97-4C59-B1D8-C29A22F69097}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnConnected",
- "toolTip": "Signaled when a connection has taken place.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{E3E053B8-37B7-4094-8974-BF0E13919943}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnDisconnected",
- "toolTip": "Signaled when this event handler is disconnected.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{5BB6420D-1016-49B8-AC48-3C5C1EE647F5}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnFailure",
- "toolTip": "Signaled when it is not possible to connect this handler.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{D79F252C-3D2A-4CC1-9A51-18B7827EB4CA}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{5B6638B9-4F55-4CCB-A368-C83FED5C43F8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{282E0463-9A13-4681-B69C-B6B30CA7CD01}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{B088E163-C71A-417E-8D35-F0A29273F5D9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{C2EBAEB4-5ECA-441C-8202-0D2A80F1A776}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{79F39D7A-BFC2-4749-9631-575A6C63714D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{0CC24B35-F3D6-4E7B-B9D1-98CEB36059AE}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{3C544F9A-0137-4735-8484-0458246E4D52}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{BEBDDB95-FBBA-4AE1-BA89-C3DAE042E9E1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{FA8FE256-A70A-475E-A724-0E70C1099213}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{919E73F9-6A2B-437B-867D-6723FFF8D29E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{B494FB65-9082-4826-84B4-E2E6DB1803D1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{7F2FE508-FCDB-45E5-BBEB-8A25E9D09C41}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{E8BA420E-FF66-4B13-94B9-2D96448542B0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{4694A0AC-A400-47D0-A050-8B6AEDF65748}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{E03D10FB-C618-4260-870D-FA2B2B13FE0D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{031D9648-B03B-42E3-8E6B-BF5F6FEF1937}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{98B96DAE-EC45-4F36-B39A-F4C91C56FF95}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{6958B465-4D41-4325-8A66-011E5BA281F2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{526EE051-CABD-415C-99D1-D55ED0032E5E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{A921FE09-C86A-4DE3-9976-0BCC3359CAF3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{981C81CF-AED4-4535-A226-4BC19C718D73}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRefreshTokensSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{1C060C05-4FE2-455A-BABA-4B86CE19F934}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{F20A8880-B22D-4FAA-8779-F51DE7DB2D21}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRefreshTokensFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- }
- ],
- "m_eventMap": [
- {
- "Key": {
- "Value": 962116424
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantSignInSuccess",
- "m_eventId": {
- "Value": 962116424
- },
- "m_eventSlotId": {
- "m_id": "{E8BA420E-FF66-4B13-94B9-2D96448542B0}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{919E73F9-6A2B-437B-867D-6723FFF8D29E}"
- },
- {
- "m_id": "{B494FB65-9082-4826-84B4-E2E6DB1803D1}"
- },
- {
- "m_id": "{7F2FE508-FCDB-45E5-BBEB-8A25E9D09C41}"
- }
- ],
- "m_numExpectedArguments": 3
- }
- },
- {
- "Key": {
- "Value": 1026494196
- },
- "Value": {
- "m_eventName": "OnRefreshTokensFail",
- "m_eventId": {
- "Value": 1026494196
- },
- "m_eventSlotId": {
- "m_id": "{F20A8880-B22D-4FAA-8779-F51DE7DB2D21}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{1C060C05-4FE2-455A-BABA-4B86CE19F934}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1152314015
- },
- "Value": {
- "m_eventName": "OnRefreshTokensSuccess",
- "m_eventId": {
- "Value": 1152314015
- },
- "m_eventSlotId": {
- "m_id": "{981C81CF-AED4-4535-A226-4BC19C718D73}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{A921FE09-C86A-4DE3-9976-0BCC3359CAF3}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1203288733
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInSuccess",
- "m_eventId": {
- "Value": 1203288733
- },
- "m_eventSlotId": {
- "m_id": "{3C544F9A-0137-4735-8484-0458246E4D52}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{0CC24B35-F3D6-4E7B-B9D1-98CEB36059AE}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1293959492
- },
- "Value": {
- "m_eventName": "OnPasswordGrantSingleFactorSignInFail",
- "m_eventId": {
- "Value": 1293959492
- },
- "m_eventSlotId": {
- "m_id": "{282E0463-9A13-4681-B69C-B6B30CA7CD01}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{5B6638B9-4F55-4CCB-A368-C83FED5C43F8}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1722702500
- },
- "Value": {
- "m_eventName": "OnPasswordGrantSingleFactorSignInSuccess",
- "m_eventId": {
- "Value": 1722702500
- },
- "m_eventSlotId": {
- "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{D79F252C-3D2A-4CC1-9A51-18B7827EB4CA}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1819337155
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInFail",
- "m_eventId": {
- "Value": 1819337155
- },
- "m_eventSlotId": {
- "m_id": "{FA8FE256-A70A-475E-A724-0E70C1099213}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{BEBDDB95-FBBA-4AE1-BA89-C3DAE042E9E1}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1908852787
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorSignInFail",
- "m_eventId": {
- "Value": 1908852787
- },
- "m_eventSlotId": {
- "m_id": "{79F39D7A-BFC2-4749-9631-575A6C63714D}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{C2EBAEB4-5ECA-441C-8202-0D2A80F1A776}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 2486714370
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorSignInSuccess",
- "m_eventId": {
- "Value": 2486714370
- },
- "m_eventSlotId": {
- "m_id": "{B088E163-C71A-417E-8D35-F0A29273F5D9}"
- }
- }
- },
- {
- "Key": {
- "Value": 3091702945
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantSignInFail",
- "m_eventId": {
- "Value": 3091702945
- },
- "m_eventSlotId": {
- "m_id": "{E03D10FB-C618-4260-870D-FA2B2B13FE0D}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{4694A0AC-A400-47D0-A050-8B6AEDF65748}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 3973214553
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantConfirmSignInFail",
- "m_eventId": {
- "Value": 3973214553
- },
- "m_eventSlotId": {
- "m_id": "{526EE051-CABD-415C-99D1-D55ED0032E5E}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{6958B465-4D41-4325-8A66-011E5BA281F2}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 4272279525
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantConfirmSignInSuccess",
- "m_eventId": {
- "Value": 4272279525
- },
- "m_eventSlotId": {
- "m_id": "{98B96DAE-EC45-4F36-B39A-F4C91C56FF95}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{031D9648-B03B-42E3-8E6B-BF5F6FEF1937}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- }
- ],
- "m_ebusName": "AuthenticationProviderNotificationBus",
- "m_busId": {
- "Value": 3734230664
- }
- }
- }
- },
- {
- "Id": {
- "id": 22602384012086
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[17989474089224348440]": {
- "$type": "Print",
- "Id": 17989474089224348440,
- "Slots": [
- {
- "id": {
- "m_id": "{C0E7856E-AE8E-4151-9109-2E3B2A810054}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{36A6967B-AD9E-41C2-9BCC-2AF62F62C774}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "m_format": "Fail credentials",
- "m_unresolvedString": [
- "Fail credentials"
- ]
- }
- }
- },
- {
- "Id": {
- "id": 22593794077494
- },
- "Name": "SC-Node(RequestAWSCredentialsAsync)",
- "Components": {
- "Component_[3213338170673989286]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 3213338170673989286,
- "Slots": [
- {
- "id": {
- "m_id": "{EB37FB3D-48EB-4766-AD8C-7F03D100C7FA}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{E1160157-4FDD-4720-9EF1-995D0380C53D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "methodType": 0,
- "methodName": "RequestAWSCredentialsAsync",
- "className": "AWSCognitoAuthorizationRequestBus",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "AWSCognitoAuthorizationRequestBus"
- }
- }
- },
- {
- "Id": {
- "id": 22563729306422
- },
- "Name": "EBusEventHandler",
- "Components": {
- "Component_[3639374038291845020]": {
- "$type": "EBusEventHandler",
- "Id": 3639374038291845020,
- "Slots": [
- {
- "id": {
- "m_id": "{2A8157B6-1A5A-464C-B1A1-CC5067AC8872}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Connect",
- "toolTip": "Connect this event handler to the specified entity.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{8DBCEE08-2A7F-4D3E-BF59-7FB3A34AD3B7}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Disconnect",
- "toolTip": "Disconnect this event handler.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{D8FCBC44-E46B-4699-B1A2-AE2BFE61A132}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnConnected",
- "toolTip": "Signaled when a connection has taken place.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{9E6AE222-55CE-48F1-A844-7DB53C07AB50}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnDisconnected",
- "toolTip": "Signaled when this event handler is disconnected.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{0507AD01-1320-4210-9786-5F87063D301F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnFailure",
- "toolTip": "Signaled when it is not possible to connect this handler.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{6772D7F9-08BE-4D59-B410-7E6EC0FFEF2B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{ED8A0C7D-9D75-45A7-BAE1-FD8B980DADE2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{64484918-D357-4B41-830D-CC9EEB6EC963}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantSingleFactorSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{FBBC04A8-2368-4B67-A48F-D7D33EDBC71F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{5873E80A-4E48-4B52-AB91-ACE8DC42EC86}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{DC0B9782-C4BB-49C0-8DE3-06933347FA20}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{4EB602D7-C5D7-427C-B7D3-838CC4FFBA0D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{B0F0A8E6-251E-4009-ADE7-8FA70422B1A3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{0E5E0F30-D4A3-4361-99DC-DFB03CDA26ED}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{DF4A4D97-D2A3-42C2-9F85-B79D0743B1DD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnPasswordGrantMultiFactorConfirmSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{58B429CF-B818-4CCB-8E31-84B04B65B704}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{4564C0EF-B526-4AB6-9564-0AE22B473EE5}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{6CD7C063-7118-4E55-AA6D-9EDF5B72F7E7}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{3F5A128D-5F74-4D09-9C12-425DCDDD8A71}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{D49C27E1-B1F7-4A70-8872-B4E6337F0334}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{E6EFD9E4-7CC8-4FBF-88DE-2FAAC4099AE2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{92E26492-6278-4B46-8CD4-0B271B1BB21B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{D39D72BA-6EC1-445C-93B7-CAD87B1ADC7D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{7D66C081-777B-451E-B626-0DAEB39ECA5A}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{AE4AC27C-0EF0-4AFE-B8D2-80D6F1B35FAB}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnDeviceCodeGrantConfirmSignInFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{A2BFBF6C-4E19-4294-BDB8-5A191048C9DB}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "AuthenticationTokens",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C2C30AB7-DACE-49FA-B7B3-04B9FFA5763F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRefreshTokensSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{9BD290CA-B00E-491D-855C-7BD084A0FF43}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{6660546E-CC9B-4951-AE9F-C1D45E6098DD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRefreshTokensFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- }
- ],
- "m_eventMap": [
- {
- "Key": {
- "Value": 962116424
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantSignInSuccess",
- "m_eventId": {
- "Value": 962116424
- },
- "m_eventSlotId": {
- "m_id": "{3F5A128D-5F74-4D09-9C12-425DCDDD8A71}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{58B429CF-B818-4CCB-8E31-84B04B65B704}"
- },
- {
- "m_id": "{4564C0EF-B526-4AB6-9564-0AE22B473EE5}"
- },
- {
- "m_id": "{6CD7C063-7118-4E55-AA6D-9EDF5B72F7E7}"
- }
- ],
- "m_numExpectedArguments": 3
- }
- },
- {
- "Key": {
- "Value": 1026494196
- },
- "Value": {
- "m_eventName": "OnRefreshTokensFail",
- "m_eventId": {
- "Value": 1026494196
- },
- "m_eventSlotId": {
- "m_id": "{6660546E-CC9B-4951-AE9F-C1D45E6098DD}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{9BD290CA-B00E-491D-855C-7BD084A0FF43}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1152314015
- },
- "Value": {
- "m_eventName": "OnRefreshTokensSuccess",
- "m_eventId": {
- "Value": 1152314015
- },
- "m_eventSlotId": {
- "m_id": "{C2C30AB7-DACE-49FA-B7B3-04B9FFA5763F}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{A2BFBF6C-4E19-4294-BDB8-5A191048C9DB}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1203288733
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInSuccess",
- "m_eventId": {
- "Value": 1203288733
- },
- "m_eventSlotId": {
- "m_id": "{B0F0A8E6-251E-4009-ADE7-8FA70422B1A3}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{4EB602D7-C5D7-427C-B7D3-838CC4FFBA0D}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1293959492
- },
- "Value": {
- "m_eventName": "OnPasswordGrantSingleFactorSignInFail",
- "m_eventId": {
- "Value": 1293959492
- },
- "m_eventSlotId": {
- "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{64484918-D357-4B41-830D-CC9EEB6EC963}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1722702500
- },
- "Value": {
- "m_eventName": "OnPasswordGrantSingleFactorSignInSuccess",
- "m_eventId": {
- "Value": 1722702500
- },
- "m_eventSlotId": {
- "m_id": "{ED8A0C7D-9D75-45A7-BAE1-FD8B980DADE2}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{6772D7F9-08BE-4D59-B410-7E6EC0FFEF2B}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1819337155
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorConfirmSignInFail",
- "m_eventId": {
- "Value": 1819337155
- },
- "m_eventSlotId": {
- "m_id": "{DF4A4D97-D2A3-42C2-9F85-B79D0743B1DD}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{0E5E0F30-D4A3-4361-99DC-DFB03CDA26ED}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1908852787
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorSignInFail",
- "m_eventId": {
- "Value": 1908852787
- },
- "m_eventSlotId": {
- "m_id": "{DC0B9782-C4BB-49C0-8DE3-06933347FA20}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{5873E80A-4E48-4B52-AB91-ACE8DC42EC86}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 2486714370
- },
- "Value": {
- "m_eventName": "OnPasswordGrantMultiFactorSignInSuccess",
- "m_eventId": {
- "Value": 2486714370
- },
- "m_eventSlotId": {
- "m_id": "{FBBC04A8-2368-4B67-A48F-D7D33EDBC71F}"
- }
- }
- },
- {
- "Key": {
- "Value": 3091702945
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantSignInFail",
- "m_eventId": {
- "Value": 3091702945
- },
- "m_eventSlotId": {
- "m_id": "{E6EFD9E4-7CC8-4FBF-88DE-2FAAC4099AE2}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{D49C27E1-B1F7-4A70-8872-B4E6337F0334}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 3973214553
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantConfirmSignInFail",
- "m_eventId": {
- "Value": 3973214553
- },
- "m_eventSlotId": {
- "m_id": "{AE4AC27C-0EF0-4AFE-B8D2-80D6F1B35FAB}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{7D66C081-777B-451E-B626-0DAEB39ECA5A}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 4272279525
- },
- "Value": {
- "m_eventName": "OnDeviceCodeGrantConfirmSignInSuccess",
- "m_eventId": {
- "Value": 4272279525
- },
- "m_eventSlotId": {
- "m_id": "{D39D72BA-6EC1-445C-93B7-CAD87B1ADC7D}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{92E26492-6278-4B46-8CD4-0B271B1BB21B}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- }
- ],
- "m_ebusName": "AuthenticationProviderNotificationBus",
- "m_busId": {
- "Value": 3734230664
- }
- }
- }
- },
- {
- "Id": {
- "id": 22572319241014
- },
- "Name": "SC-Node(Initialize)",
- "Components": {
- "Component_[7405312649373835200]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 7405312649373835200,
- "Slots": [
- {
- "id": {
- "m_id": "{FAF2B1D0-815D-476E-BE0A-3C5B0A7181E2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{354BF6A8-150D-4A9A-A19F-1B92ADC44A43}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{1F13C9EB-941B-4AF1-B8DF-7549F7D6304E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Result: Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "methodType": 0,
- "methodName": "Initialize",
- "className": "AWSCognitoAuthorizationRequestBus",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "AWSCognitoAuthorizationRequestBus"
- }
- }
- },
- {
- "Id": {
- "id": 22589499110198
- },
- "Name": "SC-Node(PasswordGrantSingleFactorSignInAsync)",
- "Components": {
- "Component_[7750292952156679363]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 7750292952156679363,
- "Slots": [
- {
- "id": {
- "m_id": "{A5E60763-81A7-4A8A-B8DB-AF4F3DD7D044}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{CC3B7A6A-ABFF-4417-AB09-E010E9193CE0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String: 1",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{ABB9039F-307D-4A8B-A4DC-2BAFADDF238B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String: 2",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{F24D94B3-CD7D-4719-AEAB-58B6AA087480}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{E8DC5B43-1CB4-489C-AD04-D67C59BD9719}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "AWSCognitoIDP",
- "label": "String: 0"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "test1",
- "label": "String: 1"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "Test1test1!",
- "label": "String: 2"
- }
- ],
- "methodType": 0,
- "methodName": "PasswordGrantSingleFactorSignInAsync",
- "className": "AuthenticationProviderRequestBus",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "AuthenticationProviderRequestBus"
- }
- }
- },
- {
- "Id": {
- "id": 22598089044790
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[8044817584554102751]": {
- "$type": "Print",
- "Id": 8044817584554102751,
- "Slots": [
- {
- "id": {
- "m_id": "{D3247169-ACA4-42FF-9CD9-7FC5D2888197}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{F520F3E3-70BF-43EE-B133-65093AA8CCA8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "m_format": "Success credentials",
- "m_unresolvedString": [
- "Success credentials"
- ]
- }
- }
- },
- {
- "Id": {
- "id": 22576614208310
- },
- "Name": "SC-Node(Initialize)",
- "Components": {
- "Component_[8692474017847050528]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 8692474017847050528,
- "Slots": [
- {
- "id": {
- "m_id": "{9EFCF33C-EFBB-44F8-BBD9-0E4AA96D45AF}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{04D08EB7-F20A-4CF7-8BB6-C79804F6EB59}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{2B827E49-A105-44B7-BF32-B0BB97AA0069}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Result: Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "methodType": 0,
- "methodName": "Initialize",
- "className": "AWSCognitoUserManagementRequestBus",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "AWSCognitoUserManagementRequestBus"
- }
- }
- },
- {
- "Id": {
- "id": 22555139371830
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[8900676182846034623]": {
- "$type": "Print",
- "Id": 8900676182846034623,
- "Slots": [
- {
- "id": {
- "m_id": "{9BB1F768-9D92-432C-9B8F-C99EB679CFB9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{880D8B51-8686-4D13-8AD3-0C9F43C9CC9F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "m_format": "SignIn Fail",
- "m_unresolvedString": [
- "SignIn Fail"
- ]
- }
- }
- },
- {
- "Id": {
- "id": 22568024273718
- },
- "Name": "EBusEventHandler",
- "Components": {
- "Component_[954102115830395541]": {
- "$type": "EBusEventHandler",
- "Id": 954102115830395541,
- "Slots": [
- {
- "id": {
- "m_id": "{7CC34F95-FB5B-43EB-AD4D-72E916B326C3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Connect",
- "toolTip": "Connect this event handler to the specified entity.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{CF183A1F-260C-4BD6-8A1D-D1F1F6DA4D77}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Disconnect",
- "toolTip": "Disconnect this event handler.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{B7010FF0-FFFF-401B-A97B-F64B6592D4AD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnConnected",
- "toolTip": "Signaled when a connection has taken place.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{E4952C80-F90E-4B2D-894C-D42C88ECD33B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnDisconnected",
- "toolTip": "Signaled when this event handler is disconnected.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{9F16F58B-1942-4841-9E7C-E797DFA9967D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnFailure",
- "toolTip": "Signaled when it is not possible to connect this handler.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{29C614BD-C1B3-4EA3-B6E5-9147AED55BC8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ClientAuthAWSCredentials",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C8DD4D15-0C2D-43BC-9158-2D7DD1A33BBC}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRequestAWSCredentialsSuccess",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{F1BCDD2A-6F12-4E5F-A263-6237776FA727}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:OnRequestAWSCredentialsFail",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- }
- ],
- "m_eventMap": [
- {
- "Key": {
- "Value": 3736070646
- },
- "Value": {
- "m_eventName": "OnRequestAWSCredentialsSuccess",
- "m_eventId": {
- "Value": 3736070646
- },
- "m_eventSlotId": {
- "m_id": "{C8DD4D15-0C2D-43BC-9158-2D7DD1A33BBC}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{29C614BD-C1B3-4EA3-B6E5-9147AED55BC8}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 4193877825
- },
- "Value": {
- "m_eventName": "OnRequestAWSCredentialsFail",
- "m_eventId": {
- "Value": 4193877825
- },
- "m_eventSlotId": {
- "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{F1BCDD2A-6F12-4E5F-A263-6237776FA727}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- }
- ],
- "m_ebusName": "AWSCognitoAuthorizationNotificationBus",
- "m_busId": {
- "Value": 1100345364
- }
- }
- }
- }
- ],
- "m_connections": [
- {
- "Id": {
- "id": 22615268913974
- },
- "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)",
- "Components": {
- "Component_[14399681979807032845]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 14399681979807032845,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22610973946678
- },
- "slotId": {
- "m_id": "{4BB45954-74C5-4023-AFBE-C82638076FDD}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22576614208310
- },
- "slotId": {
- "m_id": "{9EFCF33C-EFBB-44F8-BBD9-0E4AA96D45AF}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22619563881270
- },
- "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(Initialize: In)",
- "Components": {
- "Component_[17573298986849197839]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 17573298986849197839,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22576614208310
- },
- "slotId": {
- "m_id": "{04D08EB7-F20A-4CF7-8BB6-C79804F6EB59}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22572319241014
- },
- "slotId": {
- "m_id": "{FAF2B1D0-815D-476E-BE0A-3C5B0A7181E2}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22623858848566
- },
- "Name": "srcEndpoint=(Initialize: Out), destEndpoint=(PasswordGrantSingleFactorSignInAsync: In)",
- "Components": {
- "Component_[9852640775697931695]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 9852640775697931695,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22572319241014
- },
- "slotId": {
- "m_id": "{354BF6A8-150D-4A9A-A19F-1B92ADC44A43}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22589499110198
- },
- "slotId": {
- "m_id": "{F24D94B3-CD7D-4719-AEAB-58B6AA087480}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22628153815862
- },
- "Name": "srcEndpoint=(Print: Out), destEndpoint=(RequestAWSCredentialsAsync: In)",
- "Components": {
- "Component_[12044830313862012006]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 12044830313862012006,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22606678979382
- },
- "slotId": {
- "m_id": "{F5EE89C0-AB89-4D06-BD4C-72CA40AB075B}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22593794077494
- },
- "slotId": {
- "m_id": "{EB37FB3D-48EB-4766-AD8C-7F03D100C7FA}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22632448783158
- },
- "Name": "srcEndpoint=(AuthenticationProviderNotificationBus Handler: ExecutionSlot:OnPasswordGrantSingleFactorSignInSuccess), destEndpoint=(Print: In)",
- "Components": {
- "Component_[11544107396556720999]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 11544107396556720999,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22585204142902
- },
- "slotId": {
- "m_id": "{F3E407C4-9D91-4077-A730-C2463570A9FC}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22606678979382
- },
- "slotId": {
- "m_id": "{269D4FDC-1137-45A3-8442-2A2DF98D6F6E}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22636743750454
- },
- "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsSuccess), destEndpoint=(Print: In)",
- "Components": {
- "Component_[16101269355489066265]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 16101269355489066265,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22580909175606
- },
- "slotId": {
- "m_id": "{BCA83F8F-E431-421D-8B01-A8B31C3C66B1}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22598089044790
- },
- "slotId": {
- "m_id": "{D3247169-ACA4-42FF-9CD9-7FC5D2888197}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22641038717750
- },
- "Name": "srcEndpoint=(AWSCognitoAuthorizationNotificationBus Handler: ExecutionSlot:OnRequestAWSCredentialsFail), destEndpoint=(Print: In)",
- "Components": {
- "Component_[6840692313652679972]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 6840692313652679972,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22568024273718
- },
- "slotId": {
- "m_id": "{5EEFCA6E-8B52-43A0-BFAF-512FDAB89E58}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22602384012086
- },
- "slotId": {
- "m_id": "{C0E7856E-AE8E-4151-9109-2E3B2A810054}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22645333685046
- },
- "Name": "srcEndpoint=(AuthenticationProviderNotificationBus Handler: ExecutionSlot:OnPasswordGrantSingleFactorSignInFail), destEndpoint=(Print: In)",
- "Components": {
- "Component_[72000609721937697]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 72000609721937697,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22563729306422
- },
- "slotId": {
- "m_id": "{C042D8B9-D834-4A5A-85E7-F9C775EF9784}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22555139371830
- },
- "slotId": {
- "m_id": "{9BB1F768-9D92-432C-9B8F-C99EB679CFB9}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 22649628652342
- },
- "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Initialize: In)",
- "Components": {
- "Component_[15648358861411868133]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 15648358861411868133,
- "sourceEndpoint": {
- "nodeId": {
- "id": 22559434339126
- },
- "slotId": {
- "m_id": "{1E81F46E-80CF-4CF6-8499-04539BBF244E}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 22610973946678
- },
- "slotId": {
- "m_id": "{F4ED50C1-0694-4E9F-A4E6-83565E517C1E}"
- }
- }
- }
- }
- }
- ]
- },
- "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
- "versionData": {
- "_grammarVersion": 1,
- "_runtimeVersion": 1
- },
- "m_variableCounter": 1,
- "GraphCanvasData": [
- {
- "Key": {
- "id": 22550844404534
- },
- "Value": {
- "ComponentData": {
- "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
- "$type": "SceneComponentSaveData",
- "ViewParams": {
- "Scale": 1.4170998772559926,
- "AnchorX": 224.40196228027344,
- "AnchorY": 163.7146453857422
- }
- }
- }
- }
- },
- {
- "Key": {
- "id": 22555139371830
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1720.0,
- 820.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{2B3195F2-1430-43F8-9E98-821F79AE9168}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22559434339126
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 340.0,
- 240.0
- ]
- },
- "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
- "$type": "EBusHandlerNodeDescriptorSaveData",
- "EventIds": [
- {
- "Value": 245425936
- }
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{571D5EB6-761E-4961-A9A8-47CEC16F8549}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22563729306422
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1200.0,
- 820.0
- ]
- },
- "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
- "$type": "EBusHandlerNodeDescriptorSaveData",
- "EventIds": [
- {
- "Value": 1293959492
- }
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{D64CFD59-5EB3-46F7-B778-B8C1B1BCE0F6}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22568024273718
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1200.0,
- 1360.0
- ]
- },
- "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
- "$type": "EBusHandlerNodeDescriptorSaveData",
- "EventIds": [
- {
- "Value": 4193877825
- }
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{897D9E34-AB55-4C02-B7CF-707DF3026F7A}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22572319241014
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 300.0,
- 620.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{86D69109-1347-4874-B913-DD03618254AA}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22576614208310
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1200.0,
- 300.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{646FDAC6-AC92-436C-84D3-6C7C067F7662}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22580909175606
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1200.0,
- 1100.0
- ]
- },
- "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
- "$type": "EBusHandlerNodeDescriptorSaveData",
- "EventIds": [
- {
- "Value": 3736070646
- }
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{A7E33C5C-1567-4ACF-AA26-07DCF02A0C31}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22585204142902
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1200.0,
- 540.0
- ]
- },
- "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
- "$type": "EBusHandlerNodeDescriptorSaveData",
- "EventIds": [
- {
- "Value": 1722702500
- }
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{73A7B670-D516-477F-BAD2-AC948A0F30AF}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22589499110198
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 700.0,
- 620.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8ED300CF-364B-4569-967D-2E1366510572}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22593794077494
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 280.0,
- 1120.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{59A81991-B4E6-48C4-9534-2DAF56ACE2EB}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22598089044790
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1720.0,
- 1100.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{1FB84C5F-E453-4160-947F-CF32F5E2628A}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22602384012086
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1720.0,
- 1360.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{3C3CA353-2C5F-4479-9FB5-BF089C18D90D}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22606678979382
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1720.0,
- 580.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8766AD8F-F6D5-4DAD-B56D-7B1542B9E2EF}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 22610973946678
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 680.0,
- 300.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{FD8E5258-B0B2-47E4-AEC1-06E61DA50C70}"
- }
- }
- }
- }
- ],
- "StatisticsHelper": {
- "InstanceCounter": [
- {
- "Key": 5842116761103598202,
- "Value": 1
- },
- {
- "Key": 5842117366976109617,
- "Value": 1
- },
- {
- "Key": 5842117367539594961,
- "Value": 1
- },
- {
- "Key": 5842117453459104876,
- "Value": 1
- },
- {
- "Key": 5842117453819001655,
- "Value": 1
- },
- {
- "Key": 10684225535275896474,
- "Value": 4
- },
- {
- "Key": 13774516282682374181,
- "Value": 1
- },
- {
- "Key": 13774516283013331095,
- "Value": 1
- },
- {
- "Key": 13774516352051377806,
- "Value": 1
- },
- {
- "Key": 13774516386968943251,
- "Value": 1
- },
- {
- "Key": 13774516392820282243,
- "Value": 1
- }
- ]
- }
- }
- }
- }
- }
- }
|