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

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

Introduction

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

The text is from its open source code.

Constructor

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

Method

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

This is a legacy parameter.

StringgetConditionalOperator()

This is a legacy parameter.

java.util.MapgetExclusiveStartKey()

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

java.util.MapgetExpressionAttributeNames()

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

java.util.MapgetExpressionAttributeValues()

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

StringgetFilterExpression()

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

StringgetIndexName()

The name of a secondary index to scan.

IntegergetLimit()

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

StringgetProjectionExpression()

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

StringgetReturnConsumedCapacity()
java.util.MapgetScanFilter()

This is a legacy parameter.

IntegergetSegment()

For a parallel Scan request, Segment identifies an individual segment to be scanned by an application worker.

StringgetSelect()

The attributes to be returned in the result.

StringgetTableName()

The name of the table containing the requested items; or, if you provide IndexName, the name of the table to which that index belongs.

IntegergetTotalSegments()

For a parallel Scan request, TotalSegments represents the total number of segments into which the Scan operation will be divided.

voidsetAttributesToGet(java.util.Collection attributesToGet)

This is a legacy parameter.

voidsetConditionalOperator(String conditionalOperator)

This is a legacy parameter.

voidsetConditionalOperator(ConditionalOperator conditionalOperator)

This is a legacy parameter.

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 Scan operation, but before the data is returned to you.

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 specified table or index.

voidsetScanFilter(java.util.Map scanFilter)

This is a legacy parameter.

voidsetTableName(String tableName)

The name of the table containing the requested items; or, if you provide IndexName, the name of the table to which that index belongs.

ScanRequestwithExclusiveStartKey(java.util.Map exclusiveStartKey)

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

ScanRequestwithExpressionAttributeNames(java.util.Map expressionAttributeNames)

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

ScanRequestwithScanFilter(java.util.Map scanFilter)

This is a legacy parameter.