Examples of withConditionalOperator()


Examples of com.amazonaws.services.dynamodbv2.model.DeleteItemRequest.withConditionalOperator()

            InternalUtils.toExpectedAttributeValueMap(expected);
        // set up the value map, if any (when expression API is used)
        final Map<String,AttributeValue> attrValMap =
            InternalUtils.fromSimpleMap(spec.getValueMap());
        // set up the request
        req.withConditionalOperator(spec.getConditionalOperator())
            .withConditionExpression(spec.getConditionExpression())
            .withExpected(expectedMap)
            .withExpressionAttributeNames(spec.getNameMap())
            .withExpressionAttributeValues(attrValMap)
            ;
View Full Code Here

Examples of com.amazonaws.services.dynamodbv2.model.QueryRequest.withConditionalOperator()

            req.setExclusiveStartKey(InternalUtils.toAttributeValueMap(startKey));

        // set up the value map, if any (when expression API is used)
        final Map<String,AttributeValue> attrValMap = InternalUtils.fromSimpleMap(spec.getValueMap());
        // set up expressions, if any
        req.withConditionalOperator(spec.getConditionalOperator())
            .withFilterExpression(spec.getFilterExpression())
            .withProjectionExpression(spec.getProjectionExpression())
            .withExpressionAttributeNames(spec.getNameMap())
            .withExpressionAttributeValues(attrValMap)
            ;
View Full Code Here

Examples of com.amazonaws.services.dynamodbv2.model.ScanRequest.withConditionalOperator()

        }

        // set up the value map, if any (when expression API is used)
        final Map<String,AttributeValue> attrValMap = InternalUtils.fromSimpleMap(spec.getValueMap());
        // set up expressions, if any
        req.withConditionalOperator(spec.getConditionalOperator())
            .withFilterExpression(spec.getFilterExpression())
            .withProjectionExpression(spec.getProjectionExpression())
            .withExpressionAttributeNames(spec.getNameMap())
            .withExpressionAttributeValues(attrValMap)
            ;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.