2 Answers
- Newest
- Most votes
- Most comments
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');
answered 2 years ago
Relevant content
- Accepted Answerasked 2 years ago
- asked a year ago
- asked 2 years ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 2 years ago
Still not clear how to set something like this for example
TBLPROPERTIES ( 'compression_level'='9', 'write.compression'='ZSTD' )