Skip to content

prondzyn/jcabi-dynamo

 
 

Repository files navigation

Made By Teamed.io DevOps By Rultor.com We recommend IntelliJ IDEA

Build Status Build status Coverage Status JavaDoc

Maven Central Dependencies

More details are here: dynamo.jcabi.com. Also, read this blog post: Object-Oriented DynamoDB API.

Set of classes in com.jcabi.dynamo is an object layer on top of AWS SDK for Dynamo DB. For example, to read an item from your Dynamo table:

public class Main {
  public static void main(String[] args) {
    Credentials credentials = new Credentials.Simple("AWS key", "AWS secret");
    Region region = new Region.Simple(credentials);
    Table table = region.table("foo");
    Collection<Item> items = table.frame().where("id", Conditions.equalTo(123));
    for (Item item : items) {
      System.out.println(item.get("name").getS());
    }
  }
}

Questions?

If you have any questions about the framework, or something doesn't work as expected, please submit an issue here.

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven build before submitting a pull request:

$ mvn clean install -Pqulice

About

Object Oriented Wrapper of AWS DynamoDB SDK

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%