0

DynamoDB でレコードを挿入および取得するために Java を使用しています。

挿入コード

                    Item item_to_insert = new Item().withPrimaryKey("LatLong", key,"location_code",key)
                        .withJSON("location_address", jsonW.toString())
                        .withString("version","1");
                PutItemOutcome outcome = table.putItem(item_to_insert);
              

取得中

                GetItemSpec i_spec = new GetItemSpec()
                        .withPrimaryKey("LatLong", key,"location_code",key)
                        .withProjectionExpression("location_address")
                        .withConsistentRead(true);

ここで、パーティション キーである LatLong 属性を使用してレコードを取得したいと考えています。これを行う方法はありますか??

4

1 に答える 1