All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dataspray.singletable.TableSchema Maven / Gradle / Ivy

Go to download

DynamoDB best practices encourages a single-table design that allows multiple record types to reside within the same table. The goal of this library is to improve the experience of Java developers and make it safer to define non-conflicting schema of each record, serializing and deserializing automatically and working with secondary indexes.

There is a newer version: 2.4.3
Show newest version
// SPDX-FileCopyrightText: 2019-2022 Matus Faro 
// SPDX-License-Identifier: Apache-2.0
package io.dataspray.singletable;

import io.dataspray.singletable.builder.*;

public interface TableSchema extends Schema {

    GetBuilder get();

    QueryBuilder query();

    PutBuilder put();

    DeleteBuilder delete();

    UpdateBuilder update();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy