nestjs-aliyun-tablestore
Version:
Aliyun Tablestore module for NestJS
16 lines (15 loc) • 416 B
TypeScript
export interface TablestoreAKOptions {
endpoint: string;
accessKeyId: string;
secretAccessKey: string;
instancename: string;
maxRetries?: number;
}
export interface TablestoreSTSOptions {
endpoint: string;
accessKeyId: string;
accessKeySecret: string;
stsToken: string;
instancename: string;
}
export type TablestoreModuleOptions = TablestoreAKOptions | TablestoreSTSOptions;