AWS CDK for Frontend Developers: Databases and Serverless Functions
In the previous post, we scaffolded our CDK project with context and additional props. In this post, we'll leverage constructs from the CDK to create DynamoDB tables, as well as a serverless function. In addition to creating the services themselves, ...
blog.focusotter.com11 min read
Vidit Shah
Software Engineer
const userDB = createUserTable(this, { appName: context.appName, env: context.environment, addUserFunc, })
addUserFunc seems to be redundant here