Interface DynamoDbConnector

All Superinterfaces:
AutoCloseable, BlobStoreConnector
All Known Implementing Classes:
DynamoDbConnector.Default

public interface DynamoDbConnector
extends BlobStoreConnector
Connector for the Amazon DynamoDB database service.

First create a connection to the DynamoDB service.

 DynamoDbClient client = ...
 BlobStoreFileSystem fileSystem = BlobStoreFileSystem.New(
 DynamoDbConnector.Caching(client)
 );