import * as AWS from 'aws-sdk'; import { ICacheManagerOptions } from '.'; export interface IDynamodbCacheManagerOptions extends ICacheManagerOptions { client: AWS.DynamoDB.DocumentClient; tableName: string; paginationLimit: number; scoreIndexName?: string; partitionSegmentsPerFiles: boolean; itemsPerGetBatch: number; batchParallelism: number; }