Example usage for com.amazonaws.services.dynamodbv2.model TableStatus UPDATING

List of usage examples for com.amazonaws.services.dynamodbv2.model TableStatus UPDATING

Introduction

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

Prototype

TableStatus UPDATING

To view the source code for com.amazonaws.services.dynamodbv2.model TableStatus UPDATING.

Click Source Link

Usage

From source file:com.amazon.janusgraph.diskstorage.dynamodb.DynamoDbDelegate.java

License:Open Source License

private static boolean isTableAcceptingWrites(final String status) {
    return isTableStatus(TableStatus.ACTIVE, status) || isTableStatus(TableStatus.UPDATING, status);
}