constructor()

in hexagonal-architectures/src/store/dynamodb/dynamodb-store.ts [20:27]


    constructor(tableName: string) {
        console.info(`Table Name: ${tableName}`);
        if(tableName === undefined){
            throw new Error("'TABLE' not defined.");
        }

        this.tableName = `${tableName}`;
    }