-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [#188172364] connect businesses table with lambda
- Loading branch information
1 parent
3b86106
commit 1c89434
Showing
15 changed files
with
594 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{ | ||
"TableName": "businesses-table-dev", | ||
"AttributeDefinitions": [ | ||
{ | ||
"AttributeName": "businessId", | ||
"AttributeType": "S" | ||
}, | ||
{ | ||
"AttributeName": "businessName", | ||
"AttributeType": "S" | ||
}, | ||
{ | ||
"AttributeName": "naicsCode", | ||
"AttributeType": "S" | ||
}, | ||
{ | ||
"AttributeName": "industry", | ||
"AttributeType": "S" | ||
}, | ||
{ | ||
"AttributeName": "encryptedTaxId", | ||
"AttributeType": "S" | ||
} | ||
], | ||
"KeySchema": [ | ||
{ | ||
"AttributeName": "businessId", | ||
"KeyType": "HASH" | ||
} | ||
], | ||
"GlobalSecondaryIndexes": [ | ||
{ | ||
"IndexName": "BusinessName", | ||
"KeySchema": [ | ||
{ | ||
"AttributeName": "businessName", | ||
"KeyType": "HASH" | ||
} | ||
], | ||
"Projection": { | ||
"ProjectionType": "ALL" | ||
}, | ||
"ProvisionedThroughput": { | ||
"ReadCapacityUnits": 25, | ||
"WriteCapacityUnits": 25 | ||
} | ||
}, | ||
{ | ||
"IndexName": "NaicsCode", | ||
"KeySchema": [ | ||
{ | ||
"AttributeName": "naicsCode", | ||
"KeyType": "HASH" | ||
} | ||
], | ||
"Projection": { | ||
"ProjectionType": "ALL" | ||
}, | ||
"ProvisionedThroughput": { | ||
"ReadCapacityUnits": 25, | ||
"WriteCapacityUnits": 25 | ||
} | ||
}, | ||
{ | ||
"IndexName": "Industry", | ||
"KeySchema": [ | ||
{ | ||
"AttributeName": "industry", | ||
"KeyType": "HASH" | ||
} | ||
], | ||
"Projection": { | ||
"ProjectionType": "ALL" | ||
}, | ||
"ProvisionedThroughput": { | ||
"ReadCapacityUnits": 25, | ||
"WriteCapacityUnits": 25 | ||
} | ||
}, | ||
{ | ||
"IndexName": "EncryptedTaxId", | ||
"KeySchema": [ | ||
{ | ||
"AttributeName": "encryptedTaxId", | ||
"KeyType": "HASH" | ||
} | ||
], | ||
"Projection": { | ||
"ProjectionType": "ALL" | ||
}, | ||
"ProvisionedThroughput": { | ||
"ReadCapacityUnits": 25, | ||
"WriteCapacityUnits": 25 | ||
} | ||
} | ||
], | ||
"ProvisionedThroughput": { | ||
"ReadCapacityUnits": 25, | ||
"WriteCapacityUnits": 25 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.