I’m starting using Ember and in my app I’d like to connect with my AWS account and use its services. I downloaded the AWS SDK for Javascript and tried to use it following this tutorial Integrating Amazon Cognito with web and mobile apps - Amazon Cognito but until now I am not able to do anything due to some erros on Ember (it can’t find the aws-sdk dependency to be imported into my js files) before being able to connect with my AWS account.
Hey @amandaBrito, what exactly are you trying to do with AWS? Obviously AWS is a huge collection of services and it would help to know exactly what you are trying to accomplish to avoid pointing you in 100 different directions. Are you just trying to host and ember app with an existing backend? Write and host a backend server and also host an ember app? Host an ember app backed by a “serverless” backend via API gateway and lambda?
My intention is to use the Cognito API in my frontend project, hosted in AWS, and it will access a REST service, written in Java or Python, hosted in AWS too. My ideia was to configure and use the AWS SDK for JS in my ember files from scracth, to learn how it behaves and see if this SDK is really the best option to solve our problem.