Skip to content

Instantly share code, notes, and snippets.

View yuryprokashev's full-sized avatar
🎯
Focusing

Yury yuryprokashev

🎯
Focusing
View GitHub Profile
@yuryprokashev
yuryprokashev / m1.all_days_table-definition.ts
Last active July 7, 2023 10:58
Dash Rebuild. M1 Decomposition
const table = new glue.CfnTable(this, 'AllDaysTable', {
databaseName: database.databaseName,
catalogId: cdk.Aws.ACCOUNT_ID,
tableInput: {
name: 'all_days',
partitionKeys: [],
storageDescriptor: {
columns: [
{ name: 'schoolYear', type: 'string' }
{ name: 'session', type: 'string' },