Uses of Class
com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBScanExpression
Packages that use DynamoDBScanExpression
-
Uses of DynamoDBScanExpression in com.amazonaws.services.dynamodbv2.datamodeling
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return DynamoDBScanExpressionModifier and TypeMethodDescriptionDynamoDBScanExpression.addExpressionAttributeNamesEntry
(String key, String value) One or more substitution variables for simplifying complex expressions.DynamoDBScanExpression.addExpressionAttributeValuesEntry
(String key, AttributeValue value) One or more values that can be substituted in an expression.DynamoDBScanExpression.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.DynamoDBScanExpression.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.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.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.withConsistentRead
(Boolean consistentRead) Sets whether this scan uses consistent reads and returns a reference to this object for method chaining.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.withExpressionAttributeNames
(Map<String, String> expressionAttributeNames) One or more substitution variables for simplifying complex expressions.DynamoDBScanExpression.withExpressionAttributeValues
(Map<String, AttributeValue> expressionAttributeValues) One or more values that can be substituted in an expression.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.withFilterExpression
(String filterExpression) Evaluates the query results and returns only the desired values.DynamoDBScanExpression.withIndexName
(String indexName) Sets the name of the index to be used by this scan.Sets the limit of items to scan and returns a pointer to this object for method-chaining.DynamoDBScanExpression.withProjectionExpression
(String projectionExpression) A string that identifies one or more attributes to retrieve from the table.DynamoDBScanExpression.withReturnConsumedCapacity
(ReturnConsumedCapacity returnConsumedCapacity) A value that if set toTOTAL
, the response includes ConsumedCapacity data for tables and indexes.DynamoDBScanExpression.withReturnConsumedCapacity
(String returnConsumedCapacity) A value that if set toTOTAL
, the response includes ConsumedCapacity data for tables and indexes.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.withSegment
(Integer segment) Sets the ID of the segment to be scanned and returns a pointer to this object for method-chaining.DynamoDBScanExpression.withSelect
(Select select) The attributes to be returned in the result.DynamoDBScanExpression.withSelect
(String select) The attributes to be returned in the result.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.Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type DynamoDBScanExpressionModifier and TypeMethodDescriptionint
AbstractDynamoDBMapper.count
(Class<?> clazz, DynamoDBScanExpression scanExpression) int
AbstractDynamoDBMapper.count
(Class<?> clazz, DynamoDBScanExpression scanExpression, DynamoDBMapperConfig config) int
DynamoDBMapper.count
(Class<?> clazz, DynamoDBScanExpression scanExpression) int
DynamoDBMapper.count
(Class<?> clazz, DynamoDBScanExpression scanExpression, DynamoDBMapperConfig config) 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
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.<T> PaginatedParallelScanList
<T> AbstractDynamoDBMapper.parallelScan
(Class<T> clazz, DynamoDBScanExpression scanExpression, int totalSegments) <T> PaginatedParallelScanList
<T> AbstractDynamoDBMapper.parallelScan
(Class<T> clazz, DynamoDBScanExpression scanExpression, int totalSegments, DynamoDBMapperConfig config) <T> PaginatedParallelScanList
<T> DynamoDBMapper.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) 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> IDynamoDBMapper.parallelScan
(Class<T> clazz, DynamoDBScanExpression scanExpression, int totalSegments, DynamoDBMapperConfig config) Scans through an Amazon DynamoDB table on logically partitioned segments in parallel.<T> PaginatedScanList
<T> AbstractDynamoDBMapper.scan
(Class<T> clazz, DynamoDBScanExpression scanExpression) <T> PaginatedScanList
<T> AbstractDynamoDBMapper.scan
(Class<T> clazz, DynamoDBScanExpression scanExpression, DynamoDBMapperConfig config) <T> PaginatedScanList
<T> DynamoDBMapper.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) 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> 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> ScanResultPage
<T> AbstractDynamoDBMapper.scanPage
(Class<T> clazz, DynamoDBScanExpression scanExpression) <T> ScanResultPage
<T> AbstractDynamoDBMapper.scanPage
(Class<T> clazz, DynamoDBScanExpression scanExpression, DynamoDBMapperConfig config) <T> ScanResultPage
<T> DynamoDBMapper.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) Scans through an Amazon DynamoDB table and returns a single page of matching results.<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.