amazon dynamodb - Not finding the usual QueryRequest.withKeyConditions() method(Dynamo DB) -
i new dynamo db. i'm using amazon ddb documentation implement query method. trying similar example provided(the replies thread example).
i not able find 'withkeyconditionsmethod' under queryrequest. i'm missing?
if using older version of api (in java package com.amazonaws.services.dynamodb.model
) syntax little different, , have use withrangekeycondition
. here's queryrequest
class older version, can see how it's deprecated: http://docs.aws.amazon.com/awsjavasdk/latest/javadoc/com/amazonaws/services/dynamodb/model/queryrequest.html
if using newer version of api (which should, in java package com.amazonaws.services.dynamodbv2.model
, see queryrequest
has withkeyconditions
method, shown here: http://docs.aws.amazon.com/awsjavasdk/latest/javadoc/com/amazonaws/services/dynamodbv2/model/queryrequest.html
Comments
Post a Comment