myelin.dev
Version: 
**Translation infrastructure that sparks joy** ✨
13 lines (10 loc) • 314 B
JavaScript
const projectsTableOptions = {
  AttributeDefinitions: [{ AttributeName: "id", AttributeType: "S" }],
  KeySchema: [{ AttributeName: "id", KeyType: "HASH" }],
  BillingMode: "PAY_PER_REQUEST",
};
const projectsTableName = "MyelinProjectsTable";
module.exports = {
  projectsTableName,
  projectsTableOptions,
};