Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling |
Modifier and Type | Method and Description |
---|---|
DynamoDBScanExpression |
DynamoDBScanExpression.addExpressionAttributeNamesEntry(String key,
String value)
One or more substitution variables for simplifying complex expressions.
|
DynamoDBScanExpression |
DynamoDBScanExpression.addExpressionAttributeValuesEntry(String key,
AttributeValue value)
One or more values that can be substituted in an expression.
|
DynamoDBScanExpression |
DynamoDBScanExpression.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.
|
DynamoDBScanExpression |
DynamoDBScanExpression.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withConditionalOperator(ConditionalOperator conditionalOperator)
Sets the logical operator on the filter conditions of this scan and
returns a pointer to this object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withConditionalOperator(String conditionalOperator)
Sets the logical operator on the filter conditions of this scan and
returns a pointer to this object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withConsistentRead(Boolean consistentRead)
Sets whether this scan uses consistent reads and returns a reference
to this object for method chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withExclusiveStartKey(Map<String,AttributeValue> exclusiveStartKey)
Sets the exclusive start key for this scan and returns a pointer to this
object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withExpressionAttributeNames(Map<String,String> expressionAttributeNames)
One or more substitution variables for simplifying complex expressions.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withExpressionAttributeValues(Map<String,AttributeValue> expressionAttributeValues)
One or more values that can be substituted in an expression.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withFilterConditionEntry(String attributeName,
Condition condition)
Adds a new filter condition to the current scan filter and returns a
pointer to this object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withFilterExpression(String filterExpression)
Evaluates the query results and returns only the desired values.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withIndexName(String indexName)
Sets the name of the index to be used by this scan.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withLimit(Integer limit)
Sets the limit of items to scan and returns a pointer to this object for
method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withProjectionExpression(String projectionExpression)
A string that identifies one or more attributes to retrieve from the
table.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
A value that if set to
TOTAL , the response includes
ConsumedCapacity data for tables and indexes. |
DynamoDBScanExpression |
DynamoDBScanExpression.withReturnConsumedCapacity(String returnConsumedCapacity)
A value that if set to
TOTAL , the response includes
ConsumedCapacity data for tables and indexes. |
DynamoDBScanExpression |
DynamoDBScanExpression.withScanFilter(Map<String,Condition> scanFilter)
Sets the scan filter to the map of attribute names to conditions given
and returns a pointer to this object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withSegment(Integer segment)
Sets the ID of the segment to be scanned and returns a pointer to this
object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withSelect(Select select)
The attributes to be returned in the result.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withSelect(String select)
The attributes to be returned in the result.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withTotalSegments(Integer totalSegments)
Sets the total number of segments into which the scan will be divided and
returns a pointer to this object for method-chaining.
|
Modifier and Type | Method and Description |
---|---|
int |
IDynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression)
Evaluates the specified scan expression and returns the count of matching items, without
returning any of the actual item data, using the default configuration.
|
int |
AbstractDynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression) |
int |
DynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config) |
int |
IDynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Evaluates the specified scan expression and returns the count of matching items, without
returning any of the actual item data.
|
int |
AbstractDynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config) |
int |
DynamoDBTableMapper.count(DynamoDBScanExpression scanExpression)
Evaluates the specified scan expression and returns the count of matching
items, without returning any of the actual item data.
|
<T> PaginatedParallelScanList<T> |
IDynamoDBMapper.parallelScan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
int totalSegments)
Scans through an Amazon DynamoDB table on logically partitioned segments in parallel and
returns the matching results in one unmodifiable list of instantiated objects, using the
default configuration.
|
<T> PaginatedParallelScanList<T> |
AbstractDynamoDBMapper.parallelScan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
int totalSegments) |
<T> PaginatedParallelScanList<T> |
DynamoDBMapper.parallelScan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
int totalSegments,
DynamoDBMapperConfig config) |
<T> PaginatedParallelScanList<T> |
IDynamoDBMapper.parallelScan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
int totalSegments,
DynamoDBMapperConfig config)
Scans through an Amazon DynamoDB table on logically partitioned segments in parallel.
|
<T> PaginatedParallelScanList<T> |
AbstractDynamoDBMapper.parallelScan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
int totalSegments,
DynamoDBMapperConfig config) |
PaginatedParallelScanList<T> |
DynamoDBTableMapper.parallelScan(DynamoDBScanExpression scanExpression,
int totalSegments)
Scans through an Amazon DynamoDB table on logically partitioned segments
in parallel and returns the matching results in one unmodifiable list of
instantiated objects.
|
<T> PaginatedScanList<T> |
IDynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression)
Scans through an Amazon DynamoDB table and returns the matching results as an unmodifiable
list of instantiated objects, using the default configuration.
|
<T> PaginatedScanList<T> |
AbstractDynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression) |
<T> PaginatedScanList<T> |
DynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config) |
<T> PaginatedScanList<T> |
IDynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Scans through an Amazon DynamoDB table and returns the matching results as an unmodifiable
list of instantiated objects.
|
<T> PaginatedScanList<T> |
AbstractDynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config) |
PaginatedScanList<T> |
DynamoDBTableMapper.scan(DynamoDBScanExpression scanExpression)
Scans through an Amazon DynamoDB table and returns the matching results
as an unmodifiable list of instantiated objects.
|
<T> ScanResultPage<T> |
IDynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression)
Scans through an Amazon DynamoDB table and returns a single page of matching results.
|
<T> ScanResultPage<T> |
AbstractDynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression) |
<T> ScanResultPage<T> |
DynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config) |
<T> ScanResultPage<T> |
IDynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Scans through an Amazon DynamoDB table and returns a single page of matching results.
|
<T> ScanResultPage<T> |
AbstractDynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config) |
ScanResultPage<T> |
DynamoDBTableMapper.scanPage(DynamoDBScanExpression scanExpression)
Scans through an Amazon DynamoDB table and returns a single page of
matching results.
|
Copyright © 2022. All rights reserved.