Uses of Class
com.amazonaws.services.dynamodbv2.model.Condition

Packages that use Condition
com.amazonaws.services.dynamodbv2 Synchronous and asynchronous client classes for accessing AmazonDynamoDBv2. 
com.amazonaws.services.dynamodbv2.datamodeling   
com.amazonaws.services.dynamodbv2.model Classes modeling the various types represented by AmazonDynamoDBv2. 
 

Uses of Condition in com.amazonaws.services.dynamodbv2
 

Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type Condition
 ScanResult AmazonDynamoDBClient.scan(String tableName, List<String> attributesToGet, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDB.scan(String tableName, List<String> attributesToGet, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDBClient.scan(String tableName, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 ScanResult AmazonDynamoDB.scan(String tableName, Map<String,Condition> scanFilter)
           The Scan operation returns one or more items and item attributes by accessing every item in the table.
 

Uses of Condition in com.amazonaws.services.dynamodbv2.datamodeling
 

Methods in com.amazonaws.services.dynamodbv2.datamodeling that return types with arguments of type Condition
 Map<String,Condition> DynamoDBQueryExpression.getQueryFilter()
          Returns the query filter applied on this query.
 Map<String,Condition> DynamoDBQueryExpression.getRangeKeyConditions()
          Gets the range key condition for this query.
 Map<String,Condition> DynamoDBScanExpression.getScanFilter()
          Returns the scan filter as a map of attribute names to conditions.
 

Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type Condition
 void DynamoDBScanExpression.addFilterCondition(String attributeName, Condition condition)
          Adds a new filter condition to the current scan filter.
 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.
 DynamoDBQueryExpression<T> DynamoDBQueryExpression.withQueryFilterEntry(String attributeName, Condition condition)
          Adds a new condition to the the query filter.
 DynamoDBQueryExpression<T> DynamoDBQueryExpression.withRangeKeyCondition(String rangeKeyAttributeName, Condition rangeKeyCondition)
          Sets one range key condition for this query, using the attribute name of the range key.
 

Method parameters in com.amazonaws.services.dynamodbv2.datamodeling with type arguments of type Condition
 void DynamoDBQueryExpression.setQueryFilter(Map<String,Condition> queryFilter)
          Sets the query filter applied on this query.
 void DynamoDBQueryExpression.setRangeKeyConditions(Map<String,Condition> rangeKeyConditions)
          Sets the range key condition for this query.
 void DynamoDBScanExpression.setScanFilter(Map<String,Condition> scanFilter)
          Sets the scan filter to the map of attribute names to conditions given.
 DynamoDBQueryExpression<T> DynamoDBQueryExpression.withQueryFilter(Map<String,Condition> queryFilter)
          Sets the query filter applied on this query.
 DynamoDBQueryExpression<T> DynamoDBQueryExpression.withRangeKeyConditions(Map<String,Condition> rangeKeyConditions)
          Sets the range key condition for this query.
 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.
 

Uses of Condition in com.amazonaws.services.dynamodbv2.model
 

Methods in com.amazonaws.services.dynamodbv2.model that return Condition
 Condition Condition.withAttributeValueList(AttributeValue... attributeValueList)
          One or more values to evaluate against the supplied attribute.
 Condition Condition.withAttributeValueList(Collection<AttributeValue> attributeValueList)
          One or more values to evaluate against the supplied attribute.
 Condition Condition.withComparisonOperator(ComparisonOperator comparisonOperator)
          A comparator for evaluating attributes.
 Condition Condition.withComparisonOperator(String comparisonOperator)
          A comparator for evaluating attributes.
 

Methods in com.amazonaws.services.dynamodbv2.model that return types with arguments of type Condition
 Map<String,Condition> QueryRequest.getKeyConditions()
          The selection criteria for the query.
 Map<String,Condition> QueryRequest.getQueryFilter()
          Evaluates the query results and returns only the desired values.
 Map<String,Condition> ScanRequest.getScanFilter()
          Evaluates the scan results and returns only the desired values.
 

Methods in com.amazonaws.services.dynamodbv2.model with parameters of type Condition
 QueryRequest QueryRequest.addKeyConditionsEntry(String key, Condition value)
          The selection criteria for the query.
 QueryRequest QueryRequest.addQueryFilterEntry(String key, Condition value)
          Evaluates the query results and returns only the desired values.
 ScanRequest ScanRequest.addScanFilterEntry(String key, Condition value)
          Evaluates the scan results and returns only the desired values.
 

Method parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type Condition
 void QueryRequest.setKeyConditions(Map<String,Condition> keyConditions)
          The selection criteria for the query.
 void QueryRequest.setQueryFilter(Map<String,Condition> queryFilter)
          Evaluates the query results and returns only the desired values.
 void ScanRequest.setScanFilter(Map<String,Condition> scanFilter)
          Evaluates the scan results and returns only the desired values.
 QueryRequest QueryRequest.withKeyConditions(Map<String,Condition> keyConditions)
          The selection criteria for the query.
 QueryRequest QueryRequest.withQueryFilter(Map<String,Condition> queryFilter)
          Evaluates the query results and returns only the desired values.
 ScanRequest ScanRequest.withScanFilter(Map<String,Condition> scanFilter)
          Evaluates the scan results and returns only the desired values.
 



Copyright © 2016. All rights reserved.