├── .github ├── solutionid_validator.sh └── workflows │ └── maintainer_workflows.yml ├── .gitignore ├── BackendComponentSamples ├── .gitignore ├── .npmignore ├── ApiGatewayPythonApiArchitecture.png ├── FargateNodejsApiArchitecture.png ├── NodeJsFargateApi │ ├── .dockerignore │ ├── Dockerfile │ ├── package-lock.json │ ├── package.json │ └── server.js ├── PythonServerlessHttpApiLambda │ ├── get_player_data.py │ ├── requirements.txt │ └── set_player_data.py ├── README.md ├── bin │ └── backend_component_samples.ts ├── cdk.json ├── jest.config.js ├── lib │ ├── NodeJsFargateApiStack.ts │ └── PythonServerlessHttpApiStack.ts ├── package-lock.json ├── package.json └── tsconfig.json ├── BackendFeatures ├── AmazonGameLiftIntegration │ ├── .gitignore │ ├── .npmignore │ ├── AmazonGameLiftIntegrationArchitecture.png │ ├── CloudWatchDashboard.png │ ├── LinuxServerBuild │ │ ├── amazon-cloudwatch-agent.json │ │ ├── common-config.toml │ │ └── install.sh │ ├── README.md │ ├── SimpleServer │ │ ├── Dockerfile │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── buildserver.ps1 │ │ ├── buildserver.sh │ │ ├── copy_prebuilt_game_server_binary.ps1 │ │ └── copy_prebuilt_game_server_binary.sh │ ├── bin │ │ └── amazon_gamelift_integration.ts │ ├── cdk.json │ ├── jest.config.js │ ├── lambda │ │ ├── get_match_status.py │ │ ├── process_matchmaking_events.py │ │ ├── request_matchmaking.py │ │ └── requirements.txt │ ├── lib │ │ ├── amazon_gamelift_integration-backend.ts │ │ └── amazon_gamelift_integration-gamelift-resources.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── DeltaLakeIntegration │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── bin │ │ └── delta_lake_integration.ts │ ├── cdk.json │ ├── jest.config.js │ ├── lambda │ │ ├── index.py │ │ └── requirements.txt │ ├── lib │ │ └── delta_lake_integration-backend.ts │ ├── package-lock.json │ ├── package.json │ ├── tests │ │ ├── requirements.txt │ │ └── synthetic_events.py │ └── tsconfig.json ├── FriendsGraphIntegration │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── assets │ │ ├── FriendsGraphIntegrationArchitecture.png │ │ ├── SampleCollaborativeFilter.png │ │ └── SampleFriendsGraph.png │ ├── bin │ │ └── friends_graph_integration.ts │ ├── cdk.json │ ├── jest.config.js │ ├── lambda │ │ ├── delete_friend.py │ │ ├── delete_player.py │ │ ├── get_friends.py │ │ ├── get_player.py │ │ ├── requirements.txt │ │ ├── set_friend.py │ │ └── set_player.py │ ├── lib │ │ ├── friends_graph_integration-backend.ts │ │ └── friends_graph_integration-vpc-stack.ts │ ├── package-lock.json │ ├── package.json │ ├── test │ │ └── friends_graph_integration.test.ts │ └── tsconfig.json └── SimpleWebsocketChat │ ├── .gitignore │ ├── .npmignore │ ├── Readme.md │ ├── SimpleWebsocketApp │ ├── .dockerignore │ ├── Dockerfile │ ├── RedisManager.js │ ├── package-lock.json │ ├── package.json │ └── server.js │ ├── WebsocketChatArchitecture.png │ ├── bin │ └── simple_websocket_chat.ts │ ├── cdk.json │ ├── jest.config.js │ ├── lib │ └── SimpleWebsocketChat.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CustomIdentityComponent ├── .gitignore ├── .npmignore ├── README.md ├── bin │ └── custom_identity_component.ts ├── cdk.json ├── jest.config.js ├── lambda │ ├── encryption_and_decryption.py │ ├── generate_keys.py │ ├── login_as_guest.py │ ├── login_with_apple_id.py │ ├── login_with_cognito.py │ ├── login_with_facebook.py │ ├── login_with_google_play.py │ ├── login_with_steam.py │ ├── refresh_access_token.py │ └── requirements.txt ├── lib │ └── custom_identity_component-stack.ts ├── package-lock.json ├── package.json └── tsconfig.json ├── DeploymentPipeline ├── .gitignore ├── .npmignore ├── README.md ├── bin │ └── deployment_pipeline.ts ├── cdk.json ├── jest.config.js ├── lib │ └── deployment_pipeline-stack.ts ├── package-lock.json ├── package.json ├── test │ └── deployment_pipeline.test.ts └── tsconfig.json ├── GodotSample ├── .gitattributes ├── .gitignore ├── AWSGameSDK │ └── AWSGameSDK.gd ├── BackendFeatures │ └── AmazonGameLiftIntegration │ │ ├── AmazonGameLiftIntegration.gd │ │ └── AmazonGameLiftIntegration.tscn ├── README.md ├── Samples │ ├── FacebookLogin │ │ ├── FacebookLogin.gd │ │ └── FacebookLogin.tscn │ ├── GuestIdentityAndRestApiBackend │ │ ├── GuestIdentityAndRestApiBackend.gd │ │ └── GuestIdentityAndRestApiBackend.tscn │ └── SteamIdLogin │ │ ├── SteamIdLogin.gd │ │ └── SteamIdLogin.tscn ├── icon.svg ├── icon.svg.import └── project.godot ├── LICENSE ├── README.md ├── UnitySample ├── .gitignore ├── Assets │ ├── AWSGameSDK.meta │ ├── AWSGameSDK │ │ ├── AWSGameSDKClient.cs │ │ ├── AWSGameSDKClient.cs.meta │ │ ├── AWSGameSDKSerializationClasses.cs │ │ ├── AWSGameSDKSerializationClasses.cs.meta │ │ ├── WebsocketClient.cs │ │ └── WebsocketClient.cs.meta │ ├── BackendFeatures.meta │ ├── BackendFeatures │ │ ├── AmazonGameLiftIntegration.meta │ │ ├── AmazonGameLiftIntegration │ │ │ ├── AmazonGameLiftIntegration.cs │ │ │ ├── AmazonGameLiftIntegration.cs.meta │ │ │ ├── AmazonGameLiftIntegration.unity │ │ │ ├── AmazonGameLiftIntegration.unity.meta │ │ │ ├── SimpleServerClient.cs │ │ │ └── SimpleServerClient.cs.meta │ │ ├── FriendsGraph.meta │ │ ├── FriendsGraph │ │ │ ├── FriendGraph.cs │ │ │ ├── FriendGraph.cs.meta │ │ │ ├── FriendGraph.unity │ │ │ └── FriendGraph.unity.meta │ │ ├── SimpleWebsocketChat.meta │ │ └── SimpleWebsocketChat │ │ │ ├── ChatSerializationClasses.cs │ │ │ ├── ChatSerializationClasses.cs.meta │ │ │ ├── SimpleWebsocketChat.cs │ │ │ ├── SimpleWebsocketChat.cs.meta │ │ │ ├── SimpleWebsocketChat.unity │ │ │ └── SimpleWebsocketChat.unity.meta │ ├── Samples.meta │ └── Samples │ │ ├── AppleIdLogin.meta │ │ ├── AppleIdLogin │ │ ├── AppleIdLogin.unity │ │ ├── AppleIdLogin.unity.meta │ │ ├── AppleIdLoginTest.cs │ │ └── AppleIdLoginTest.cs.meta │ │ ├── FacebookLogin.meta │ │ ├── FacebookLogin │ │ ├── FacebookLogin.unity │ │ ├── FacebookLogin.unity.meta │ │ ├── FacebookLoginTest.cs │ │ └── FacebookLoginTest.cs.meta │ │ ├── GooglePlayLogin.meta │ │ ├── GooglePlayLogin │ │ ├── GooglePlayLogin.unity │ │ ├── GooglePlayLogin.unity.meta │ │ ├── GooglePlayLoginTest.cs │ │ └── GooglePlayLoginTest.cs.meta │ │ ├── GuestIdentityAndRestApiBackend.meta │ │ ├── GuestIdentityAndRestApiBackend │ │ ├── GuestIdentityAndRestApiBackend.cs │ │ ├── GuestIdentityAndRestApiBackend.cs.meta │ │ ├── GuestIdentityAndRestApiBackend.unity │ │ └── GuestIdentityAndRestApiBackend.unity.meta │ │ ├── SteamLogin.meta │ │ └── SteamLogin │ │ ├── SteamLogin.unity │ │ ├── SteamLogin.unity.meta │ │ ├── SteamLoginTest.cs │ │ └── SteamLoginTest.cs.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── BurstAotSettings_StandaloneOSX.json │ ├── BurstAotSettings_iOS.json │ ├── ClusterInputManager.asset │ ├── CommonBurstAotSettings.json │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset └── README.md ├── UnrealSample ├── .gitignore ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEngine.ini │ ├── DefaultGame.ini │ └── DefaultInput.ini ├── Content │ ├── BackendFeatures │ │ ├── AmazonGameLiftIntegration.umap │ │ ├── DatabricksDeltaLakeIntegration.umap │ │ └── SimpleWebsocketChat.umap │ ├── Samples │ │ ├── AppleIdLoginTest │ │ │ ├── TestLevel.umap │ │ │ └── TestLevel_HLOD0_Instancing.uasset │ │ ├── FacebookLoginTest │ │ │ └── FacebookLoginTest.umap │ │ ├── GooglePlayLoginTest │ │ │ └── GooglePlayLoginTest.umap │ │ ├── GuestIdentityAndRestApiTest │ │ │ └── GuestIdentityAndRestApiTest.umap │ │ ├── SteamLoginTest │ │ │ └── SteamLoginTest.umap │ │ └── TestLevel.umap │ ├── __ExternalActors__ │ │ ├── Samples │ │ │ ├── AppleIdLoginTest │ │ │ │ └── TestLevel │ │ │ │ │ ├── 2 │ │ │ │ │ └── 17 │ │ │ │ │ │ └── 8ZCEHNPG2BSNWB0E7UN15K.uasset │ │ │ │ │ ├── 6 │ │ │ │ │ └── K1 │ │ │ │ │ │ └── K52334YNWZ2C88TB9HPM75.uasset │ │ │ │ │ ├── A │ │ │ │ │ └── EK │ │ │ │ │ │ └── JSV2TOW66OR338BQGWPMAX.uasset │ │ │ │ │ ├── B │ │ │ │ │ └── KM │ │ │ │ │ │ └── M7JMUBT9R4SQ40GQREPF1K.uasset │ │ │ │ │ ├── C │ │ │ │ │ └── XU │ │ │ │ │ │ └── IP7QN428PZU9210HFMP5PB.uasset │ │ │ │ │ ├── D │ │ │ │ │ ├── BR │ │ │ │ │ │ └── L7HOB3ER3S1C9EGZW18SLO.uasset │ │ │ │ │ └── EV │ │ │ │ │ │ └── 7KEE2V5CHELOM05R4M21HW.uasset │ │ │ │ │ └── E │ │ │ │ │ └── O9 │ │ │ │ │ └── MWYGIFOMILUBDXMNO5K18Y.uasset │ │ │ ├── GuestIdentityAndRestApiBackend │ │ │ │ └── TestLevel │ │ │ │ │ ├── 1 │ │ │ │ │ └── FM │ │ │ │ │ │ └── MUKX4B3GHDO9QJS94G23K7.uasset │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 8U │ │ │ │ │ │ └── YEG5E9HOFEN2DPNHM8CA0D.uasset │ │ │ │ │ └── IE │ │ │ │ │ │ └── BMV2J5GLOZLB46RIHV5977.uasset │ │ │ │ │ ├── 3 │ │ │ │ │ └── EE │ │ │ │ │ │ └── D4DFTT9YY88UF403T5WM4H.uasset │ │ │ │ │ ├── 5 │ │ │ │ │ └── 6E │ │ │ │ │ │ └── 6IN0ACJ0UED9SWIE7DWV7T.uasset │ │ │ │ │ ├── 6 │ │ │ │ │ └── H6 │ │ │ │ │ │ └── DBGIP3NS16F29KNSQ1URD6.uasset │ │ │ │ │ ├── 9 │ │ │ │ │ └── YN │ │ │ │ │ │ └── U7ILFYOZVD174GDIB5LTPP.uasset │ │ │ │ │ ├── B │ │ │ │ │ └── EC │ │ │ │ │ │ └── CLWNTMT0ERIWSHJOW498WA.uasset │ │ │ │ │ └── E │ │ │ │ │ └── ME │ │ │ │ │ └── J7CDV4Y2BO0IZFBGNSLVCE.uasset │ │ │ └── TestLevel │ │ │ │ ├── 1 │ │ │ │ └── UA │ │ │ │ │ └── OQZ109E418DXBRYWPURQDR.uasset │ │ │ │ ├── 2 │ │ │ │ └── RH │ │ │ │ │ └── ZH4OC5PETM267555EC510Y.uasset │ │ │ │ ├── 3 │ │ │ │ └── Y8 │ │ │ │ │ └── W8SWYGWCASFVDPB10I6OL7.uasset │ │ │ │ ├── 4 │ │ │ │ └── SH │ │ │ │ │ └── S5JJRJFAI69NTGCLE3KXJG.uasset │ │ │ │ ├── 6 │ │ │ │ └── 8S │ │ │ │ │ └── O2XZB3DOPYA409KGFOOHCT.uasset │ │ │ │ ├── 8 │ │ │ │ └── J0 │ │ │ │ │ └── LV18E46TPUL1ZU4EY87BEU.uasset │ │ │ │ ├── B │ │ │ │ └── J2 │ │ │ │ │ └── LVID8W0NJX220CWIUH7VWN.uasset │ │ │ │ └── C │ │ │ │ ├── OJ │ │ │ │ └── GJ5HFNPXF6HSG2CO3G7SD3.uasset │ │ │ │ └── XF │ │ │ │ └── F64SMT7LCEE9S3POBQC4GU.uasset │ │ └── TestLevel │ │ │ ├── 0 │ │ │ ├── 0H │ │ │ │ └── M3E95DPM20OF8P26HON3N5.uasset │ │ │ ├── DH │ │ │ │ └── EQZYM5SUO5CZU8XNK7SBCN.uasset │ │ │ ├── IF │ │ │ │ └── RILI4K23XHWX8CLI3NYG8C.uasset │ │ │ ├── NP │ │ │ │ └── BHNE60OYQ1GFPUCMEBKTJK.uasset │ │ │ └── O4 │ │ │ │ └── SYXX8EASQX81EDZP03ISMM.uasset │ │ │ ├── 1 │ │ │ ├── 4Q │ │ │ │ └── O5WD7N0CHPZ6HCR8JDMJKN.uasset │ │ │ ├── AO │ │ │ │ └── 8BNTBG7BVWMNJHLLW5V85F.uasset │ │ │ ├── MB │ │ │ │ └── 4Z0ACAFEPT1NXHTWI4LI4V.uasset │ │ │ ├── NE │ │ │ │ └── 60AXFWT7AY1G8OW498A0NQ.uasset │ │ │ ├── QV │ │ │ │ └── 4WRVRZN7QGLUSLDJXV7W5D.uasset │ │ │ ├── TM │ │ │ │ └── H5VYH7SR5T1PNLBM0VSE39.uasset │ │ │ └── WK │ │ │ │ └── 1Z2XE8QZNR3Y2FCP7WFSNZ.uasset │ │ │ ├── 2 │ │ │ ├── 57 │ │ │ │ └── UB1FCAO2QWTDL4EFBRX23R.uasset │ │ │ ├── FK │ │ │ │ └── 19HKGJZAIWS0O9K1X3S7ZW.uasset │ │ │ ├── IL │ │ │ │ └── QEAWAPG00ELBQ6YTSW5HZA.uasset │ │ │ ├── RH │ │ │ │ └── FRVH4CC6NZJ0RBMHLD5SQE.uasset │ │ │ └── RP │ │ │ │ └── FSJQNJOYIEA274933T87UF.uasset │ │ │ ├── 3 │ │ │ ├── 4F │ │ │ │ └── 35N00CWO8PCGVAWKS5A1S0.uasset │ │ │ ├── E6 │ │ │ │ └── CZT0ZU4K0ILLXQDLXYB9QC.uasset │ │ │ ├── MA │ │ │ │ └── EPPJWEW440D5RUKNUP3RNJ.uasset │ │ │ ├── R6 │ │ │ │ └── 1BZ573QQ33WKL8TP5P0B27.uasset │ │ │ ├── SI │ │ │ │ └── Z39O8X4ENU2QQZNQC9MDTC.uasset │ │ │ ├── SY │ │ │ │ └── OMSZKKKAI6QRK4W0ZO8ZQA.uasset │ │ │ ├── VF │ │ │ │ └── 1CASQR6IP3ETHJI6UTKKEA.uasset │ │ │ ├── WS │ │ │ │ └── VVRRSNM4CUWTQHMLW6BJPU.uasset │ │ │ └── ZI │ │ │ │ └── J6Y0NQDAJUSX9HG7ETQ8MO.uasset │ │ │ ├── 4 │ │ │ ├── 8D │ │ │ │ └── Y881UOQQSR584701QQE162.uasset │ │ │ ├── NK │ │ │ │ └── PCHJ4MM2F7V2IGOHW3JGTH.uasset │ │ │ ├── RQ │ │ │ │ └── W7O4XLSZVDQ2K8U4DDN523.uasset │ │ │ └── VP │ │ │ │ └── LOO4TF6IX5OGPA1SSW6L6O.uasset │ │ │ ├── 5 │ │ │ ├── 5S │ │ │ │ └── WGY3KO0PFFCZJZJ65G7JON.uasset │ │ │ ├── BT │ │ │ │ └── 0Y6N4H4GRHOQI657RCULRS.uasset │ │ │ └── FB │ │ │ │ └── A6M2ABHFRMF63RBW2EYL5R.uasset │ │ │ ├── 6 │ │ │ ├── 03 │ │ │ │ └── 6B9OCJG2HWVPHTXG81EQ0X.uasset │ │ │ └── KF │ │ │ │ └── 6JF8P83H1JW569HWKNDBLX.uasset │ │ │ ├── 7 │ │ │ ├── 86 │ │ │ │ └── 6FN7M43QUOZDWKWMQ5TNZR.uasset │ │ │ ├── HX │ │ │ │ └── SNN6TWLFCAVFKEA5VR87C9.uasset │ │ │ ├── KS │ │ │ │ └── PQSGNT82T45MXSMGS8VNKW.uasset │ │ │ └── PE │ │ │ │ └── MSSYQS2628FGQ8G4V4XMKU.uasset │ │ │ ├── 8 │ │ │ ├── EX │ │ │ │ └── JB4HR1TB4ECXIQEHUFN46X.uasset │ │ │ ├── FX │ │ │ │ └── C5PS3VROFDOAJB83KH40DK.uasset │ │ │ ├── G4 │ │ │ │ └── FBZTBKVMGRPYI9D6QN06S1.uasset │ │ │ ├── YP │ │ │ │ └── 86X89FT50T6ZAHXF6H0F17.uasset │ │ │ └── ZV │ │ │ │ └── 7ANPVHYVI1SW1XI6NASM4F.uasset │ │ │ ├── 9 │ │ │ ├── 82 │ │ │ │ └── VJID8KUAH6GS6ZKKDJ8WMG.uasset │ │ │ ├── 0J │ │ │ │ └── F832P6KBANG2KDS6HTS9E9.uasset │ │ │ ├── 2M │ │ │ │ └── MYI3NTCAEEXJUGJGL2WHKS.uasset │ │ │ ├── 8E │ │ │ │ └── KPQFG6II3VX66UOUKVB11T.uasset │ │ │ ├── OT │ │ │ │ └── ZGOBNOT6ZZYJY4PYSRX80X.uasset │ │ │ ├── S3 │ │ │ │ └── 1X1458TOL3DE211JNI4J7Q.uasset │ │ │ └── VA │ │ │ │ └── EX41YI3MI2PB84TBKGBRM0.uasset │ │ │ ├── B │ │ │ ├── 3O │ │ │ │ └── 2OM742N13XO1LU3MKLECNM.uasset │ │ │ ├── 3Q │ │ │ │ └── M024JV4AZ30UYXLTGV5ETH.uasset │ │ │ ├── H7 │ │ │ │ └── 0EVUA3KO1A4O28VHKOGFHR.uasset │ │ │ ├── K8 │ │ │ │ └── BEK6IU3ULPCDTJXB2CJW4S.uasset │ │ │ ├── P3 │ │ │ │ └── M6VGE5XFL6KD6FTERF5YVU.uasset │ │ │ ├── R7 │ │ │ │ └── BKWV3BW3HUNYQ63GCHHA3T.uasset │ │ │ └── YN │ │ │ │ └── 5TZMTVLDP6IGQ7VLGEJJKP.uasset │ │ │ ├── C │ │ │ ├── 6T │ │ │ │ └── VBBWC65FV0X4PBF3PONLNU.uasset │ │ │ ├── DZ │ │ │ │ └── KKBUDN33PKCTHDEC5YJKSX.uasset │ │ │ ├── EQ │ │ │ │ └── 6PX1D1O35EMNGA4K5KDXNB.uasset │ │ │ ├── FN │ │ │ │ └── B29HIYP10PSIR457JSJUZU.uasset │ │ │ ├── TY │ │ │ │ └── 5HPXLEG8CO562HIWMX5NX7.uasset │ │ │ └── VW │ │ │ │ └── VQIMUP3EWTXXFCTKMNL4A2.uasset │ │ │ ├── D │ │ │ ├── 0K │ │ │ │ └── BLNYI45Z34ZK7XIFH08BEN.uasset │ │ │ ├── IW │ │ │ │ └── H7RABA5O1U8NJ9ZVZOBSF7.uasset │ │ │ ├── KN │ │ │ │ └── 9R9P0RDFT42JHZ7D5NAFN0.uasset │ │ │ ├── LC │ │ │ │ └── P1C7IDNV135T9APVJZDE2B.uasset │ │ │ ├── NH │ │ │ │ └── SU3765BFEQQIN45SQGXS10.uasset │ │ │ └── WR │ │ │ │ └── 24J1SVL7YNTQEPQP3AQMI0.uasset │ │ │ └── E │ │ │ ├── K2 │ │ │ └── YKSRJ3TFUQIS81026F8Y0T.uasset │ │ │ ├── Q4 │ │ │ └── EFYV8344BLVD450JJFFKEG.uasset │ │ │ └── WH │ │ │ └── PQBRQ8DWNXRQSVNC8GZZRI.uasset │ └── __ExternalObjects__ │ │ ├── Samples │ │ ├── AppleIdLoginTest │ │ │ └── TestLevel │ │ │ │ ├── 5 │ │ │ │ └── W8 │ │ │ │ │ └── OE203KIN1GGKN6XU0U3BHS.uasset │ │ │ │ ├── 6 │ │ │ │ └── 7H │ │ │ │ │ └── 58Y7M7ET7OTD9S7ETOE9H7.uasset │ │ │ │ ├── 7 │ │ │ │ └── Z3 │ │ │ │ │ └── WXNTI3MR0V1MGH0CPBQSQC.uasset │ │ │ │ ├── A │ │ │ │ └── C7 │ │ │ │ │ └── OWP9X4Z850H124TEUSWCS5.uasset │ │ │ │ └── B │ │ │ │ └── Z8 │ │ │ │ └── WWKSS1MJO67T6V764I6MXA.uasset │ │ ├── GuestIdentityAndRestApiBackend │ │ │ └── TestLevel │ │ │ │ ├── 0 │ │ │ │ └── 6H │ │ │ │ │ └── 28OS5PCL00W6RADO6Z2R26.uasset │ │ │ │ ├── 2 │ │ │ │ └── O9 │ │ │ │ │ └── XGJAFE4UBTUFL57JMQJZOP.uasset │ │ │ │ ├── 3 │ │ │ │ └── 04 │ │ │ │ │ └── M0XC2LCJ9IO6BGB3M2ZX05.uasset │ │ │ │ ├── 5 │ │ │ │ └── 0U │ │ │ │ │ └── A973IL9ZFVGM6RDJ5XBGDU.uasset │ │ │ │ └── C │ │ │ │ └── 7Y │ │ │ │ └── LC5KFYO6WSYDXWHHZM8CV6.uasset │ │ └── TestLevel │ │ │ ├── 4 │ │ │ └── XI │ │ │ │ └── 1G4UG7JR26X6TX1UN0SPWK.uasset │ │ │ ├── D │ │ │ ├── 3F │ │ │ │ └── P1PGM88XDDJ5WE1RN5H7GE.uasset │ │ │ ├── BV │ │ │ │ └── 297TXIIK53P5XK26VG9KHB.uasset │ │ │ └── YA │ │ │ │ └── NJ14WEWKUTKI1G1E89ST2R.uasset │ │ │ └── E │ │ │ └── GX │ │ │ └── F0AJGTXCOUNM3SK6GOG5KY.uasset │ │ └── TestLevel │ │ ├── 7 │ │ └── IE │ │ │ └── 7GJMEG9VSCHPGHFJM648P6.uasset │ │ ├── 8 │ │ └── EC │ │ │ └── MQQBNZPPNBWZ3ETRE7HU8A.uasset │ │ ├── A │ │ └── ZO │ │ │ └── 4WVR7E8KX2WIM7AJ3S7A70.uasset │ │ ├── C │ │ └── EG │ │ │ └── XGQKI8TLOYSQO69G2FA9PE.uasset │ │ └── E │ │ └── 8L │ │ └── 3BHHXYUBR5XYPEWAZEUFDW.uasset ├── README.md ├── Source │ ├── UnrealSample.Target.cs │ ├── UnrealSample │ │ ├── AWSGameSDK │ │ │ ├── AWSGameSDK.cpp │ │ │ ├── AWSGameSDK.h │ │ │ ├── WebSocketClient.cpp │ │ │ └── WebSocketClient.h │ │ ├── BackendFeatures │ │ │ ├── AmazonGameLiftIntegration │ │ │ │ ├── AmazonGameLiftIntegration.cpp │ │ │ │ └── AmazonGameLiftIntegration.h │ │ │ ├── DatabricksDeltaLakeIntegration │ │ │ │ ├── DatabricksDeltaLakeIntegration.cpp │ │ │ │ └── DatabricksDeltaLakeIntegration.h │ │ │ └── SimpleWebsocketChat │ │ │ │ ├── SimpleWebsocketChat.cpp │ │ │ │ └── SimpleWebsocketChat.h │ │ ├── PlayerDataManager.cpp │ │ ├── PlayerDataManager.h │ │ ├── PlayerDataSave.cpp │ │ ├── PlayerDataSave.h │ │ ├── Samples │ │ │ ├── AppleIdLoginTest │ │ │ │ ├── AppleIdLoginTest.cpp │ │ │ │ └── AppleIdLoginTest.h │ │ │ ├── FacebookLoginTest │ │ │ │ ├── FacebookLoginTest.cpp │ │ │ │ └── FacebookLoginTest.h │ │ │ ├── GooglePlayLoginTest │ │ │ │ ├── GooglePlayLoginTest.cpp │ │ │ │ └── GooglePlayLoginTest.h │ │ │ ├── GuestIdentityAndRestApiBackend │ │ │ │ ├── BackendIntegrationTest.cpp │ │ │ │ └── BackendIntegrationTest.h │ │ │ └── SteamLoginTest │ │ │ │ ├── SteamLoginTest.cpp │ │ │ │ └── SteamLoginTest.h │ │ ├── UnrealSample.Build.cs │ │ ├── UnrealSample.cpp │ │ ├── UnrealSample.h │ │ ├── UnrealSampleGameModeBase.cpp │ │ └── UnrealSampleGameModeBase.h │ └── UnrealSampleEditor.Target.cs └── UnrealSample.uproject └── highlevelarchitecture.png /.github/solutionid_validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/.github/solutionid_validator.sh -------------------------------------------------------------------------------- /.github/workflows/maintainer_workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/.github/workflows/maintainer_workflows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /BackendComponentSamples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/.gitignore -------------------------------------------------------------------------------- /BackendComponentSamples/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/.npmignore -------------------------------------------------------------------------------- /BackendComponentSamples/ApiGatewayPythonApiArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/ApiGatewayPythonApiArchitecture.png -------------------------------------------------------------------------------- /BackendComponentSamples/FargateNodejsApiArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/FargateNodejsApiArchitecture.png -------------------------------------------------------------------------------- /BackendComponentSamples/NodeJsFargateApi/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /BackendComponentSamples/NodeJsFargateApi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/NodeJsFargateApi/Dockerfile -------------------------------------------------------------------------------- /BackendComponentSamples/NodeJsFargateApi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/NodeJsFargateApi/package-lock.json -------------------------------------------------------------------------------- /BackendComponentSamples/NodeJsFargateApi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/NodeJsFargateApi/package.json -------------------------------------------------------------------------------- /BackendComponentSamples/NodeJsFargateApi/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/NodeJsFargateApi/server.js -------------------------------------------------------------------------------- /BackendComponentSamples/PythonServerlessHttpApiLambda/get_player_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/PythonServerlessHttpApiLambda/get_player_data.py -------------------------------------------------------------------------------- /BackendComponentSamples/PythonServerlessHttpApiLambda/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/PythonServerlessHttpApiLambda/requirements.txt -------------------------------------------------------------------------------- /BackendComponentSamples/PythonServerlessHttpApiLambda/set_player_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/PythonServerlessHttpApiLambda/set_player_data.py -------------------------------------------------------------------------------- /BackendComponentSamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/README.md -------------------------------------------------------------------------------- /BackendComponentSamples/bin/backend_component_samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/bin/backend_component_samples.ts -------------------------------------------------------------------------------- /BackendComponentSamples/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/cdk.json -------------------------------------------------------------------------------- /BackendComponentSamples/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/jest.config.js -------------------------------------------------------------------------------- /BackendComponentSamples/lib/NodeJsFargateApiStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/lib/NodeJsFargateApiStack.ts -------------------------------------------------------------------------------- /BackendComponentSamples/lib/PythonServerlessHttpApiStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/lib/PythonServerlessHttpApiStack.ts -------------------------------------------------------------------------------- /BackendComponentSamples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/package-lock.json -------------------------------------------------------------------------------- /BackendComponentSamples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/package.json -------------------------------------------------------------------------------- /BackendComponentSamples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendComponentSamples/tsconfig.json -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/.gitignore -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/.npmignore -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegrationArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegrationArchitecture.png -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/CloudWatchDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/CloudWatchDashboard.png -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/LinuxServerBuild/amazon-cloudwatch-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/LinuxServerBuild/amazon-cloudwatch-agent.json -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/LinuxServerBuild/common-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/LinuxServerBuild/common-config.toml -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/LinuxServerBuild/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/LinuxServerBuild/install.sh -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/README.md -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/SimpleServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/SimpleServer/Dockerfile -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/SimpleServer/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/SimpleServer/Server.cpp -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/SimpleServer/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/SimpleServer/Server.h -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/SimpleServer/buildserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/SimpleServer/buildserver.ps1 -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/SimpleServer/buildserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/SimpleServer/buildserver.sh -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/SimpleServer/copy_prebuilt_game_server_binary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/SimpleServer/copy_prebuilt_game_server_binary.ps1 -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/SimpleServer/copy_prebuilt_game_server_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/SimpleServer/copy_prebuilt_game_server_binary.sh -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/bin/amazon_gamelift_integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/bin/amazon_gamelift_integration.ts -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/cdk.json -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/jest.config.js -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/lambda/get_match_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/lambda/get_match_status.py -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/lambda/process_matchmaking_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/lambda/process_matchmaking_events.py -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/lambda/request_matchmaking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/lambda/request_matchmaking.py -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/lambda/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/lambda/requirements.txt -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/lib/amazon_gamelift_integration-backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/lib/amazon_gamelift_integration-backend.ts -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/lib/amazon_gamelift_integration-gamelift-resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/lib/amazon_gamelift_integration-gamelift-resources.ts -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/package-lock.json -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/package.json -------------------------------------------------------------------------------- /BackendFeatures/AmazonGameLiftIntegration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/AmazonGameLiftIntegration/tsconfig.json -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/.gitignore -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/.npmignore -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/README.md -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/bin/delta_lake_integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/bin/delta_lake_integration.ts -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/cdk.json -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/jest.config.js -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/lambda/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/lambda/index.py -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/lambda/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/lambda/requirements.txt -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/lib/delta_lake_integration-backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/lib/delta_lake_integration-backend.ts -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/package-lock.json -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/package.json -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | mimesis==6.0.0 3 | requests -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/tests/synthetic_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/tests/synthetic_events.py -------------------------------------------------------------------------------- /BackendFeatures/DeltaLakeIntegration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/DeltaLakeIntegration/tsconfig.json -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/.gitignore -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/.npmignore -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/README.md -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/assets/FriendsGraphIntegrationArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/assets/FriendsGraphIntegrationArchitecture.png -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/assets/SampleCollaborativeFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/assets/SampleCollaborativeFilter.png -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/assets/SampleFriendsGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/assets/SampleFriendsGraph.png -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/bin/friends_graph_integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/bin/friends_graph_integration.ts -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/cdk.json -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/jest.config.js -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lambda/delete_friend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lambda/delete_friend.py -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lambda/delete_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lambda/delete_player.py -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lambda/get_friends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lambda/get_friends.py -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lambda/get_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lambda/get_player.py -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lambda/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lambda/requirements.txt -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lambda/set_friend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lambda/set_friend.py -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lambda/set_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lambda/set_player.py -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lib/friends_graph_integration-backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lib/friends_graph_integration-backend.ts -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/lib/friends_graph_integration-vpc-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/lib/friends_graph_integration-vpc-stack.ts -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/package-lock.json -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/package.json -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/test/friends_graph_integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/test/friends_graph_integration.test.ts -------------------------------------------------------------------------------- /BackendFeatures/FriendsGraphIntegration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/FriendsGraphIntegration/tsconfig.json -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/.gitignore -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/.npmignore -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/Readme.md -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/Dockerfile -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/RedisManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/RedisManager.js -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/package-lock.json -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/package.json -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketApp/server.js -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/WebsocketChatArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/WebsocketChatArchitecture.png -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/bin/simple_websocket_chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/bin/simple_websocket_chat.ts -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/cdk.json -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/jest.config.js -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/lib/SimpleWebsocketChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/lib/SimpleWebsocketChat.ts -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/package-lock.json -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/package.json -------------------------------------------------------------------------------- /BackendFeatures/SimpleWebsocketChat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/BackendFeatures/SimpleWebsocketChat/tsconfig.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CustomIdentityComponent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/.gitignore -------------------------------------------------------------------------------- /CustomIdentityComponent/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/.npmignore -------------------------------------------------------------------------------- /CustomIdentityComponent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/README.md -------------------------------------------------------------------------------- /CustomIdentityComponent/bin/custom_identity_component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/bin/custom_identity_component.ts -------------------------------------------------------------------------------- /CustomIdentityComponent/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/cdk.json -------------------------------------------------------------------------------- /CustomIdentityComponent/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/jest.config.js -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/encryption_and_decryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/encryption_and_decryption.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/generate_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/generate_keys.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/login_as_guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/login_as_guest.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/login_with_apple_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/login_with_apple_id.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/login_with_cognito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/login_with_cognito.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/login_with_facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/login_with_facebook.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/login_with_google_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/login_with_google_play.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/login_with_steam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/login_with_steam.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/refresh_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/refresh_access_token.py -------------------------------------------------------------------------------- /CustomIdentityComponent/lambda/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lambda/requirements.txt -------------------------------------------------------------------------------- /CustomIdentityComponent/lib/custom_identity_component-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/lib/custom_identity_component-stack.ts -------------------------------------------------------------------------------- /CustomIdentityComponent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/package-lock.json -------------------------------------------------------------------------------- /CustomIdentityComponent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/package.json -------------------------------------------------------------------------------- /CustomIdentityComponent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/CustomIdentityComponent/tsconfig.json -------------------------------------------------------------------------------- /DeploymentPipeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/.gitignore -------------------------------------------------------------------------------- /DeploymentPipeline/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/.npmignore -------------------------------------------------------------------------------- /DeploymentPipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/README.md -------------------------------------------------------------------------------- /DeploymentPipeline/bin/deployment_pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/bin/deployment_pipeline.ts -------------------------------------------------------------------------------- /DeploymentPipeline/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/cdk.json -------------------------------------------------------------------------------- /DeploymentPipeline/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/jest.config.js -------------------------------------------------------------------------------- /DeploymentPipeline/lib/deployment_pipeline-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/lib/deployment_pipeline-stack.ts -------------------------------------------------------------------------------- /DeploymentPipeline/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/package-lock.json -------------------------------------------------------------------------------- /DeploymentPipeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/package.json -------------------------------------------------------------------------------- /DeploymentPipeline/test/deployment_pipeline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/test/deployment_pipeline.test.ts -------------------------------------------------------------------------------- /DeploymentPipeline/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/DeploymentPipeline/tsconfig.json -------------------------------------------------------------------------------- /GodotSample/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/.gitattributes -------------------------------------------------------------------------------- /GodotSample/.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /GodotSample/AWSGameSDK/AWSGameSDK.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/AWSGameSDK/AWSGameSDK.gd -------------------------------------------------------------------------------- /GodotSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.gd -------------------------------------------------------------------------------- /GodotSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.tscn -------------------------------------------------------------------------------- /GodotSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/README.md -------------------------------------------------------------------------------- /GodotSample/Samples/FacebookLogin/FacebookLogin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/Samples/FacebookLogin/FacebookLogin.gd -------------------------------------------------------------------------------- /GodotSample/Samples/FacebookLogin/FacebookLogin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/Samples/FacebookLogin/FacebookLogin.tscn -------------------------------------------------------------------------------- /GodotSample/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.gd -------------------------------------------------------------------------------- /GodotSample/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.tscn -------------------------------------------------------------------------------- /GodotSample/Samples/SteamIdLogin/SteamIdLogin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/Samples/SteamIdLogin/SteamIdLogin.gd -------------------------------------------------------------------------------- /GodotSample/Samples/SteamIdLogin/SteamIdLogin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/Samples/SteamIdLogin/SteamIdLogin.tscn -------------------------------------------------------------------------------- /GodotSample/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/icon.svg -------------------------------------------------------------------------------- /GodotSample/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/icon.svg.import -------------------------------------------------------------------------------- /GodotSample/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/GodotSample/project.godot -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/README.md -------------------------------------------------------------------------------- /UnitySample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/.gitignore -------------------------------------------------------------------------------- /UnitySample/Assets/AWSGameSDK.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/AWSGameSDK.meta -------------------------------------------------------------------------------- /UnitySample/Assets/AWSGameSDK/AWSGameSDKClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/AWSGameSDK/AWSGameSDKClient.cs -------------------------------------------------------------------------------- /UnitySample/Assets/AWSGameSDK/AWSGameSDKClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/AWSGameSDK/AWSGameSDKClient.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/AWSGameSDK/AWSGameSDKSerializationClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/AWSGameSDK/AWSGameSDKSerializationClasses.cs -------------------------------------------------------------------------------- /UnitySample/Assets/AWSGameSDK/AWSGameSDKSerializationClasses.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/AWSGameSDK/AWSGameSDKSerializationClasses.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/AWSGameSDK/WebsocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/AWSGameSDK/WebsocketClient.cs -------------------------------------------------------------------------------- /UnitySample/Assets/AWSGameSDK/WebsocketClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/AWSGameSDK/WebsocketClient.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.cs -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.unity -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/SimpleServerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/SimpleServerClient.cs -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/SimpleServerClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/AmazonGameLiftIntegration/SimpleServerClient.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/FriendsGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/FriendsGraph.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.cs -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.unity -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/FriendsGraph/FriendGraph.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/SimpleWebsocketChat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/SimpleWebsocketChat.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/ChatSerializationClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/ChatSerializationClasses.cs -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/ChatSerializationClasses.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/ChatSerializationClasses.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.cs -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.unity -------------------------------------------------------------------------------- /UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/AppleIdLogin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/AppleIdLogin.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/AppleIdLogin/AppleIdLogin.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/AppleIdLogin/AppleIdLogin.unity -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/AppleIdLogin/AppleIdLogin.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/AppleIdLogin/AppleIdLogin.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/AppleIdLogin/AppleIdLoginTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/AppleIdLogin/AppleIdLoginTest.cs -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/AppleIdLogin/AppleIdLoginTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/AppleIdLogin/AppleIdLoginTest.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/FacebookLogin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/FacebookLogin.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/FacebookLogin/FacebookLogin.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/FacebookLogin/FacebookLogin.unity -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/FacebookLogin/FacebookLogin.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/FacebookLogin/FacebookLogin.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/FacebookLogin/FacebookLoginTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/FacebookLogin/FacebookLoginTest.cs -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/FacebookLogin/FacebookLoginTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/FacebookLogin/FacebookLoginTest.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GooglePlayLogin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GooglePlayLogin.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLogin.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLogin.unity -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLogin.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLogin.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLoginTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLoginTest.cs -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLoginTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GooglePlayLogin/GooglePlayLoginTest.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.cs -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.cs.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.unity -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/GuestIdentityAndRestApiBackend/GuestIdentityAndRestApiBackend.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/SteamLogin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/SteamLogin.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/SteamLogin/SteamLogin.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/SteamLogin/SteamLogin.unity -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/SteamLogin/SteamLogin.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/SteamLogin/SteamLogin.unity.meta -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/SteamLogin/SteamLoginTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/SteamLogin/SteamLoginTest.cs -------------------------------------------------------------------------------- /UnitySample/Assets/Samples/SteamLogin/SteamLoginTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Assets/Samples/SteamLogin/SteamLoginTest.cs.meta -------------------------------------------------------------------------------- /UnitySample/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Packages/manifest.json -------------------------------------------------------------------------------- /UnitySample/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/Packages/packages-lock.json -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/BurstAotSettings_StandaloneOSX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/BurstAotSettings_StandaloneOSX.json -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/BurstAotSettings_iOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/BurstAotSettings_iOS.json -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /UnitySample/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /UnitySample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnitySample/README.md -------------------------------------------------------------------------------- /UnrealSample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/.gitignore -------------------------------------------------------------------------------- /UnrealSample/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnrealSample/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /UnrealSample/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Config/DefaultGame.ini -------------------------------------------------------------------------------- /UnrealSample/Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Config/DefaultInput.ini -------------------------------------------------------------------------------- /UnrealSample/Content/BackendFeatures/AmazonGameLiftIntegration.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/BackendFeatures/AmazonGameLiftIntegration.umap -------------------------------------------------------------------------------- /UnrealSample/Content/BackendFeatures/DatabricksDeltaLakeIntegration.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/BackendFeatures/DatabricksDeltaLakeIntegration.umap -------------------------------------------------------------------------------- /UnrealSample/Content/BackendFeatures/SimpleWebsocketChat.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/BackendFeatures/SimpleWebsocketChat.umap -------------------------------------------------------------------------------- /UnrealSample/Content/Samples/AppleIdLoginTest/TestLevel.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/Samples/AppleIdLoginTest/TestLevel.umap -------------------------------------------------------------------------------- /UnrealSample/Content/Samples/AppleIdLoginTest/TestLevel_HLOD0_Instancing.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/Samples/AppleIdLoginTest/TestLevel_HLOD0_Instancing.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/Samples/FacebookLoginTest/FacebookLoginTest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/Samples/FacebookLoginTest/FacebookLoginTest.umap -------------------------------------------------------------------------------- /UnrealSample/Content/Samples/GooglePlayLoginTest/GooglePlayLoginTest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/Samples/GooglePlayLoginTest/GooglePlayLoginTest.umap -------------------------------------------------------------------------------- /UnrealSample/Content/Samples/GuestIdentityAndRestApiTest/GuestIdentityAndRestApiTest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/Samples/GuestIdentityAndRestApiTest/GuestIdentityAndRestApiTest.umap -------------------------------------------------------------------------------- /UnrealSample/Content/Samples/SteamLoginTest/SteamLoginTest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/Samples/SteamLoginTest/SteamLoginTest.umap -------------------------------------------------------------------------------- /UnrealSample/Content/Samples/TestLevel.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/Samples/TestLevel.umap -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/2/17/8ZCEHNPG2BSNWB0E7UN15K.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/2/17/8ZCEHNPG2BSNWB0E7UN15K.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/6/K1/K52334YNWZ2C88TB9HPM75.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/6/K1/K52334YNWZ2C88TB9HPM75.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/A/EK/JSV2TOW66OR338BQGWPMAX.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/A/EK/JSV2TOW66OR338BQGWPMAX.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/B/KM/M7JMUBT9R4SQ40GQREPF1K.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/B/KM/M7JMUBT9R4SQ40GQREPF1K.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/C/XU/IP7QN428PZU9210HFMP5PB.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/C/XU/IP7QN428PZU9210HFMP5PB.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/D/BR/L7HOB3ER3S1C9EGZW18SLO.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/D/BR/L7HOB3ER3S1C9EGZW18SLO.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/D/EV/7KEE2V5CHELOM05R4M21HW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/D/EV/7KEE2V5CHELOM05R4M21HW.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/E/O9/MWYGIFOMILUBDXMNO5K18Y.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/AppleIdLoginTest/TestLevel/E/O9/MWYGIFOMILUBDXMNO5K18Y.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/1/FM/MUKX4B3GHDO9QJS94G23K7.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/1/FM/MUKX4B3GHDO9QJS94G23K7.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/2/8U/YEG5E9HOFEN2DPNHM8CA0D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/2/8U/YEG5E9HOFEN2DPNHM8CA0D.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/2/IE/BMV2J5GLOZLB46RIHV5977.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/2/IE/BMV2J5GLOZLB46RIHV5977.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/3/EE/D4DFTT9YY88UF403T5WM4H.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/3/EE/D4DFTT9YY88UF403T5WM4H.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/5/6E/6IN0ACJ0UED9SWIE7DWV7T.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/5/6E/6IN0ACJ0UED9SWIE7DWV7T.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/6/H6/DBGIP3NS16F29KNSQ1URD6.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/6/H6/DBGIP3NS16F29KNSQ1URD6.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/9/YN/U7ILFYOZVD174GDIB5LTPP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/9/YN/U7ILFYOZVD174GDIB5LTPP.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/B/EC/CLWNTMT0ERIWSHJOW498WA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/B/EC/CLWNTMT0ERIWSHJOW498WA.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/E/ME/J7CDV4Y2BO0IZFBGNSLVCE.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/GuestIdentityAndRestApiBackend/TestLevel/E/ME/J7CDV4Y2BO0IZFBGNSLVCE.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/1/UA/OQZ109E418DXBRYWPURQDR.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/1/UA/OQZ109E418DXBRYWPURQDR.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/2/RH/ZH4OC5PETM267555EC510Y.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/2/RH/ZH4OC5PETM267555EC510Y.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/3/Y8/W8SWYGWCASFVDPB10I6OL7.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/3/Y8/W8SWYGWCASFVDPB10I6OL7.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/4/SH/S5JJRJFAI69NTGCLE3KXJG.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/4/SH/S5JJRJFAI69NTGCLE3KXJG.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/6/8S/O2XZB3DOPYA409KGFOOHCT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/6/8S/O2XZB3DOPYA409KGFOOHCT.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/8/J0/LV18E46TPUL1ZU4EY87BEU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/8/J0/LV18E46TPUL1ZU4EY87BEU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/B/J2/LVID8W0NJX220CWIUH7VWN.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/B/J2/LVID8W0NJX220CWIUH7VWN.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/C/OJ/GJ5HFNPXF6HSG2CO3G7SD3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/C/OJ/GJ5HFNPXF6HSG2CO3G7SD3.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/Samples/TestLevel/C/XF/F64SMT7LCEE9S3POBQC4GU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/Samples/TestLevel/C/XF/F64SMT7LCEE9S3POBQC4GU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/0/0H/M3E95DPM20OF8P26HON3N5.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/0/0H/M3E95DPM20OF8P26HON3N5.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/0/DH/EQZYM5SUO5CZU8XNK7SBCN.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/0/DH/EQZYM5SUO5CZU8XNK7SBCN.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/0/IF/RILI4K23XHWX8CLI3NYG8C.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/0/IF/RILI4K23XHWX8CLI3NYG8C.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/0/NP/BHNE60OYQ1GFPUCMEBKTJK.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/0/NP/BHNE60OYQ1GFPUCMEBKTJK.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/0/O4/SYXX8EASQX81EDZP03ISMM.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/0/O4/SYXX8EASQX81EDZP03ISMM.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/1/4Q/O5WD7N0CHPZ6HCR8JDMJKN.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/1/4Q/O5WD7N0CHPZ6HCR8JDMJKN.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/1/AO/8BNTBG7BVWMNJHLLW5V85F.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/1/AO/8BNTBG7BVWMNJHLLW5V85F.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/1/MB/4Z0ACAFEPT1NXHTWI4LI4V.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/1/MB/4Z0ACAFEPT1NXHTWI4LI4V.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/1/NE/60AXFWT7AY1G8OW498A0NQ.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/1/NE/60AXFWT7AY1G8OW498A0NQ.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/1/QV/4WRVRZN7QGLUSLDJXV7W5D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/1/QV/4WRVRZN7QGLUSLDJXV7W5D.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/1/TM/H5VYH7SR5T1PNLBM0VSE39.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/1/TM/H5VYH7SR5T1PNLBM0VSE39.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/1/WK/1Z2XE8QZNR3Y2FCP7WFSNZ.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/1/WK/1Z2XE8QZNR3Y2FCP7WFSNZ.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/2/57/UB1FCAO2QWTDL4EFBRX23R.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/2/57/UB1FCAO2QWTDL4EFBRX23R.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/2/FK/19HKGJZAIWS0O9K1X3S7ZW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/2/FK/19HKGJZAIWS0O9K1X3S7ZW.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/2/IL/QEAWAPG00ELBQ6YTSW5HZA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/2/IL/QEAWAPG00ELBQ6YTSW5HZA.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/2/RH/FRVH4CC6NZJ0RBMHLD5SQE.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/2/RH/FRVH4CC6NZJ0RBMHLD5SQE.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/2/RP/FSJQNJOYIEA274933T87UF.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/2/RP/FSJQNJOYIEA274933T87UF.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/4F/35N00CWO8PCGVAWKS5A1S0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/4F/35N00CWO8PCGVAWKS5A1S0.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/E6/CZT0ZU4K0ILLXQDLXYB9QC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/E6/CZT0ZU4K0ILLXQDLXYB9QC.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/MA/EPPJWEW440D5RUKNUP3RNJ.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/MA/EPPJWEW440D5RUKNUP3RNJ.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/R6/1BZ573QQ33WKL8TP5P0B27.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/R6/1BZ573QQ33WKL8TP5P0B27.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/SI/Z39O8X4ENU2QQZNQC9MDTC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/SI/Z39O8X4ENU2QQZNQC9MDTC.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/SY/OMSZKKKAI6QRK4W0ZO8ZQA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/SY/OMSZKKKAI6QRK4W0ZO8ZQA.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/VF/1CASQR6IP3ETHJI6UTKKEA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/VF/1CASQR6IP3ETHJI6UTKKEA.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/WS/VVRRSNM4CUWTQHMLW6BJPU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/WS/VVRRSNM4CUWTQHMLW6BJPU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/3/ZI/J6Y0NQDAJUSX9HG7ETQ8MO.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/3/ZI/J6Y0NQDAJUSX9HG7ETQ8MO.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/4/8D/Y881UOQQSR584701QQE162.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/4/8D/Y881UOQQSR584701QQE162.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/4/NK/PCHJ4MM2F7V2IGOHW3JGTH.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/4/NK/PCHJ4MM2F7V2IGOHW3JGTH.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/4/RQ/W7O4XLSZVDQ2K8U4DDN523.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/4/RQ/W7O4XLSZVDQ2K8U4DDN523.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/4/VP/LOO4TF6IX5OGPA1SSW6L6O.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/4/VP/LOO4TF6IX5OGPA1SSW6L6O.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/5/5S/WGY3KO0PFFCZJZJ65G7JON.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/5/5S/WGY3KO0PFFCZJZJ65G7JON.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/5/BT/0Y6N4H4GRHOQI657RCULRS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/5/BT/0Y6N4H4GRHOQI657RCULRS.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/5/FB/A6M2ABHFRMF63RBW2EYL5R.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/5/FB/A6M2ABHFRMF63RBW2EYL5R.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/6/03/6B9OCJG2HWVPHTXG81EQ0X.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/6/03/6B9OCJG2HWVPHTXG81EQ0X.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/6/KF/6JF8P83H1JW569HWKNDBLX.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/6/KF/6JF8P83H1JW569HWKNDBLX.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/7/86/6FN7M43QUOZDWKWMQ5TNZR.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/7/86/6FN7M43QUOZDWKWMQ5TNZR.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/7/HX/SNN6TWLFCAVFKEA5VR87C9.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/7/HX/SNN6TWLFCAVFKEA5VR87C9.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/7/KS/PQSGNT82T45MXSMGS8VNKW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/7/KS/PQSGNT82T45MXSMGS8VNKW.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/7/PE/MSSYQS2628FGQ8G4V4XMKU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/7/PE/MSSYQS2628FGQ8G4V4XMKU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/8/EX/JB4HR1TB4ECXIQEHUFN46X.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/8/EX/JB4HR1TB4ECXIQEHUFN46X.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/8/FX/C5PS3VROFDOAJB83KH40DK.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/8/FX/C5PS3VROFDOAJB83KH40DK.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/8/G4/FBZTBKVMGRPYI9D6QN06S1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/8/G4/FBZTBKVMGRPYI9D6QN06S1.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/8/YP/86X89FT50T6ZAHXF6H0F17.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/8/YP/86X89FT50T6ZAHXF6H0F17.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/8/ZV/7ANPVHYVI1SW1XI6NASM4F.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/8/ZV/7ANPVHYVI1SW1XI6NASM4F.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/9/0J/F832P6KBANG2KDS6HTS9E9.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/9/0J/F832P6KBANG2KDS6HTS9E9.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/9/2M/MYI3NTCAEEXJUGJGL2WHKS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/9/2M/MYI3NTCAEEXJUGJGL2WHKS.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/9/82/VJID8KUAH6GS6ZKKDJ8WMG.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/9/82/VJID8KUAH6GS6ZKKDJ8WMG.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/9/8E/KPQFG6II3VX66UOUKVB11T.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/9/8E/KPQFG6II3VX66UOUKVB11T.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/9/OT/ZGOBNOT6ZZYJY4PYSRX80X.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/9/OT/ZGOBNOT6ZZYJY4PYSRX80X.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/9/S3/1X1458TOL3DE211JNI4J7Q.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/9/S3/1X1458TOL3DE211JNI4J7Q.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/9/VA/EX41YI3MI2PB84TBKGBRM0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/9/VA/EX41YI3MI2PB84TBKGBRM0.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/B/3O/2OM742N13XO1LU3MKLECNM.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/B/3O/2OM742N13XO1LU3MKLECNM.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/B/3Q/M024JV4AZ30UYXLTGV5ETH.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/B/3Q/M024JV4AZ30UYXLTGV5ETH.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/B/H7/0EVUA3KO1A4O28VHKOGFHR.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/B/H7/0EVUA3KO1A4O28VHKOGFHR.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/B/K8/BEK6IU3ULPCDTJXB2CJW4S.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/B/K8/BEK6IU3ULPCDTJXB2CJW4S.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/B/P3/M6VGE5XFL6KD6FTERF5YVU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/B/P3/M6VGE5XFL6KD6FTERF5YVU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/B/R7/BKWV3BW3HUNYQ63GCHHA3T.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/B/R7/BKWV3BW3HUNYQ63GCHHA3T.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/B/YN/5TZMTVLDP6IGQ7VLGEJJKP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/B/YN/5TZMTVLDP6IGQ7VLGEJJKP.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/C/6T/VBBWC65FV0X4PBF3PONLNU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/C/6T/VBBWC65FV0X4PBF3PONLNU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/C/DZ/KKBUDN33PKCTHDEC5YJKSX.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/C/DZ/KKBUDN33PKCTHDEC5YJKSX.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/C/EQ/6PX1D1O35EMNGA4K5KDXNB.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/C/EQ/6PX1D1O35EMNGA4K5KDXNB.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/C/FN/B29HIYP10PSIR457JSJUZU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/C/FN/B29HIYP10PSIR457JSJUZU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/C/TY/5HPXLEG8CO562HIWMX5NX7.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/C/TY/5HPXLEG8CO562HIWMX5NX7.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/C/VW/VQIMUP3EWTXXFCTKMNL4A2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/C/VW/VQIMUP3EWTXXFCTKMNL4A2.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/D/0K/BLNYI45Z34ZK7XIFH08BEN.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/D/0K/BLNYI45Z34ZK7XIFH08BEN.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/D/IW/H7RABA5O1U8NJ9ZVZOBSF7.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/D/IW/H7RABA5O1U8NJ9ZVZOBSF7.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/D/KN/9R9P0RDFT42JHZ7D5NAFN0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/D/KN/9R9P0RDFT42JHZ7D5NAFN0.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/D/LC/P1C7IDNV135T9APVJZDE2B.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/D/LC/P1C7IDNV135T9APVJZDE2B.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/D/NH/SU3765BFEQQIN45SQGXS10.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/D/NH/SU3765BFEQQIN45SQGXS10.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/D/WR/24J1SVL7YNTQEPQP3AQMI0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/D/WR/24J1SVL7YNTQEPQP3AQMI0.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/E/K2/YKSRJ3TFUQIS81026F8Y0T.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/E/K2/YKSRJ3TFUQIS81026F8Y0T.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/E/Q4/EFYV8344BLVD450JJFFKEG.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/E/Q4/EFYV8344BLVD450JJFFKEG.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalActors__/TestLevel/E/WH/PQBRQ8DWNXRQSVNC8GZZRI.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalActors__/TestLevel/E/WH/PQBRQ8DWNXRQSVNC8GZZRI.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/5/W8/OE203KIN1GGKN6XU0U3BHS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/5/W8/OE203KIN1GGKN6XU0U3BHS.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/6/7H/58Y7M7ET7OTD9S7ETOE9H7.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/6/7H/58Y7M7ET7OTD9S7ETOE9H7.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/7/Z3/WXNTI3MR0V1MGH0CPBQSQC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/7/Z3/WXNTI3MR0V1MGH0CPBQSQC.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/A/C7/OWP9X4Z850H124TEUSWCS5.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/A/C7/OWP9X4Z850H124TEUSWCS5.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/B/Z8/WWKSS1MJO67T6V764I6MXA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/AppleIdLoginTest/TestLevel/B/Z8/WWKSS1MJO67T6V764I6MXA.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/0/6H/28OS5PCL00W6RADO6Z2R26.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/0/6H/28OS5PCL00W6RADO6Z2R26.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/2/O9/XGJAFE4UBTUFL57JMQJZOP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/2/O9/XGJAFE4UBTUFL57JMQJZOP.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/3/04/M0XC2LCJ9IO6BGB3M2ZX05.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/3/04/M0XC2LCJ9IO6BGB3M2ZX05.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/5/0U/A973IL9ZFVGM6RDJ5XBGDU.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/5/0U/A973IL9ZFVGM6RDJ5XBGDU.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/C/7Y/LC5KFYO6WSYDXWHHZM8CV6.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/GuestIdentityAndRestApiBackend/TestLevel/C/7Y/LC5KFYO6WSYDXWHHZM8CV6.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/4/XI/1G4UG7JR26X6TX1UN0SPWK.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/4/XI/1G4UG7JR26X6TX1UN0SPWK.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/D/3F/P1PGM88XDDJ5WE1RN5H7GE.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/D/3F/P1PGM88XDDJ5WE1RN5H7GE.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/D/BV/297TXIIK53P5XK26VG9KHB.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/D/BV/297TXIIK53P5XK26VG9KHB.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/D/YA/NJ14WEWKUTKI1G1E89ST2R.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/D/YA/NJ14WEWKUTKI1G1E89ST2R.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/E/GX/F0AJGTXCOUNM3SK6GOG5KY.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/Samples/TestLevel/E/GX/F0AJGTXCOUNM3SK6GOG5KY.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/TestLevel/7/IE/7GJMEG9VSCHPGHFJM648P6.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/TestLevel/7/IE/7GJMEG9VSCHPGHFJM648P6.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/TestLevel/8/EC/MQQBNZPPNBWZ3ETRE7HU8A.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/TestLevel/8/EC/MQQBNZPPNBWZ3ETRE7HU8A.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/TestLevel/A/ZO/4WVR7E8KX2WIM7AJ3S7A70.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/TestLevel/A/ZO/4WVR7E8KX2WIM7AJ3S7A70.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/TestLevel/C/EG/XGQKI8TLOYSQO69G2FA9PE.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/TestLevel/C/EG/XGQKI8TLOYSQO69G2FA9PE.uasset -------------------------------------------------------------------------------- /UnrealSample/Content/__ExternalObjects__/TestLevel/E/8L/3BHHXYUBR5XYPEWAZEUFDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Content/__ExternalObjects__/TestLevel/E/8L/3BHHXYUBR5XYPEWAZEUFDW.uasset -------------------------------------------------------------------------------- /UnrealSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/README.md -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample.Target.cs -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/AWSGameSDK/AWSGameSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/AWSGameSDK/AWSGameSDK.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/AWSGameSDK/AWSGameSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/AWSGameSDK/AWSGameSDK.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/AWSGameSDK/WebSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/AWSGameSDK/WebSocketClient.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/AWSGameSDK/WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/AWSGameSDK/WebSocketClient.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/BackendFeatures/AmazonGameLiftIntegration/AmazonGameLiftIntegration.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/BackendFeatures/DatabricksDeltaLakeIntegration/DatabricksDeltaLakeIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/BackendFeatures/DatabricksDeltaLakeIntegration/DatabricksDeltaLakeIntegration.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/BackendFeatures/DatabricksDeltaLakeIntegration/DatabricksDeltaLakeIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/BackendFeatures/DatabricksDeltaLakeIntegration/DatabricksDeltaLakeIntegration.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/BackendFeatures/SimpleWebsocketChat/SimpleWebsocketChat.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/PlayerDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/PlayerDataManager.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/PlayerDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/PlayerDataManager.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/PlayerDataSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/PlayerDataSave.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/PlayerDataSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/PlayerDataSave.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/AppleIdLoginTest/AppleIdLoginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/AppleIdLoginTest/AppleIdLoginTest.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/AppleIdLoginTest/AppleIdLoginTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/AppleIdLoginTest/AppleIdLoginTest.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/FacebookLoginTest/FacebookLoginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/FacebookLoginTest/FacebookLoginTest.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/FacebookLoginTest/FacebookLoginTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/FacebookLoginTest/FacebookLoginTest.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/GooglePlayLoginTest/GooglePlayLoginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/GooglePlayLoginTest/GooglePlayLoginTest.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/GooglePlayLoginTest/GooglePlayLoginTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/GooglePlayLoginTest/GooglePlayLoginTest.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/GuestIdentityAndRestApiBackend/BackendIntegrationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/GuestIdentityAndRestApiBackend/BackendIntegrationTest.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/GuestIdentityAndRestApiBackend/BackendIntegrationTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/GuestIdentityAndRestApiBackend/BackendIntegrationTest.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/SteamLoginTest/SteamLoginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/SteamLoginTest/SteamLoginTest.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/Samples/SteamLoginTest/SteamLoginTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/Samples/SteamLoginTest/SteamLoginTest.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/UnrealSample.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/UnrealSample.Build.cs -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/UnrealSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/UnrealSample.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/UnrealSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/UnrealSample.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/UnrealSampleGameModeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/UnrealSampleGameModeBase.cpp -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSample/UnrealSampleGameModeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSample/UnrealSampleGameModeBase.h -------------------------------------------------------------------------------- /UnrealSample/Source/UnrealSampleEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/Source/UnrealSampleEditor.Target.cs -------------------------------------------------------------------------------- /UnrealSample/UnrealSample.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/UnrealSample/UnrealSample.uproject -------------------------------------------------------------------------------- /highlevelarchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/guidance-for-custom-game-backend-hosting-on-aws/HEAD/highlevelarchitecture.png --------------------------------------------------------------------------------