com.amazonaws.services.dynamodbv2.document.api.ScanApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-dynamodb Show documentation
Show all versions of aws-java-sdk-dynamodb Show documentation
The AWS Java SDK for Amazon DynamoDB module holds the client classes that are used for communicating with Amazon DynamoDB Service
/*
* Copyright 2014-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.dynamodbv2.document.api;
import java.util.Map;
import com.amazonaws.annotation.ThreadSafe;
import com.amazonaws.services.dynamodbv2.document.ItemCollection;
import com.amazonaws.services.dynamodbv2.document.ScanFilter;
import com.amazonaws.services.dynamodbv2.document.ScanOutcome;
import com.amazonaws.services.dynamodbv2.document.spec.ScanSpec;
/**
* A Table-centric Scan API.
*/
@ThreadSafe
public interface ScanApi {
/**
* Retrieves items by the specified list of scan filters.
*/
public ItemCollection scan(ScanFilter ... scanFilters);
/**
* Scans table using a Filter Expression.
*
* @param filterExpression
* condition expression example:
* "(#a > :a) AND (#c > :c OR #e < :e)"
*
* @param nameMap
* actual values for the attribute-name place holders; can be
* null if there is no attribute-name placeholder.
* @param valueMap
* actual values for the value place holders can be null if there
* is no attribute-value placeholder.
*/
public ItemCollection scan(String filterExpression,
Map nameMap,
Map valueMap);
/**
* Scans table using a Filter Expression and a Projection Expression.
*
* @param filterExpression
* condition expression example:
* "(#a > :a) AND (#c > :c OR #e < :e)"
* @param projectionExpression
* projection expression example: "a.b , c[0].e"
*
* @param nameMap actual values for the attribute-name place holders;
* can be null if there is no attribute-name placeholder.
* @param valueMap actual values for the value place holders
* can be null if there is no attribute-value placeholder.
*/
public ItemCollection scan(
String filterExpression,
String projectionExpression,
Map nameMap,
Map valueMap);
/**
* Scans table by specifying all the details.
*/
public ItemCollection scan(ScanSpec params);
}