I want to add “aws-iot-device-sdk” to my project - amazon-web-services

I want to add “aws-iot-device-sdk” to my project, but I couldn’t find such a plugin for vue js. Have you used it before.

https://github.com/aws/aws-iot-device-sdk-js
You can install aws iot sdk for javascript.

Related

AWS GameKit policies missing

I'm trying to integrate GameKit into a Unity project. I have difficulty with setting up the Login Credentials based on the following explanation
https://docs.aws.amazon.com/gamekit/latest/UnityDevGuide/setting-up-account-user-console.html
I can't seem to find the GameKitDeveloperPolicy in the list of policies. Also I don't see the GameKit service in the console.
Also I can't seem to find the suggested python plugin in the directory of the plugin
Am I missing something?

Ionic AWS Error

I am attempting to connect my Ionic mobile app to AWS backend and keep getting the same error.
Cannot find module "../aws-exports"
I've checked the node-modules folder and this is missing, but I have no idea what I should put here to fix this error.
The same code is in a lot of files in this app.
const aws_exports = require('../aws-exports').default;
I'm not sure what this code does exactly. If anyone has an experience with Ionic that could help that would be great.
Thanks,
Matthew.
You need to follow the steps in the README. Specifically, the section on Creating AWS Mobile Hub Project. When you init the AWSMobile project, aws-imports is created for you.
P.S. aws-amplify has introduced some changes in the last couple of weeks that cause the ionic starter to not work. Follow these steps to fix the errors.
If you sign into your Amazon console and you go to your Mobile Hub.
https://console.aws.amazon.com/mobilehub/home#/
You can click on your project and it will return the ID in the URL as follows:
https://console.aws.amazon.com/mobilehub/home#/YOUR_ID_HERE/build
You can then run the following command:
awsmobile init <mobile-hub-project-id>
The AWS Mobile Hub scripts should then fetch all relative dependencies and make the appropriate installations to rectify the issue.

Is there a way to create typescript "binding" to external javascript libraries automatically without "typings"?

I am trying to integrate Amazon JS SDK (aws-sdk) into my ionic2 project (typescript). Amazon has yet to provide a typescript binding, and for now they do provide instructions on how to use their js sdks.
There is an OUTDATED TypeScript binding in "definitely typed" for one library ("aws-sdk") but not even an outdated version for Amazon cognito.
So I was wondering, is there a way I could create this binding myself: Include the JS library inside my Ionic2/Angular2/TS project somehow?

How to create a Module for AWS SDK

I am trying to develop a custom module for AWS-IOT, Here i got module to access AWS services but the existing module is not supported for AWS-IOT which is the new service launched by Amazon.
I have downloaded the AWS-SDK but here i am unable to find .m files.
Please let me know if you need more info.
Thanks, Rakesh Kalwa.
If AWS marketplace modules is not working then you maybe try another open source module ti.aws. please check that.
And if still not working then you can also create your new module based on AWS SDK. for modules development help Please visit Extending Titanium Mobile.

How to build Ember API docs for beta builds? Or access beta API docs online?

I use Ember beta builds in my project and would like to use most recent API docs.
Also would be nice to be able to browse the docs when I am offline.
Is there any way I can build the API docs from the Ember github project?
Thanks,
They are using YUIDoc to generate the documents from their sourcecode. So install that, checkout the ember sources from github and then run yuidoc --server from the commandline to get it hosted on http://localhost:3000/.