java.lang.Object
io.github.devlibx.easy.database.dynamo.operation.Put

public class Put extends Object
Example of creating a Put item
      Put put = Put.builder(TABLE_NAME)
                 .withKey("id", "d:user:" + UUID.randomUUID().toString(), "scope", "client")
                 .addAttribute("attr_1", someAttribute)
                 .addAttribute("attr_2", 1)
                 .build();
 
  • Constructor Details

    • Put

      public Put()
  • Method Details