File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed
templates/aws-dynamodb-starter Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ .DS_Store
2+ * .sublime-project
3+ * .sublime-workspace
4+ * .log
5+ .serverless
6+ v8-compile-cache- *
7+ jest /*
8+ coverage
9+ testProjects /* /package-lock.json
10+ testProjects /* /yarn.lock
11+ .serverlessUnzipped
12+ node_modules
13+ .vscode /
14+ .eslintcache
15+ dist
16+ .idea
17+ build /
18+ .env *
19+ .cache *
20+ .serverless
21+ .serverless_nextjs
22+ .serverless_plugins
23+ env.js
24+ tmp
25+ package-lock.json
26+ yarn.lock
27+ test
Original file line number Diff line number Diff line change 1+ name : aws-dynamodb-starter
2+ component : aws-dynamodb
3+ org : serverlessinc
4+ description : Deploys a serverless NoSQL database powered by AWS DynamoDB
5+ keywords : aws, serverless, nosql, database
6+ repo : https://github.com/serverless-components/aws-dynamodb
7+ license : MIT
8+
9+ inputs :
10+ deletionPolicy : delete # allows table to be removed. This property is a safe guard.
11+ attributeDefinitions :
12+ - AttributeName : attribute1
13+ AttributeType : S
14+ - AttributeName : attribute2
15+ AttributeType : N
16+ keySchema :
17+ - AttributeName : attribute1
18+ KeyType : HASH
19+ - AttributeName : attribute2
20+ KeyType : RANGE
21+ region : us-east-1
You can’t perform that action at this time.
0 commit comments