Java com.amazonaws.services.dynamodbv2.model QueryRequest fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.dynamodbv2.model QueryRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.dynamodbv2.model QueryRequest.

The text is from its open source code.

Constructor

QueryRequest()
Default constructor for QueryRequest object.
QueryRequest(String tableName)
Constructs a new QueryRequest object.

Method

QueryRequestaddKeyConditionsEntry(String key, Condition value)
java.util.ListgetAttributesToGet()

This is a legacy parameter.

BooleangetConsistentRead()

Determines the read consistency model: If set to true, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.

java.util.MapgetExclusiveStartKey()

The primary key of the first item that this operation will evaluate.

StringgetIndexName()

The name of an index to query.

java.util.MapgetKeyConditions()

This is a legacy parameter.

IntegergetLimit()

The maximum number of items to evaluate (not necessarily the number of matching items).

StringgetReturnConsumedCapacity()
BooleangetScanIndexForward()

Specifies the order for index traversal: If true (default), the traversal is performed in ascending order; if false, the traversal is performed in descending order.

StringgetSelect()

The attributes to be returned in the result.

StringgetTableName()

The name of the table containing the requested items.

voidsetAttributesToGet(java.util.Collection attributesToGet)

This is a legacy parameter.

voidsetConsistentRead(Boolean consistentRead)

Determines the read consistency model: If set to true, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.

voidsetExclusiveStartKey(java.util.Map exclusiveStartKey)

The primary key of the first item that this operation will evaluate.

voidsetExpressionAttributeNames(java.util.Map expressionAttributeNames)

One or more substitution tokens for attribute names in an expression.

voidsetExpressionAttributeValues(java.util.Map expressionAttributeValues)

One or more values that can be substituted in an expression.

voidsetFilterExpression(String filterExpression)

A string that contains conditions that DynamoDB applies after the Query operation, but before the data is returned to you.

voidsetIndexName(String indexName)

The name of an index to query.

voidsetKeyConditions(java.util.Map keyConditions)

This is a legacy parameter.

voidsetLimit(Integer limit)

The maximum number of items to evaluate (not necessarily the number of matching items).

voidsetProjectionExpression(String projectionExpression)

A string that identifies one or more attributes to retrieve from the table.

voidsetScanIndexForward(Boolean scanIndexForward)

Specifies the order for index traversal: If true (default), the traversal is performed in ascending order; if false, the traversal is performed in descending order.

voidsetSelect(String select)

The attributes to be returned in the result.

voidsetSelect(Select select)

The attributes to be returned in the result.

voidsetTableName(String tableName)

The name of the table containing the requested items.

QueryRequestwithIndexName(String indexName)

The name of an index to query.

QueryRequestwithTableName(String tableName)

The name of the table containing the requested items.