2 Respostas
- Mais recentes
- Mais votos
- Mais comentários
1
You'll need to use the CFN escape hatch:
const table = new Table(...);
const cfnTable = table.node.defaultChild as CfnTable;
cfnTable.addPropertyOverride('TableInput.Parameters.compressionType', 'none');
respondido há 2 anos
Conteúdo relevante
- AWS OFICIALAtualizada há 9 meses
- AWS OFICIALAtualizada há 10 meses
Still not clear how to set something like this for example
TBLPROPERTIES ( 'compression_level'='9', 'write.compression'='ZSTD' )