2 個答案
- 最新
- 最多得票
- 最多評論
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');
已回答 2 年前
相關內容
- AWS 官方已更新 2 年前
- AWS 官方已更新 9 個月前
- AWS 官方已更新 10 個月前
Still not clear how to set something like this for example
TBLPROPERTIES ( 'compression_level'='9', 'write.compression'='ZSTD' )