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 };