Example usage for com.amazonaws.services.dynamodbv2.model LocalSecondaryIndex setProjection

List of usage examples for com.amazonaws.services.dynamodbv2.model LocalSecondaryIndex setProjection

Introduction

In this page you can find the example usage for com.amazonaws.services.dynamodbv2.model LocalSecondaryIndex setProjection.

Prototype


public void setProjection(Projection projection) 

Source Link

Document

Represents attributes that are copied (projected) from the table into the local secondary index.

Usage

From source file:io.venable.amazonaws.dynamo.table.builder.ProjectionBuilderImpl.java

License:Apache License

void build(LocalSecondaryIndex localSecondaryIndex) {
    validateProjection();

    localSecondaryIndex.setProjection(projection);
}