Book Image

Mastering DynamoDB

By : Tanmay Deshpande
Book Image

Mastering DynamoDB

By: Tanmay Deshpande

Overview of this book

Table of Contents (18 chapters)
Mastering DynamoDB
Credits
Foreword
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
8
Useful Libraries and Tools
Index

Performing operations using mobile SDKs


Amazon has given an SDK to leading mobile platforms, such as iOS and Android. We can make use of it to perform operations in a mobile application. With these simplified SDK APIs, it is very easy to do normal database operations on DynamoDB. You just need to create a design database schema, and invoke various requests to add/delete and update database entries.

With the ease of integration with other AWS services, using DynamoDB for your mobile application gives you a great advantage. You can download the SDKs from the following URLs:

To get started, you can download sample Android applications from GitHub from the following URL:

https://github.com/awslabs/aws-sdk-android-samples

Now, let's get started with understanding operations for the iOS and Android platforms.

Writing data to DynamoDB

We have...