UNPKG

aws-event-stream

Version:
16 lines (15 loc) 422 B
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; }; }