How to create a Module for AWS SDK - amazon-web-services

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.

Related

Using SES java sdk in spring boot (gradle) project

I am trying to use AWS SES in my spring boot project.
I found the Java SDK package name, and below is my code for it.
(I am already using S3, just trying to add SES.)
compile('com.amazonaws:aws-java-sdk-core:1.11.901')
compile('com.amazonaws:aws-java-sdk-ses:1.11.901')
compile('com.amazonaws:aws-java-sdk-s3:1.11.901')
And below is my external library list about aws sdk.
I was expecting to see com.amazonaws:aws-java-sdk-ses:1.11.901, but instead I am seeing
com.amazonaws.aws-java-sdk-kms:1.11.901.
The versions of all the Amazon java sdks added to my project is the same, 1.11.901.
Any suggestions about why this is happening??
I strongly recommend that you port your code to version 2 of the AWS SDK for Java. For V2 and Gradle, see this doc for more information: https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/setup-project-gradle.html

Does the Unity AWS Sdk support standalone or only mobile?

I am looking for a Backend-as-a-Service provider for my standalone game. The AWS Unity Sdk looks very interesting, but it is labeled as "AWS Mobile Sdk." Does this mean that only mobile platforms are supported, or am I missing something?
Any guidance will be greatly appreciated.
Standalone is supported by AWSSDK.
If you search Unity and AWS, most of the information is concerning with the mobile SDK, part of the function like CognitoID is available, but there is special consideration supporting Unity as you can only import DLLs to acess AWSSDK rather than the NugetForUnity. Here is the official document guiding you downloading the DLLs.
And here is my repository which is a demo of Unity directory uploading implemented with AWSS3 bucket.
Thank you for your question.

How to incorporate AWS S3 plugin into Grails app?

How do I go about integrating this S3 plugin into my grails application? The documentation is very limited.
I have it fully installed with Quartz. And I have my AWS account, policies and bucket setup.
I want to be able to upload content for my Event domain class, with the content being uploaded being exclusive for each event object.
Thank you.
The plugin you linked to looks very outdated, Last updated: 24 March 2010 and seems odd to depend on another plugin like quartz to use s3.
I would instead suggest Karman (maintained by the same person as asset-pipeline) and updated for Grails 2 & 3 https://grails.org/plugin/karman-aws?skipRedirect=true
Or you may just use the aws java sdk directly - it is straight forward api: http://docs.aws.amazon.com/AmazonS3/latest/dev/UploadObjSingleOpJava.html
This plugin is out of date.
I think it will be better to use https://grails.org/plugin/aws-sdk. This plugin supports S3 integration. You can find docs on github.

Attach file to issue in GitHub via API

My requirement is to migrate issues from Redmine to GitHub issue tracker.
I exported Redmine issues to a csv file. Using GitHub issue api I am able to create issues in github along with labels.
But I also need to attach file while creating issue, using GitHub REST apis.
Is it possible to attach files while creating issue in github via API?
If anybody knows the solution for this please let me know.
No, it's not possible to attach files to issues via the GitHub API.

how to add 3rd party jars in cloud foundry server

I am new to Cloud Foundry, I created an account, and created a Java application.
Now I need to add 3rd party jar and lib to tomcat/lib folder and add lib to environment variable of that server.
Is this possible in cloud foundry?
Thanks
To do what you are trying to do, instead of deploying your app as a Java app, you will have to do a standalone deployment along with your custom Tomcat.
Take a look here for explanation : http://blog.cloudfoundry.com/2012/05/11/running-standalone-web-applications-on-cloud-foundry/
Let me know if you need any other help.
Thanks,
- Hitesh
You can create a new War file for your application after normally adding the new 3rd party jar and then redeploy the application. That will update your application on cloudfoundry.
Let me know if that is what you were looking for.
Thanks,
- Hitesh