Last active
June 30, 2021 19:27
-
-
Save fredericbarthelet/b0ce38a46a3977ee880a65836ce83ed3 to your computer and use it in GitHub Desktop.
Revisions
-
fredericbarthelet revised this gist
Oct 14, 2020 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ import { DynamoDB } from 'aws-sdk'; import { ref } from './intrinsic'; -
fredericbarthelet created this gist
Oct 11, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ import path from 'path'; import { DynamoDB } from 'aws-sdk'; import { ref } from './intrinsic'; import cloudformationResources, { MyTable } from './resources'; export default { handler:'create.main', environment: { TABLE_NAME: ref(cloudformationResources, MyTable) }, events: [ { httpApi: 'POST /new'} ] } const DocumentClient = new DynamoDB.DocumentClient(); const main = async (event) => { // ... } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ export const MyTable = { Type: 'AWS::DynamoDB::Table', Properties: { AttributeDefinitions: [ { AttributeName: 'PK', AttributeType: 'S' }, { AttributeName: 'SK', AttributeType: 'S' } ], KeySchema: [ { AttributeName: 'PK', KeyType: 'HASH' }, { AttributeName: 'SK', KeyType: 'RANGE' } ], BillingMode: 'PAY_PER_REQUEST' } } export const OtherTable = {/...}; export const OtherResource = {/...}; export default { MyTable, OtherTable, OtherResource };