private DynamoDBDataStoreBuilder BaseBuilder() =>
 DynamoDB.DataStore(TableName)
 .Credentials(MakeTestCredentials())
 .Configuration(MakeTestConfiguration());
 private IBigSegmentStoreFactory MakeStoreFactory(string prefix) =>
 DynamoDB.DataStore(TableName)
 .Credentials(MakeTestCredentials())
 .Configuration(MakeTestConfiguration())
 .Prefix(prefix);