aws-event-stream
Version:
A simple and fast EventStore for AWS.
16 lines (15 loc) • 422 B
TypeScript
import { HTTPOptions } from "aws-sdk";
import { AWSConfig } from "../aws/config";
export interface Config {
readonly awsConfig: AWSConfig;
readonly dynamodb: {
tableName: string;
createTable?: boolean;
readCapacityUnit?: number;
writeCapacityUnit?: number;
endpointUrl?: string;
maxRetries?: number;
httpOptions?: HTTPOptions;
ttl?: number;
};
}